Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
8efafca
add looker to provider
nailo2c May 20, 2025
f2ef107
rm the unnecessary parts
nailo2c May 21, 2025
dc374b0
Typo in the previous fix - needs also to remove \ (#50851)
potiuk May 20, 2025
0e6d77f
Update docs for Python client (#50850)
kaxil May 20, 2025
1b65c6a
Bump webpack from 5.99.8 to 5.99.9 in /providers/fab/src/airflow/prov…
dependabot[bot] May 20, 2025
12f151b
Fix dropdowns in accordion and error text colors (#50845)
bbovenzi May 20, 2025
d3fbde7
Update useTableURLState hook for sticky table sort (#50720)
guan404ming May 20, 2025
90f2bce
Fix the version for generated client (#50859)
kaxil May 20, 2025
747e106
Port `task.test` to Task SDK (#50827)
kaxil May 20, 2025
8be8a82
Fix Example tutorial_objectstorage DAG (#50828)
vatsrahul1001 May 21, 2025
1120b80
Fix backward compatibility for timeout in defer() with Airflow 2.11 (…
amoghrajesh May 21, 2025
345c5d4
Bumping pinecone sdk to 7.0.0 to improve podspec handling (#50868)
amoghrajesh May 21, 2025
bf634e0
API handle slashes in variable keys (#50841)
pierrejeambrun May 21, 2025
7c68058
Use explicit directives instead of implicit syntax (#50870)
uranusjr May 21, 2025
1b6ffca
EmptyOperator raises InvalidURL for non-existing logs (#50325)
zachliu May 21, 2025
db0a861
Fix reading number of dags from direct system providers path (#50843)
potiuk May 21, 2025
aeec4f6
misc updates to provider release guide (#50881)
eladkal May 21, 2025
416a8da
Do not run FAB pre-commits in release branches (#50875)
potiuk May 21, 2025
0c754d4
Bump min version of neo4j sdk to 5.20 (#50882)
eladkal May 21, 2025
70206e4
Remove deprecated for December 2024 and April 2025 in providers/googl…
Crowiant May 21, 2025
1f689fb
Update providers metadata 2025-05-21 (#50879)
eladkal May 21, 2025
79fc99a
Add fetch depth to compare commit history (#50883)
gopidesupavan May 21, 2025
e550a69
fix: Duplicate region in Snowflake URI no longer breaks OpenLineage (…
kacpermuda May 21, 2025
4ae8f67
exclude venv breeze from pycharm discovery (#50888)
gopidesupavan May 21, 2025
0cb7098
Further prune release notes (#50860)
kaxil May 21, 2025
b4388a5
Add fetch tags to true for publish docs (#50887)
gopidesupavan May 21, 2025
ff79395
Deserialize should work while retrieving variables with secrets backe…
amoghrajesh May 21, 2025
8b2ea3a
Move secret_key config to api section (#50839)
pierrejeambrun May 21, 2025
7efeaf2
We actually need to fetch more than 2 commits to fetch logs (#50893)
potiuk May 21, 2025
a7086f9
Bugfix: Logical date isn't populated in Context vars: (#50898)
kaxil May 21, 2025
247009f
Update config endpoint to use the get interface (#50902)
pierrejeambrun May 21, 2025
ba7bac7
Feature/implement i18n for Dashboard and SideBar (#50626)
RoyLee1224 May 21, 2025
59e4dbb
Bump the core-ui-package-updates group across 1 directory with 11 upd…
dependabot[bot] May 21, 2025
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
2 changes: 2 additions & 0 deletions .github/workflows/publish-docs-to-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,8 @@ jobs:
with:
persist-credentials: false
ref: ${{ inputs.ref }}
fetch-depth: 0
fetch-tags: true
- name: "Install Breeze"
uses: ./.github/actions/breeze
with:
Expand Down
12 changes: 10 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ repos:
.*reproducible_build\.yaml$|
^.*/v2.*\.yaml$|
^.*/openapi/_private_ui.*\.yaml$|
^.*/pnpm-lock\.yaml$\|
^.*/pnpm-lock\.yaml$|
.*-generated\.yaml$
types: [yaml]
files: \.ya?ml$
Expand Down Expand Up @@ -1341,7 +1341,15 @@ repos:
- id: generate-openapi-spec
name: Generate the FastAPI API spec
language: python
entry: ./scripts/ci/pre_commit/update_fastapi_api_spec.py
entry: ./scripts/ci/pre_commit/generate_openapi_spec.py
pass_filenames: false
files: ^airflow-core/src/airflow/api_fastapi/.*\.py$|^airflow-core/src/airflow/api_fastapi/auth/managers/simple/.*\.py$|^providers/fab/src/airflow/providers/fab/auth_manager/api_fastapi/.*\.py$
exclude: ^airflow-core/src/airflow/api_fastapi/execution_api/.*
additional_dependencies: ['rich>=12.4.4', 'openapi-spec-validator>=0.7.1']
- id: generate-openapi-spec-fab
name: Generate the FastAPI API spec for FAB
language: python
entry: ./scripts/ci/pre_commit/generate_openapi_spec_fab.py
pass_filenames: false
files: ^airflow-core/src/airflow/api_fastapi/.*\.py$|^airflow-core/src/airflow/api_fastapi/auth/managers/simple/.*\.py$|^providers/fab/src/airflow/providers/fab/auth_manager/api_fastapi/.*\.py$
exclude: ^airflow-core/src/airflow/api_fastapi/execution_api/.*
Expand Down
Loading
Loading