apache-airflow: 2.6.2 -> 2.6.3

This commit is contained in:
Robert Scott 2023-08-28 16:19:20 +01:00
parent 4261569412
commit d81e8ba58d
4 changed files with 32 additions and 41 deletions

View File

@ -7,7 +7,7 @@
"dev": "NODE_ENV=development webpack --watch --progress --devtool eval-cheap-source-map --mode development",
"prod": "NODE_ENV=production node --max_old_space_size=4096 ./node_modules/webpack/bin/webpack.js --mode production --progress",
"build": "NODE_ENV=production webpack --progress --mode production",
"lint": "eslint --ignore-path=.eslintignore --ext .js,.jsx,.ts,.tsx . && tsc",
"lint": "eslint --ignore-path=.eslintignore --max-warnings=0 --ext .js,.jsx,.ts,.tsx . && tsc",
"lint:fix": "eslint --fix --ignore-path=.eslintignore --ext .js,.jsx,.ts,.tsx . && tsc",
"format": "yarn prettier --write .",
"generate-api-types": "npx openapi-typescript \"../api_connexion/openapi/v1.yaml\" --output static/js/types/api-generated.ts && node alias-rest-types.js static/js/types/api-generated.ts"

File diff suppressed because one or more lines are too long

View File

@ -26,6 +26,7 @@
, flask-session
, flask-wtf
, gitpython
, google-re2
, graphviz
, gunicorn
, httpx
@ -82,7 +83,7 @@
, enabledProviders ? []
}:
let
version = "2.6.2";
version = "2.6.3";
airflow-src = fetchFromGitHub rec {
owner = "apache";
@ -91,7 +92,7 @@ let
# Download using the git protocol rather than using tarballs, because the
# GitHub archive tarballs don't appear to include tests
forceFetchGit = true;
hash = "sha256-ejZw71lMhfnqy4Ziha8/ufmX+SkOfopkeCskf02ZQgA=";
hash = "sha256-7+Zo+kfzB1f4R5HDSxGvjVfGeep/sJy1POxy5ZVi+w8=";
};
# airflow bundles a web interface, which is built using webpack by an undocumented shell script in airflow's source tree.
@ -167,6 +168,7 @@ buildPythonPackage rec {
flask-wtf
flask-login
gitpython
google-re2
graphviz
gunicorn
httpx

View File

@ -21,6 +21,7 @@ PKG_PREFERENCES = {
"dnspython": "dnspython",
"elasticsearch-dsl": "elasticsearch-dsl",
"google-api-python-client": "google-api-python-client",
"protobuf": "protobuf",
"psycopg2-binary": "psycopg2",
"requests_toolbelt": "requests-toolbelt",
}