apache-airflow-providers-git 0.0.2rc1__tar.gz → 0.0.2rc3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of apache-airflow-providers-git might be problematic. Click here for more details.
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/PKG-INFO +1 -1
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/docs/changelog.rst +3 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/docs/commits.rst +3 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/pyproject.toml +1 -1
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/src/airflow/providers/git/bundles/git.py +6 -3
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/tests/unit/git/bundles/test_git.py +1 -3
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/README.rst +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/docs/bundles/index.rst +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/docs/conf.py +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/docs/connections/git.rst +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/docs/index.rst +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/docs/installing-providers-from-sources.rst +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/docs/security.rst +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/provider.yaml +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/src/airflow/__init__.py +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/src/airflow/providers/__init__.py +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/src/airflow/providers/git/LICENSE +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/src/airflow/providers/git/__init__.py +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/src/airflow/providers/git/bundles/__init__.py +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/src/airflow/providers/git/get_provider_info.py +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/src/airflow/providers/git/hooks/__init__.py +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/src/airflow/providers/git/hooks/git.py +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/tests/conftest.py +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/tests/unit/__init__.py +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/tests/unit/git/__init__.py +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/tests/unit/git/bundles/__init__.py +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/tests/unit/git/hooks/__init__.py +0 -0
- {apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/tests/unit/git/hooks/test_git.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-git
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2rc3
|
|
4
4
|
Summary: Provider package apache-airflow-providers-git for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,git,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
{apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/docs/changelog.rst
RENAMED
|
@@ -23,6 +23,7 @@ Bug Fixes
|
|
|
23
23
|
|
|
24
24
|
* ``Don't log repo_url in git dag bundle (#48909)``
|
|
25
25
|
* ``Make git connection optional for git dag bundle (#49270)``
|
|
26
|
+
* ``Use 'git_default' if the user defines nothing (#49359)``
|
|
26
27
|
|
|
27
28
|
Misc
|
|
28
29
|
~~~~
|
|
@@ -31,6 +32,8 @@ Misc
|
|
|
31
32
|
|
|
32
33
|
.. Below changes are excluded from the changelog. Move them to
|
|
33
34
|
appropriate section above if needed. Do not delete the lines(!):
|
|
35
|
+
* ``Prepare docs for Apr 3rd wave of providers (#49338)``
|
|
36
|
+
* ``Update documentation for edge3 and git provider (#49365)``
|
|
34
37
|
|
|
35
38
|
0.0.1
|
|
36
39
|
.....
|
{apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/docs/commits.rst
RENAMED
|
@@ -42,6 +42,9 @@ Latest change: 2025-04-16
|
|
|
42
42
|
================================================================================================== =========== ============================================================
|
|
43
43
|
Commit Committed Subject
|
|
44
44
|
================================================================================================== =========== ============================================================
|
|
45
|
+
`2ae12c815b <https://github.com/apache/airflow/commit/2ae12c815bc704eff6890df56f7387da513d14f2>`__ 2025-04-16 ``Update documentation for edge3 and git provider (#49365)``
|
|
46
|
+
`dd0efe348b <https://github.com/apache/airflow/commit/dd0efe348b6ce94243ec7a727f9aa908eeafbc82>`__ 2025-04-16 ``Use 'git_default' if the user defines nothing (#49359)``
|
|
47
|
+
`ca3e4e75c6 <https://github.com/apache/airflow/commit/ca3e4e75c634afdceb23a86b7e0b0ff74614a7f1>`__ 2025-04-16 ``Prepare docs for Apr 3rd wave of providers (#49338)``
|
|
45
48
|
`192b337c86 <https://github.com/apache/airflow/commit/192b337c86eede5636f802d6f354fa97fe0f9030>`__ 2025-04-16 ``Don't log repo_url in git dag bundle (#48909)``
|
|
46
49
|
`2c7b56ee74 <https://github.com/apache/airflow/commit/2c7b56ee742409f65463534e34fa5f444d651af9>`__ 2025-04-15 ``Make git connection optional for git dag bundle (#49270)``
|
|
47
50
|
`b9052eed42 <https://github.com/apache/airflow/commit/b9052eed423f5f7f20c58815cce89e6cc659903c>`__ 2025-04-15 ``Include subdir in Gitbundle view url (#49239)``
|
{apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/pyproject.toml
RENAMED
|
@@ -25,7 +25,7 @@ build-backend = "flit_core.buildapi"
|
|
|
25
25
|
|
|
26
26
|
[project]
|
|
27
27
|
name = "apache-airflow-providers-git"
|
|
28
|
-
version = "0.0.2.
|
|
28
|
+
version = "0.0.2.rc3"
|
|
29
29
|
description = "Provider package apache-airflow-providers-git for Apache Airflow"
|
|
30
30
|
readme = "README.rst"
|
|
31
31
|
authors = [
|
|
@@ -80,11 +80,14 @@ class GitDagBundle(BaseDagBundle):
|
|
|
80
80
|
|
|
81
81
|
self._log.debug("bundle configured")
|
|
82
82
|
self.hook: GitHook | None = None
|
|
83
|
-
if
|
|
83
|
+
if not repo_url:
|
|
84
|
+
if not git_conn_id:
|
|
85
|
+
self._log.debug("Neither git_conn_id nor repo_url provided; loading 'git_default'")
|
|
86
|
+
git_conn_id = "git_default"
|
|
84
87
|
try:
|
|
85
|
-
self.hook = GitHook(git_conn_id=
|
|
88
|
+
self.hook = GitHook(git_conn_id=git_conn_id)
|
|
86
89
|
except AirflowException as e:
|
|
87
|
-
self._log.warning("Could not create GitHook", conn_id=
|
|
90
|
+
self._log.warning("Could not create GitHook", conn_id=git_conn_id, exc=e)
|
|
88
91
|
else:
|
|
89
92
|
self.repo_url = self.hook.repo_url
|
|
90
93
|
self._log.debug("repo_url updated from hook")
|
|
@@ -116,7 +116,7 @@ class TestGitDagBundle:
|
|
|
116
116
|
tracking_ref=GIT_DEFAULT_BRANCH,
|
|
117
117
|
repo_url="https://github.com/apache/zzzairflow",
|
|
118
118
|
)
|
|
119
|
-
assert bundle.repo_url ==
|
|
119
|
+
assert bundle.repo_url == "https://github.com/apache/zzzairflow"
|
|
120
120
|
|
|
121
121
|
def test_falls_back_to_connection_host_when_no_repo_url_provided(self):
|
|
122
122
|
bundle = GitDagBundle(name="test", git_conn_id=CONN_HTTPS, tracking_ref=GIT_DEFAULT_BRANCH)
|
|
@@ -564,9 +564,7 @@ class TestGitDagBundle:
|
|
|
564
564
|
name="testa",
|
|
565
565
|
tracking_ref="main",
|
|
566
566
|
git_conn_id=conn_id,
|
|
567
|
-
repo_url="some_repo_url",
|
|
568
567
|
)
|
|
569
|
-
assert bundle.repo_url == "some_repo_url"
|
|
570
568
|
assert isinstance(bundle.hook, expected_hook_type)
|
|
571
569
|
|
|
572
570
|
@mock.patch("airflow.providers.git.bundles.git.GitHook")
|
|
File without changes
|
|
File without changes
|
{apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/docs/conf.py
RENAMED
|
File without changes
|
|
File without changes
|
{apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/docs/index.rst
RENAMED
|
File without changes
|
|
File without changes
|
{apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/docs/security.rst
RENAMED
|
File without changes
|
{apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/provider.yaml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{apache_airflow_providers_git-0.0.2rc1 → apache_airflow_providers_git-0.0.2rc3}/tests/conftest.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|