This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch bump-problematic-dependencies
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit 6a0995ef2b8 Bump problematic dependencies to avoid backtracking
add c507b808834 Add Hebrew translation for browse.json (#51679)
add 8c792f4d248 Add Hebrew translation for admin.json (#51650)
add 4ad42912194 Revert "Update HELM chart to use Simple Auth manager
(#49667)" (#51705)
add 197907e1e46 KeycloakAuthManager - Create CLI to create resources in
KeyCloak (#51691)
add 4f314d0304b Generate JWT secret during HELM install (#49923)
add c4573aa8f3c Add TJaniF to German Translation as Owner (#51335)
add dd84efe867d Update the executor and provider doc to highlight the two
statically coded hybrid executors are no longer supported in Airflow 3.0.0+
(#51715)
add de0a6b2c999 Bump problematic dependencies to avoid backtracking
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (6a0995ef2b8)
\
N -- N -- N refs/heads/bump-problematic-dependencies
(de0a6b2c999)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/CODEOWNERS | 2 +-
.pre-commit-config.yaml | 1 +
airflow-core/docs/core-concepts/executor/index.rst | 8 +-
airflow-core/pyproject.toml | 4 +-
airflow-core/src/airflow/ui/src/i18n/config.ts | 4 +
.../src/airflow/ui/src/i18n/locales/he/admin.json | 109 +++++++
.../src/airflow/ui/src/i18n/locales/he/browse.json | 23 ++
chart/templates/_helpers.yaml | 11 +
...rver-secret-key-secret.yaml => jwt-secret.yaml} | 18 +-
chart/values.schema.json | 23 ++
chart/values.yaml | 7 +-
.../helm_tests/airflow_aux/test_airflow_common.py | 2 +
.../airflow_aux/test_basic_helm_chart.py | 3 +
helm-tests/tests/helm_tests/security/test_rbac.py | 1 +
.../celery/docs/celery_kubernetes_executor.rst | 5 +
.../kubernetes/docs/local_kubernetes_executor.rst | 6 +
.../keycloak/auth_manager/cli}/__init__.py | 0
.../keycloak/auth_manager/cli/commands.py | 224 ++++++++++++++
.../keycloak/auth_manager/cli/definition.py | 77 +++++
.../providers/keycloak/auth_manager/constants.py | 13 +-
.../keycloak/auth_manager/keycloak_auth_manager.py | 25 +-
.../keycloak/auth_manager/routes/login.py | 15 +-
.../unit/keycloak/auth_manager/cli}/__init__.py | 0
.../keycloak/auth_manager/cli/test_commands.py | 331 +++++++++++++++++++++
.../keycloak/auth_manager/cli/test_definition.py | 10 +-
.../keycloak/auth_manager/routes/test_login.py | 14 +-
.../unit/keycloak/auth_manager/test_constants.py | 30 +-
.../auth_manager/test_keycloak_auth_manager.py | 15 +-
28 files changed, 930 insertions(+), 51 deletions(-)
create mode 100644 airflow-core/src/airflow/ui/src/i18n/locales/he/admin.json
create mode 100644 airflow-core/src/airflow/ui/src/i18n/locales/he/browse.json
copy chart/templates/secrets/{webserver-secret-key-secret.yaml =>
jwt-secret.yaml} (73%)
copy {airflow-core/src/airflow/api =>
providers/keycloak/src/airflow/providers/keycloak/auth_manager/cli}/__init__.py
(100%)
create mode 100644
providers/keycloak/src/airflow/providers/keycloak/auth_manager/cli/commands.py
create mode 100644
providers/keycloak/src/airflow/providers/keycloak/auth_manager/cli/definition.py
copy airflow-core/src/airflow/api/client/__init__.py =>
providers/keycloak/src/airflow/providers/keycloak/auth_manager/constants.py
(80%)
copy {airflow-core/src/airflow/api =>
providers/keycloak/tests/unit/keycloak/auth_manager/cli}/__init__.py (100%)
create mode 100644
providers/keycloak/tests/unit/keycloak/auth_manager/cli/test_commands.py
copy airflow-core/src/airflow/api/client/__init__.py =>
providers/keycloak/tests/unit/keycloak/auth_manager/cli/test_definition.py (77%)
copy airflow-core/src/airflow/api_fastapi/core_api/routes/public/monitor.py =>
providers/keycloak/tests/unit/keycloak/auth_manager/test_constants.py (58%)