Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Upgrade Airflow from 2.7.3 to 2.8.2 #1935

Merged
merged 11 commits into from
Mar 7, 2024
Merged
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

version: 2.1
orbs:
docker: circleci/docker@2.2.0
docker: circleci/docker@2.5.0
python: circleci/[email protected]

jobs:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM apache/airflow:slim-2.7.3-python3.10
FROM apache/airflow:slim-2.8.2-python3.10

ARG PROJECT_DIR="/opt/airflow"

Expand Down
7 changes: 5 additions & 2 deletions config/airflow_local_settings.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
STATE_COLORS = {
"queued": "gray",
"running": "lime",
"success": "#0000FF",
"success": "#0000FF", # Rather than "green".
"restarting": "violet",
"failed": "red",
"up_for_retry": "gold",
"up_for_reschedule": "turquoise",
"upstream_failed": "orange",
"skipped": "pink",
"skipped": "pink", # Rather than "hotpink".
"deferred": "mediumpurple",
"removed": "lightgrey",
"scheduled": "tan",
}
Loading