Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Google provider December removal #145

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

26 changes: 26 additions & 0 deletions providers/src/airflow/providers/google/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,29 @@
Changelog
---------

12.0.0
......

Breaking changes
~~~~~~~~~~~~~~~~

.. warning::
Deprecated classes, parameters and features have been removed from the Google provider package.
The following breaking changes were introduced:

* Operators

* Removed ``CreateDataPipelineOperator``. Please use the ``DataflowCreatePipelineOperator`` instead
* Removed ``RunDataPipelineOperator``. Please use the ``DataflowRunPipelineOperator`` instead

* Hooks

* Removed ``DataPipelineHook``. Please use the ``DataflowHook`` instead


.. Below changes are excluded from the changelog. Move them to
appropriate section above if needed.

11.0.0
......

Expand Down Expand Up @@ -80,6 +103,8 @@ Breaking changes
* Removed ``CreateHyperparameterTuningJobOperator.sync``. This parameter is not in actual use
* Removed ``CustomTrainingJobBaseOperator.sync``. This parameter is not in actual use
* Removed ``GKEStartPodOperator.get_gke_config_file()``. Please use ``GKEStartPodOperator.fetch_cluster_info()`` instead
* Removed ``CreateDataPipelineOperator``. Please use the ``DataflowCreatePipelineOperator`` instead
* Removed ``RunDataPipelineOperator``. Please use the ``DataflowRunPipelineOperator`` instead

* Triggers

Expand Down Expand Up @@ -141,6 +166,7 @@ Breaking changes
* Removed ``BigQueryHook.run_query()``. Please use ``BigQueryHook.insert_job()`` instead
* Removed ``BigQueryHook.create_external_table()``. Please use ``BigQueryHook.create_empty_table()`` instead
* Removed ``BigQueryHook.get_service()``. Please use ``BigQueryHook.get_client()`` instead
* Removed ``DataPipelineHook``. Please use the DataflowHook instead

* Backends

Expand Down
71 changes: 0 additions & 71 deletions providers/src/airflow/providers/google/cloud/hooks/datapipeline.py

This file was deleted.

This file was deleted.

11 changes: 0 additions & 11 deletions providers/src/airflow/providers/google/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -404,11 +404,6 @@ integrations:
- /docs/apache-airflow-providers-google/operators/cloud/dataflow.rst
logo: /integration-logos/gcp/Cloud-Dataflow.png
tags: [gcp]
- integration-name: Google Data Pipelines
external-doc-url: https://cloud.google.com/dataflow/docs/reference/data-pipelines/rest
how-to-guide:
- /docs/apache-airflow-providers-google/operators/cloud/datapipeline.rst
tags: [gcp]
- integration-name: Google Data Fusion
external-doc-url: https://cloud.google.com/data-fusion/
how-to-guide:
Expand Down Expand Up @@ -587,9 +582,6 @@ operators:
- integration-name: Google Dataflow
python-modules:
- airflow.providers.google.cloud.operators.dataflow
- integration-name: Google Data Pipelines
python-modules:
- airflow.providers.google.cloud.operators.datapipeline
- integration-name: Google Data Fusion
python-modules:
- airflow.providers.google.cloud.operators.datafusion
Expand Down Expand Up @@ -838,9 +830,6 @@ hooks:
- integration-name: Google Dataflow
python-modules:
- airflow.providers.google.cloud.hooks.dataflow
- integration-name: Google Data Pipelines
python-modules:
- airflow.providers.google.cloud.hooks.datapipeline
- integration-name: Google Data Fusion
python-modules:
- airflow.providers.google.cloud.hooks.datafusion
Expand Down
Loading