Skip to content
This repository was archived by the owner on Sep 16, 2025. It is now read-only.
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
- run: pip3 install nox packaging
- run: nox -s "test-${{ matrix.python }}(airflow='${{ matrix.airflow }}')" -- --ignore "tests/test_example_dags.py" --cov-report=xml
- name: Upload coverage
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: coverage-unit-tests-${{ matrix.python }}-${{ matrix.airflow }}
path: ./.coverage
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
- run: pip3 install nox packaging
- run: DATABRICKS_GROUP_ID="${{github.run_id}}_${{matrix.python}}_${{matrix.airflow}}" nox -s "test-${{ matrix.python }}(airflow='${{ matrix.airflow }}')" -- "tests/test_example_dags.py" --cov-report=xml
- name: Upload coverage
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: coverage-example-dags-${{ matrix.python }}-${{ matrix.airflow }}
path: ./.coverage
Expand All @@ -192,7 +192,7 @@ jobs:
run: |
pip3 install coverage
- name: Download all artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v5
with:
path: ./coverage
- name: Run coverage
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

0.3.1 (03-09-25)
----------------

Maintenance

* Mark project as inactive across README and docs; Update project classifier to ``Development Status :: 7 - Inactive`` (PR `#87 <https://github.com/astronomer/astro-provider-databricks/pull/87>`_ by @pankajkoti)

0.3.0 (08-08-24)
-------------------

Expand Down
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
## Deprecation Notice

With the release ``0.3.0`` of the ``astro-provider-databricks`` package, this provider stands deprecated and will
no longer receive updates. We recommend migrating to the official ``apache-airflow-providers-databricks>= 6.8.0`` for the latest features and support.
For the operators and sensors that are deprecated in this repository, migrating to the official Apache Airflow Databricks Provider
is as simple as changing the import path in your DAG code as per the below examples.
## ⚠️ Discontinuation of project
> In August 2024, Astronomer [donated the features available in this provider](https://github.com/astronomer/astro-provider-databricks/pull/84) to the [Apache Airflow repository](https://github.com/apache/airflow/tree/main/providers/databricks).
> The features available in this repository are available in ``apache-airflow-providers-databricks>= 6.8.0``.
> This repository is no longer actively maintained by Astronomer, and the code is kept here for historical purposes only.
> You can still contribute, submit bug fixes, and improvements in this project's [new home](https://github.com/apache/airflow/tree/main/providers/databricks), under the terms of its license.
> Please note that this deprecated version of the provider may not work with the latest dependencies or platforms, and it could contain security vulnerabilities. Astronomer cannot offer guarantees or warranties for its use.
> Thanks for being part of the open-source journey and helping keep great ideas alive!

For the operators and sensors that are deprecated in this repository, migrating to the official Apache Airflow Databricks Provider is as simple as changing the import path in your DAG code as per the below examples.

| Previous import path used (Deprecated now) | Suggested import path to use |
|-------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
Expand Down
10 changes: 6 additions & 4 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
.. warning::
All the operators and their functionality within this repository have been deprecated and will not receive further updates.
Read more about the deprecation in the `Deprecation Notice` section below.
This project is inactive and no longer maintained. We recommend migrating to the official
``apache-airflow-providers-databricks>=6.8.0`` for the latest features and support.
The operators from this repository have been donated to and are included in the official
Apache Airflow Databricks provider. Read more in the ``Deprecation Notice`` section below.

Deprecation Notice
------------------

With the release ``0.3.0`` of the ``astro-provider-databricks`` package, this provider stands deprecated and will
With the release ``0.3.0`` of the ``astro-provider-databricks`` package, this provider stands deprecated and is now inactive. It will
no longer receive updates. We recommend migrating to the official ``apache-airflow-providers-databricks>=6.8.0`` for the latest features and support.
For the operators and sensors that are deprecated in this repository, migrating to the official Apache Airflow Databricks Provider
is as simple as changing the import path in your DAG code as per the below examples.
is as simple as changing the import path in your DAG code as per the below examples. The operators from this repository have been donated to and are included in the official provider.

.. list-table:: Import paths to change for migrating to the official Apache Airflow Databricks Provider
:header-rows: 1
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ keywords = [
"dags",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Development Status :: 7 - Inactive",
"Framework :: Apache Airflow",
"Framework :: Apache Airflow :: Provider",
"Intended Audience :: Developers",
Expand Down
2 changes: 1 addition & 1 deletion src/astro_databricks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from astro_databricks.operators.notebook import DatabricksNotebookOperator
from astro_databricks.operators.workflow import DatabricksWorkflowTaskGroup

__version__ = "0.3.0"
__version__ = "0.3.1"
__all__ = [
"DatabricksNotebookOperator",
"DatabricksWorkflowTaskGroup",
Expand Down
Loading