amoghrajesh opened a new pull request, #50716:
URL: https://github.com/apache/airflow/pull/50716
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!--
Thank you for contributing! Please make sure that your code changes
are covered with tests. And in case of new features or big changes
remember to adjust the documentation.
Feel free to ping committers for the review!
In case of an existing issue, reference it using one of the following:
closes: #ISSUE
related: #ISSUE
How to write a good git commit message:
http://chris.beams.io/posts/git-commit/
-->
We have been hitting GH rate limiting quite frequently in the CI during last
few days. On further checking,
it looks like we pass down the GITHUB_TOKEN to the breeze commands but we do
not use GH API's and
instead use raw github, which doesn't need the tokens and hence doesn't
follow the trajectory for fixing rate limiting.
Ref here:
https://stackoverflow.com/questions/77054807/how-do-you-use-raw-githubusercontent-com-in-a-github-action#comment135840009_77054807
Works as expected:
```
(airflow) ➜ airflow git:(main) ✗ breeze release-management
generate-providers-metadata --refresh-constraints
Make sure you have `apache` remote added pointing to apache/airflow
repository
Fetching all released Airflow 2/3 versions from GitHub
All Airflow 2 versions
2.0.0: 2020-12-17T17:18:52Z
2.0.1: 2021-02-08T22:46:44Z
2.0.2: 2021-04-19T21:05:42Z
2.1.0: 2021-05-18T10:51:10Z
2.1.1: 2021-07-02T19:35:41Z
2.1.2: 2021-07-10T08:47:14Z
2.1.3: 2021-08-23T16:49:54Z
2.1.4: 2021-09-18T21:57:29Z
2.2.0: 2021-10-11T17:18:38Z
2.2.1: 2021-10-29T17:11:05Z
2.2.2: 2021-11-15T16:49:03Z
2.2.3: 2021-12-21T16:25:02Z
2.2.4: 2022-02-22T20:05:11Z
2.2.5: 2022-04-04T07:28:42Z
2.3.0: 2022-04-30T22:10:34Z
2.3.1: 2022-05-25T07:46:22Z
2.3.2: 2022-06-04T13:21:00Z
2.3.3: 2022-07-09T15:51:21Z
2.3.4: 2022-08-23T11:54:58Z
2.4.0: 2022-09-19T07:56:24Z
2.4.1: 2022-09-30T20:05:57Z
2.4.2: 2022-10-24T09:27:31Z
2.4.3: 2022-11-14T13:35:43Z
2.5.0: 2022-12-02T16:35:12Z
2.5.1: 2023-01-20T18:12:01Z
2.5.2: 2023-03-14T23:03:15Z
2.5.3: 2023-03-31T22:22:02Z
2.6.0: 2023-04-30T12:10:46Z
2.6.1: 2023-05-16T13:18:41Z
2.6.2: 2023-06-17T08:13:09Z
2.6.3: 2023-07-10T20:51:29Z
2.7.0: 2023-08-18T10:27:22Z
2.7.1: 2023-09-07T16:49:36Z
2.7.2: 2023-10-12T09:11:10Z
2.7.3: 2023-11-06T05:46:51Z
2.8.0: 2023-12-18T17:06:07Z
2.8.1: 2024-01-19T10:52:13Z
2.8.2: 2024-02-26T06:08:13Z
2.8.3: 2024-03-11T11:09:23Z
2.8.4: 2024-03-25T20:13:45Z
2.9.0: 2024-04-08T09:13:53Z
2.9.1: 2024-05-06T07:05:53Z
2.9.2: 2024-06-10T08:26:32Z
2.9.3: 2024-07-16T07:14:53Z
2.10.0: 2024-08-15T21:08:17Z
2.10.1: 2024-09-06T07:50:14Z
2.10.2: 2024-09-20T19:55:14Z
2.10.3: 2024-11-05T11:03:28Z
2.10.4: 2024-12-16T10:17:09Z
2.10.5: 2025-02-10T10:04:09Z
3.0.0: 2025-04-22T13:47:30Z
3.0.1: 2025-05-12T10:52:44Z
Downloading constraints for all Airflow versions for Python 3.9
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.0.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.0.0-python-3.9.txt
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.0.0
could not be downloaded. Status code 401
Could not download constraints for Airflow 2.0.0 and Python 3.9
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.0.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.0.1-python-3.9.txt
^C
Aborted.
(airflow) ➜ airflow git:(main) ✗
(airflow) ➜ airflow git:(main) ✗ export
GITHUB_TOKEN=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
(airflow) ➜ airflow git:(main) ✗
(airflow) ➜ airflow git:(main) ✗
(airflow) ➜ airflow git:(main) ✗
(airflow) ➜ airflow git:(main) ✗ breeze release-management
generate-providers-metadata --refresh-constraints
Make sure you have `apache` remote added pointing to apache/airflow
repository
Fetching all released Airflow 2/3 versions from GitHub
All Airflow 2 versions
2.0.0: 2020-12-17T17:18:52Z
2.0.1: 2021-02-08T22:46:44Z
2.0.2: 2021-04-19T21:05:42Z
2.1.0: 2021-05-18T10:51:10Z
2.1.1: 2021-07-02T19:35:41Z
2.1.2: 2021-07-10T08:47:14Z
2.1.3: 2021-08-23T16:49:54Z
2.1.4: 2021-09-18T21:57:29Z
2.2.0: 2021-10-11T17:18:38Z
2.2.1: 2021-10-29T17:11:05Z
2.2.2: 2021-11-15T16:49:03Z
2.2.3: 2021-12-21T16:25:02Z
2.2.4: 2022-02-22T20:05:11Z
2.2.5: 2022-04-04T07:28:42Z
2.3.0: 2022-04-30T22:10:34Z
2.3.1: 2022-05-25T07:46:22Z
2.3.2: 2022-06-04T13:21:00Z
2.3.3: 2022-07-09T15:51:21Z
2.3.4: 2022-08-23T11:54:58Z
2.4.0: 2022-09-19T07:56:24Z
2.4.1: 2022-09-30T20:05:57Z
2.4.2: 2022-10-24T09:27:31Z
2.4.3: 2022-11-14T13:35:43Z
2.5.0: 2022-12-02T16:35:12Z
2.5.1: 2023-01-20T18:12:01Z
2.5.2: 2023-03-14T23:03:15Z
2.5.3: 2023-03-31T22:22:02Z
2.6.0: 2023-04-30T12:10:46Z
2.6.1: 2023-05-16T13:18:41Z
2.6.2: 2023-06-17T08:13:09Z
2.6.3: 2023-07-10T20:51:29Z
2.7.0: 2023-08-18T10:27:22Z
2.7.1: 2023-09-07T16:49:36Z
2.7.2: 2023-10-12T09:11:10Z
2.7.3: 2023-11-06T05:46:51Z
2.8.0: 2023-12-18T17:06:07Z
2.8.1: 2024-01-19T10:52:13Z
2.8.2: 2024-02-26T06:08:13Z
2.8.3: 2024-03-11T11:09:23Z
2.8.4: 2024-03-25T20:13:45Z
2.9.0: 2024-04-08T09:13:53Z
2.9.1: 2024-05-06T07:05:53Z
2.9.2: 2024-06-10T08:26:32Z
2.9.3: 2024-07-16T07:14:53Z
2.10.0: 2024-08-15T21:08:17Z
2.10.1: 2024-09-06T07:50:14Z
2.10.2: 2024-09-20T19:55:14Z
2.10.3: 2024-11-05T11:03:28Z
2.10.4: 2024-12-16T10:17:09Z
2.10.5: 2025-02-10T10:04:09Z
3.0.0: 2025-04-22T13:47:30Z
3.0.1: 2025-05-12T10:52:44Z
Downloading constraints for all Airflow versions for Python 3.9
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.0.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.0.0-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.0.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.0.0-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.0.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.0.1-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.0.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.0.1-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.0.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.0.2-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.0.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.0.2-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.1.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.1.0-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.1.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.1.0-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.1.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.1.1-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.1.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.1.1-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.1.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.1.2-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.1.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.1.2-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.1.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.1.3-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.1.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.1.3-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.1.4
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.1.4-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.1.4
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.1.4-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.2.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.2.0-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.2.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.2.0-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.2.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.2.1-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.2.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.2.1-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.2.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.2.2-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.2.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.2.2-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.2.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.2.3-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.2.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.2.3-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.2.4
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.2.4-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.2.4
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.2.4-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.2.5
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.2.5-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.2.5
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.2.5-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.3.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.3.0-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.3.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.3.0-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.3.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.3.1-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.3.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.3.1-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.3.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.3.2-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.3.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.3.2-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.3.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.3.3-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.3.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.3.3-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.3.4
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.3.4-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.3.4
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.3.4-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.4.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.4.0-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.4.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.4.0-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.4.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.4.1-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.4.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.4.1-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.4.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.4.2-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.4.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.4.2-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.4.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.4.3-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.4.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.4.3-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.5.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.5.0-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.5.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.5.0-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.5.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.5.1-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.5.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.5.1-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.5.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.5.2-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.5.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.5.2-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.5.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.5.3-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.5.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.5.3-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.6.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.6.0-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.6.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.6.0-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.6.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.6.1-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.6.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.6.1-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.6.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.6.2-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.6.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.6.2-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.6.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.6.3-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.6.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.6.3-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.7.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.7.0-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.7.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.7.0-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.7.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.7.1-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.7.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.7.1-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.7.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.7.2-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.7.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.7.2-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.7.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.7.3-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.7.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.7.3-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.8.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.8.0-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.8.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.8.0-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.8.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.8.1-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.8.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.8.1-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.8.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.8.2-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.8.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.8.2-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.8.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.8.3-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.8.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.8.3-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.8.4
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.8.4-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.8.4
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.8.4-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.9.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.9.0-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.9.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.9.0-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.9.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.9.1-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.9.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.9.1-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.9.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.9.2-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.9.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.9.2-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.9.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.9.3-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.9.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.9.3-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.10.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.10.0-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.10.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.10.0-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.10.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.10.1-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.10.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.10.1-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.10.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.10.2-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.10.2
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.10.2-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.10.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.10.3-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.10.3
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.10.3-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.10.4
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.10.4-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.10.4
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.10.4-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.10.5
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.10.5-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-2.10.5
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-2.10.5-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-3.0.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-3.0.0-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-3.0.0
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-3.0.0-python-3.9.txt
Downloading
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-3.0.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-3.0.1-python-3.9.txt
Downloaded
https://api.github.com/repos/apache/airflow/contents/constraints-3.9.txt?ref=constraints-3.0.1
to
/Users/amoghdesai/Documents/OSS/repos/airflow/.build/constraints/constraints-3.0.1-python-3.9.txt
Generating metadata for airbyte
Generating metadata for amazon
Generating metadata for apache.cassandra
Generating metadata for apache.druid
Generating metadata for apache.hdfs
Generating metadata for apache.iceberg
Generating metadata for apache.kafka
Generating metadata for apache.livy
Generating metadata for apache.pinot
Generating metadata for apache.tinkerpop
Generating metadata for arangodb
Generating metadata for atlassian.jira
No constraints mention apache.tinkerpop in any Airflow version. Skipping it
altogether.
Generating metadata for apprise
Tag providers-apache-iceberg/1.3.0 not found in the repository
Generating metadata for apache.impala
Tag providers-apache-kafka/1.9.0 not found in the repository
Generating metadata for apache.kylin
Tag providers-apprise/2.1.0 not found in the repository
Generating metadata for cloudant
Tag providers-arangodb/2.8.0 not found in the repository
Generating metadata for asana
Tag providers-atlassian-jira/3.1.0 not found in the repository
Generating metadata for celery
Tag providers-apache-impala/1.7.0 not found in the repository
Generating metadata for cohere
Tag providers-apache-cassandra/3.8.0 not found in the repository
Generating metadata for apache.drill
Tag providers-airbyte/5.1.0 not found in the repository
Generating metadata for alibaba
Tag providers-apache-pinot/4.8.0 not found in the repository
Generating metadata for apache.spark
Tag providers-apache-hdfs/4.9.0 not found in the repository
Generating metadata for apache.hive
Tag providers-cohere/1.5.0 not found in the repository
Generating metadata for common.compat
Tag providers-apache-livy/4.4.0 not found in the repository
Generating metadata for apache.pig
Tag providers-apache-druid/4.2.0 not found in the repository
Generating metadata for apache.flink
Tag providers-asana/2.10.0 not found in the repository
Generating metadata for common.io
Tag providers-apache-kylin/3.9.0 not found in the repository
Generating metadata for common.sql
Tag providers-cloudant/4.2.0 not found in the repository
Generating metadata for cncf.kubernetes
Tag providers-common-compat/1.7.0 not found in the repository
Generating metadata for datadog
Tag providers-apache-drill/3.1.0 not found in the repository
Generating metadata for dingding
Tag providers-common-io/1.6.0 not found in the repository
Generating metadata for common.messaging
Tag providers-alibaba/3.1.0 not found in the repository
Generating metadata for docker
Tag providers-apache-pig/4.7.0 not found in the repository
Generating metadata for elasticsearch
Tag providers-apache-flink/1.7.0 not found in the repository
Generating metadata for fab
Tag providers-common-messaging/1.0.2 not found in the repository
Generating metadata for ftp
Tag providers-celery/3.11.0 not found in the repository
Generating metadata for github
Tag providers-datadog/3.9.0 not found in the repository
Generating metadata for dbt.cloud
Tag providers-dingding/3.8.0 not found in the repository
Generating metadata for discord
Tag providers-apache-spark/5.3.0 not found in the repository
Generating metadata for grpc
Tag providers-amazon/9.8.0 not found in the repository
Generating metadata for apache.beam
Tag providers-fab/2.1.0 not found in the repository
Generating metadata for facebook
Tag providers-github/2.9.0 not found in the repository
Generating metadata for google
Tag providers-common-sql/1.27.1 not found in the repository
Generating metadata for databricks
Tag providers-apache-hive/9.1.0 not found in the repository
Generating metadata for http
Tag providers-ftp/3.13.0 not found in the repository
Generating metadata for git
Generating metadata for influxdb
Tag providers-grpc/3.8.0 not found in the repository
Generating metadata for hashicorp
Tag providers-discord/3.10.0 not found in the repository
Generating metadata for jenkins
Tag providers-facebook/3.8.0 not found in the repository
Generating metadata for microsoft.mssql
Tag providers-elasticsearch/6.3.0 not found in the repository
Generating metadata for exasol
Tag providers-docker/4.4.0 not found in the repository
Generating metadata for edge3
Tag providers-dbt-cloud/4.4.0 not found in the repository
Tag providers-edge3/1.1.0 not found in the repository
Generating metadata for microsoft.winrm
Generating metadata for mysql
Tag providers-influxdb/2.9.0 not found in the repository
Generating metadata for jdbc
Tag providers-apache-beam/6.1.0 not found in the repository
Generating metadata for odbc
Tag providers-cncf-kubernetes/10.5.0 not found in the repository
Generating metadata for openfaas
Tag providers-http/5.3.0 not found in the repository
Generating metadata for imap
Tag providers-hashicorp/4.2.0 not found in the repository
Tag providers-jenkins/4.1.0 not found in the repository
Generating metadata for microsoft.azure
Generating metadata for opensearch
Tag providers-microsoft-mssql/4.3.0 not found in the repository
Generating metadata for microsoft.psrp
Tag providers-microsoft-winrm/3.10.0 not found in the repository
Generating metadata for mongo
Tag providers-databricks/7.4.0 not found in the repository
Generating metadata for oracle
Tag providers-openfaas/3.8.0 not found in the repository
Generating metadata for openlineage
Tag providers-exasol/4.8.0 not found in the repository
Generating metadata for papermill
Tag providers-opensearch/1.7.0 not found in the repository
Generating metadata for opsgenie
Tag providers-jdbc/5.2.0 not found in the repository
Generating metadata for pinecone
Tag providers-odbc/4.10.0 not found in the repository
Generating metadata for openai
Tag providers-imap/3.9.0 not found in the repository
Generating metadata for presto
Tag providers-mysql/6.3.0 not found in the repository
Generating metadata for neo4j
Generating metadata for redis
Tag providers-microsoft-psrp/3.1.0 not found in the repository
Generating metadata for samba
Tag providers-pinecone/2.3.0 not found in the repository
Generating metadata for postgres
Tag providers-openai/1.6.0 not found in the repository
Generating metadata for sendgrid
Tag providers-mongo/5.1.0 not found in the repository
Generating metadata for singularity
Tag providers-openlineage/2.3.0 not found in the repository
Generating metadata for smtp
Tag providers-opsgenie/5.9.0 not found in the repository
Generating metadata for sqlite
Tag providers-papermill/3.11.0 not found in the repository
Generating metadata for pgvector
Tag providers-oracle/4.1.0 not found in the repository
Generating metadata for pagerduty
Tag providers-neo4j/3.9.0 not found in the repository
Generating metadata for standard
Tag providers-samba/4.10.0 not found in the repository
Generating metadata for segment
Tag providers-sendgrid/4.1.0 not found in the repository
Generating metadata for sftp
Tag providers-redis/4.1.0 not found in the repository
Generating metadata for salesforce
Tag providers-pgvector/1.5.0 not found in the repository
Generating metadata for telegram
Tag providers-singularity/3.8.0 not found in the repository
Generating metadata for slack
Tag providers-smtp/2.1.0 not found in the repository
Generating metadata for snowflake
Tag providers-standard/1.2.0 not found in the repository
Generating metadata for tableau
Tag providers-presto/5.9.0 not found in the repository
Generating metadata for qdrant
Tag providers-microsoft-azure/12.4.0 not found in the repository
Generating metadata for trino
Tag providers-segment/3.8.0 not found in the repository
Generating metadata for weaviate
Tag providers-sqlite/4.1.0 not found in the repository
Generating metadata for ssh
Tag providers-pagerduty/5.0.0 not found in the repository
Generating metadata for ydb
Tag providers-postgres/6.2.0 not found in the repository
Tag providers-qdrant/1.4.0 not found in the repository
Tag providers-telegram/4.8.0 not found in the repository
Generating metadata for teradata
Tag providers-ydb/2.2.0 not found in the repository
Generating metadata for zendesk
Tag providers-weaviate/3.1.0 not found in the repository
Generating metadata for yandex
Tag providers-salesforce/5.11.0 not found in the repository
Tag providers-tableau/5.1.0 not found in the repository
Tag providers-teradata/3.1.0 not found in the repository
Tag providers-sftp/5.3.0 not found in the repository
Tag providers-slack/9.1.0 not found in the repository
Tag providers-zendesk/4.10.0 not found in the repository
Tag providers-trino/6.2.0 not found in the repository
Generating metadata for vertica
Tag providers-ssh/4.1.0 not found in the repository
Tag providers-yandex/4.1.0 not found in the repository
Tag providers-snowflake/6.3.1 not found in the repository
Tag providers-vertica/4.1.0 not found in the repository
```
<!-- Please keep an empty line above the dashes. -->
---
**^ Add meaningful description above**
Read the **[Pull Request
Guidelines](https://github.com/apache/airflow/blob/main/contributing-docs/05_pull_requests.rst#pull-request-guidelines)**
for more information.
In case of fundamental code changes, an Airflow Improvement Proposal
([AIP](https://cwiki.apache.org/confluence/display/AIRFLOW/Airflow+Improvement+Proposals))
is needed.
In case of a new dependency, check compliance with the [ASF 3rd Party
License Policy](https://www.apache.org/legal/resolved.html#category-x).
In case of backwards incompatible changes please leave a note in a
newsfragment file, named `{pr_number}.significant.rst` or
`{issue_number}.significant.rst`, in
[airflow-core/newsfragments](https://github.com/apache/airflow/tree/main/airflow-core/newsfragments).
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]