apache-airflow-providers-fab 1.5.3rc1__py3-none-any.whl → 2.0.0rc1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- airflow/providers/fab/__init__.py +3 -3
- airflow/providers/fab/auth_manager/api/auth/backend/basic_auth.py +1 -1
- airflow/providers/fab/auth_manager/api/auth/backend/kerberos_auth.py +1 -1
- airflow/providers/fab/auth_manager/api/auth/backend/session.py +1 -1
- airflow/providers/fab/auth_manager/api_endpoints/role_and_permission_endpoint.py +1 -1
- airflow/providers/fab/auth_manager/api_endpoints/user_endpoint.py +1 -1
- airflow/providers/fab/auth_manager/cli_commands/db_command.py +1 -1
- airflow/providers/fab/auth_manager/cli_commands/utils.py +4 -16
- airflow/providers/fab/auth_manager/decorators/auth.py +3 -2
- airflow/providers/fab/auth_manager/fab_auth_manager.py +26 -20
- airflow/providers/fab/auth_manager/security_manager/override.py +7 -135
- airflow/providers/fab/get_provider_info.py +4 -5
- airflow/providers/fab/www/__init__.py +17 -0
- airflow/providers/fab/www/app.py +87 -0
- airflow/providers/fab/www/extensions/__init__.py +16 -0
- airflow/providers/fab/www/extensions/init_appbuilder.py +557 -0
- airflow/providers/fab/www/extensions/init_jinja_globals.py +80 -0
- airflow/providers/fab/www/extensions/init_manifest_files.py +61 -0
- airflow/providers/fab/www/extensions/init_security.py +42 -0
- airflow/providers/fab/www/extensions/init_views.py +67 -0
- airflow/providers/fab/www/package-lock.json +21201 -0
- airflow/providers/fab/www/package.json +156 -0
- airflow/providers/fab/www/static/css/bootstrap-theme.css +6215 -0
- airflow/providers/fab/www/static/css/loading-dots.css +60 -0
- airflow/providers/fab/www/static/css/main.css +676 -0
- airflow/providers/fab/www/static/css/material-icons.css +84 -0
- airflow/providers/fab/www/static/js/datetime_utils.js +134 -0
- airflow/providers/fab/www/static/js/main.js +324 -0
- airflow/providers/fab/www/static/sort_asc.png +0 -0
- airflow/providers/fab/www/static/sort_both.png +0 -0
- airflow/providers/fab/www/static/sort_desc.png +0 -0
- airflow/providers/fab/www/templates/airflow/_messages.html +30 -0
- airflow/providers/fab/www/templates/airflow/error.html +35 -0
- airflow/providers/fab/www/templates/airflow/main.html +79 -0
- airflow/providers/fab/www/templates/airflow/traceback.html +57 -0
- airflow/providers/fab/www/templates/appbuilder/index.html +20 -0
- airflow/providers/fab/www/templates/appbuilder/navbar.html +53 -0
- airflow/providers/fab/www/templates/appbuilder/navbar_menu.html +60 -0
- airflow/providers/fab/www/webpack.config.js +248 -0
- {apache_airflow_providers_fab-1.5.3rc1.dist-info → apache_airflow_providers_fab-2.0.0rc1.dist-info}/METADATA +10 -10
- {apache_airflow_providers_fab-1.5.3rc1.dist-info → apache_airflow_providers_fab-2.0.0rc1.dist-info}/RECORD +43 -16
- {apache_airflow_providers_fab-1.5.3rc1.dist-info → apache_airflow_providers_fab-2.0.0rc1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_fab-1.5.3rc1.dist-info → apache_airflow_providers_fab-2.0.0rc1.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,248 @@
|
|
1
|
+
/*!
|
2
|
+
* Licensed to the Apache Software Foundation (ASF) under one
|
3
|
+
* or more contributor license agreements. See the NOTICE file
|
4
|
+
* distributed with this work for additional information
|
5
|
+
* regarding copyright ownership. The ASF licenses this file
|
6
|
+
* to you under the Apache License, Version 2.0 (the
|
7
|
+
* "License"); you may not use this file except in compliance
|
8
|
+
* with the License. You may obtain a copy of the License at
|
9
|
+
*
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
*
|
12
|
+
* Unless required by applicable law or agreed to in writing,
|
13
|
+
* software distributed under the License is distributed on an
|
14
|
+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
15
|
+
* KIND, either express or implied. See the License for the
|
16
|
+
* specific language governing permissions and limitations
|
17
|
+
* under the License.
|
18
|
+
*/
|
19
|
+
|
20
|
+
const webpack = require("webpack");
|
21
|
+
const path = require("path");
|
22
|
+
const { WebpackManifestPlugin } = require("webpack-manifest-plugin");
|
23
|
+
const cwplg = require("clean-webpack-plugin");
|
24
|
+
const CopyWebpackPlugin = require("copy-webpack-plugin");
|
25
|
+
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
26
|
+
const MomentLocalesPlugin = require("moment-locales-webpack-plugin");
|
27
|
+
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
|
28
|
+
const LicensePlugin = require("webpack-license-plugin");
|
29
|
+
const TerserPlugin = require("terser-webpack-plugin");
|
30
|
+
|
31
|
+
// Input Directory (airflow/www)
|
32
|
+
// noinspection JSUnresolvedVariable
|
33
|
+
const CSS_DIR = path.resolve(__dirname, "./static/css");
|
34
|
+
const JS_DIR = path.resolve(__dirname, "./static/js");
|
35
|
+
|
36
|
+
// Output Directory (airflow/www/static/dist)
|
37
|
+
// noinspection JSUnresolvedVariable
|
38
|
+
const BUILD_DIR = path.resolve(__dirname, "./static/dist");
|
39
|
+
|
40
|
+
// Convert licenses json into a standard format for LICENSES.txt
|
41
|
+
const formatLicenses = (packages) => {
|
42
|
+
let text = `Apache Airflow
|
43
|
+
Copyright 2016-2023 The Apache Software Foundation
|
44
|
+
|
45
|
+
This product includes software developed at The Apache Software
|
46
|
+
Foundation (http://www.apache.org/).
|
47
|
+
|
48
|
+
=======================================================================
|
49
|
+
`;
|
50
|
+
packages.forEach((p) => {
|
51
|
+
text += `${p.name}|${p.version}:\n-----\n${p.license}\n${
|
52
|
+
p.licenseText || p.author
|
53
|
+
}\n${p.repository || ""}\n\n\n`;
|
54
|
+
});
|
55
|
+
return text;
|
56
|
+
};
|
57
|
+
|
58
|
+
const config = {
|
59
|
+
entry: {
|
60
|
+
airflowDefaultTheme: `${CSS_DIR}/bootstrap-theme.css`,
|
61
|
+
loadingDots: `${CSS_DIR}/loading-dots.css`,
|
62
|
+
main: [`${CSS_DIR}/main.css`, `${JS_DIR}/main.js`],
|
63
|
+
materialIcons: `${CSS_DIR}/material-icons.css`,
|
64
|
+
moment: "moment-timezone",
|
65
|
+
},
|
66
|
+
output: {
|
67
|
+
path: BUILD_DIR,
|
68
|
+
filename: "[name].[chunkhash].js",
|
69
|
+
chunkFilename: "[name].[chunkhash].js",
|
70
|
+
library: ["Airflow", "[name]"],
|
71
|
+
libraryTarget: "umd",
|
72
|
+
publicPath: "",
|
73
|
+
},
|
74
|
+
resolve: {
|
75
|
+
alias: {
|
76
|
+
// Be sure to update aliases in jest.config.js and tsconfig.json
|
77
|
+
src: path.resolve(__dirname, "static/js"),
|
78
|
+
},
|
79
|
+
extensions: [".js", ".jsx", ".ts", ".tsx", ".css"],
|
80
|
+
},
|
81
|
+
module: {
|
82
|
+
rules: [
|
83
|
+
{
|
84
|
+
test: /\.(js|jsx|tsx|ts)$/,
|
85
|
+
exclude: /node_modules/,
|
86
|
+
use: [
|
87
|
+
{
|
88
|
+
loader: "babel-loader",
|
89
|
+
options: {
|
90
|
+
presets: ["@babel/preset-react", "@babel/preset-typescript"],
|
91
|
+
},
|
92
|
+
},
|
93
|
+
],
|
94
|
+
},
|
95
|
+
// Extract css files
|
96
|
+
{
|
97
|
+
test: /\.css$/,
|
98
|
+
include: CSS_DIR,
|
99
|
+
exclude: /node_modules/,
|
100
|
+
use: [
|
101
|
+
{
|
102
|
+
loader: MiniCssExtractPlugin.loader,
|
103
|
+
options: {
|
104
|
+
esModule: true,
|
105
|
+
},
|
106
|
+
},
|
107
|
+
"css-loader",
|
108
|
+
],
|
109
|
+
},
|
110
|
+
// Extract css files
|
111
|
+
{
|
112
|
+
test: /\.css$/,
|
113
|
+
exclude: CSS_DIR,
|
114
|
+
include: /node_modules/,
|
115
|
+
use: ["css-loader"],
|
116
|
+
},
|
117
|
+
/* for css linking images */
|
118
|
+
{
|
119
|
+
test: /\.(png|jpg|gif)$/i,
|
120
|
+
use: [
|
121
|
+
{
|
122
|
+
loader: "url-loader",
|
123
|
+
options: {
|
124
|
+
limit: 100000,
|
125
|
+
},
|
126
|
+
},
|
127
|
+
],
|
128
|
+
},
|
129
|
+
/* for fonts */
|
130
|
+
{
|
131
|
+
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
|
132
|
+
use: [
|
133
|
+
{
|
134
|
+
loader: "url-loader",
|
135
|
+
options: {
|
136
|
+
limit: 100000,
|
137
|
+
mimetype: "application/font-woff",
|
138
|
+
},
|
139
|
+
},
|
140
|
+
],
|
141
|
+
},
|
142
|
+
{
|
143
|
+
test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
|
144
|
+
use: [
|
145
|
+
{
|
146
|
+
loader: "file-loader",
|
147
|
+
},
|
148
|
+
],
|
149
|
+
},
|
150
|
+
],
|
151
|
+
},
|
152
|
+
plugins: [
|
153
|
+
new WebpackManifestPlugin({
|
154
|
+
// d3-tip is named index.js in its dist folder which was confusing the manifest
|
155
|
+
map: (file) =>
|
156
|
+
file.path === "d3-tip.js" ? { ...file, name: "d3-tip.js" } : file,
|
157
|
+
}),
|
158
|
+
new cwplg.CleanWebpackPlugin({
|
159
|
+
verbose: true,
|
160
|
+
}),
|
161
|
+
new MiniCssExtractPlugin({
|
162
|
+
filename: "[name].[chunkhash].css",
|
163
|
+
}),
|
164
|
+
|
165
|
+
// MomentJS loads all the locale, making it a huge JS file.
|
166
|
+
// This will ignore the locales from momentJS
|
167
|
+
new MomentLocalesPlugin(),
|
168
|
+
|
169
|
+
new webpack.DefinePlugin({
|
170
|
+
"process.env": {
|
171
|
+
NODE_ENV: JSON.stringify(process.env.NODE_ENV),
|
172
|
+
},
|
173
|
+
}),
|
174
|
+
// Since we have all the dependencies separated from hard-coded JS within HTML,
|
175
|
+
// this seems like an efficient solution for now. Will update that once
|
176
|
+
// we'll have the dependencies imported within the custom JS
|
177
|
+
new CopyWebpackPlugin({
|
178
|
+
patterns: [
|
179
|
+
{
|
180
|
+
from: "node_modules/d3/d3.min.*",
|
181
|
+
flatten: true,
|
182
|
+
},
|
183
|
+
{
|
184
|
+
from: "node_modules/dagre-d3/dist/*.min.*",
|
185
|
+
flatten: true,
|
186
|
+
},
|
187
|
+
{
|
188
|
+
from: "node_modules/d3-shape/dist/*.min.*",
|
189
|
+
flatten: true,
|
190
|
+
},
|
191
|
+
{
|
192
|
+
from: "node_modules/d3-tip/dist/index.js",
|
193
|
+
to: "d3-tip.js",
|
194
|
+
flatten: true,
|
195
|
+
},
|
196
|
+
{
|
197
|
+
from: "node_modules/jquery-ui/dist/jquery-ui.min.js",
|
198
|
+
flatten: true,
|
199
|
+
},
|
200
|
+
{
|
201
|
+
from: "node_modules/jquery-ui/dist/themes/base/jquery-ui.min.css",
|
202
|
+
flatten: true,
|
203
|
+
},
|
204
|
+
{
|
205
|
+
from: "node_modules/codemirror/lib/codemirror.*",
|
206
|
+
flatten: true,
|
207
|
+
},
|
208
|
+
{
|
209
|
+
from: "node_modules/codemirror/addon/lint/**.*",
|
210
|
+
flatten: true,
|
211
|
+
},
|
212
|
+
{
|
213
|
+
from: "node_modules/codemirror/mode/javascript/javascript.js",
|
214
|
+
flatten: true,
|
215
|
+
},
|
216
|
+
{
|
217
|
+
from: "node_modules/jshint/dist/jshint.js",
|
218
|
+
flatten: true,
|
219
|
+
},
|
220
|
+
],
|
221
|
+
}),
|
222
|
+
new LicensePlugin({
|
223
|
+
additionalFiles: {
|
224
|
+
"../../../../3rd-party-licenses/LICENSES-ui.txt": formatLicenses,
|
225
|
+
},
|
226
|
+
unacceptableLicenseTest: (licenseIdentifier) =>
|
227
|
+
[
|
228
|
+
"BCL",
|
229
|
+
"JSR",
|
230
|
+
"ASL",
|
231
|
+
"RSAL",
|
232
|
+
"SSPL",
|
233
|
+
"CPOL",
|
234
|
+
"NPL",
|
235
|
+
"BSD-4",
|
236
|
+
"QPL",
|
237
|
+
"GPL",
|
238
|
+
"LGPL",
|
239
|
+
].includes(licenseIdentifier),
|
240
|
+
}),
|
241
|
+
],
|
242
|
+
optimization: {
|
243
|
+
minimize: process.env.NODE_ENV === "production",
|
244
|
+
minimizer: [new CssMinimizerPlugin({}), new TerserPlugin()],
|
245
|
+
},
|
246
|
+
};
|
247
|
+
|
248
|
+
module.exports = config;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: apache-airflow-providers-fab
|
3
|
-
Version:
|
3
|
+
Version: 2.0.0rc1
|
4
4
|
Summary: Provider package apache-airflow-providers-fab for Apache Airflow
|
5
5
|
Keywords: airflow-provider,fab,airflow,integration
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
@@ -21,16 +21,16 @@ Classifier: Programming Language :: Python :: 3.11
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.12
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
23
23
|
Requires-Dist: apache-airflow-providers-common-compat>=1.2.1rc0
|
24
|
-
Requires-Dist: apache-airflow>=
|
25
|
-
Requires-Dist: flask-appbuilder==4.5.
|
24
|
+
Requires-Dist: apache-airflow>=3.0.0rc0
|
25
|
+
Requires-Dist: flask-appbuilder==4.5.2
|
26
26
|
Requires-Dist: flask-login>=0.6.2
|
27
27
|
Requires-Dist: flask>=2.2,<2.3
|
28
28
|
Requires-Dist: google-re2>=1.0
|
29
29
|
Requires-Dist: jmespath>=0.7.0
|
30
30
|
Requires-Dist: kerberos>=1.3.0 ; extra == "kerberos"
|
31
31
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
32
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-fab/
|
33
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-fab/
|
32
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-fab/2.0.0/changelog.html
|
33
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-fab/2.0.0
|
34
34
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
35
35
|
Project-URL: Source Code, https://github.com/apache/airflow
|
36
36
|
Project-URL: Twitter, https://x.com/ApacheAirflow
|
@@ -81,7 +81,7 @@ Provides-Extra: kerberos
|
|
81
81
|
|
82
82
|
Package ``apache-airflow-providers-fab``
|
83
83
|
|
84
|
-
Release: ``
|
84
|
+
Release: ``2.0.0.rc1``
|
85
85
|
|
86
86
|
|
87
87
|
`Flask App Builder <https://flask-appbuilder.readthedocs.io/>`__
|
@@ -94,7 +94,7 @@ This is a provider package for ``fab`` provider. All classes for this provider p
|
|
94
94
|
are in ``airflow.providers.fab`` python package.
|
95
95
|
|
96
96
|
You can find package information and changelog for the provider
|
97
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-fab/
|
97
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-fab/2.0.0/>`_.
|
98
98
|
|
99
99
|
Installation
|
100
100
|
------------
|
@@ -111,10 +111,10 @@ Requirements
|
|
111
111
|
========================================== ==================
|
112
112
|
PIP package Version required
|
113
113
|
========================================== ==================
|
114
|
-
``apache-airflow`` ``>=
|
114
|
+
``apache-airflow`` ``>=3.0.0.dev0``
|
115
115
|
``apache-airflow-providers-common-compat`` ``>=1.2.1``
|
116
116
|
``flask`` ``>=2.2,<2.3``
|
117
|
-
``flask-appbuilder`` ``==4.5.
|
117
|
+
``flask-appbuilder`` ``==4.5.2``
|
118
118
|
``flask-login`` ``>=0.6.2``
|
119
119
|
``google-re2`` ``>=1.0``
|
120
120
|
``jmespath`` ``>=0.7.0``
|
@@ -140,4 +140,4 @@ Dependent package
|
|
140
140
|
================================================================================================================== =================
|
141
141
|
|
142
142
|
The changelog for the provider package can be found in the
|
143
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-fab/
|
143
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-fab/2.0.0/changelog.html>`_.
|
@@ -1,27 +1,27 @@
|
|
1
1
|
airflow/providers/fab/LICENSE,sha256=FFb4jd2AXnOOf7XLP04pQW6jbdhG49TxlGY6fFpCV1Y,13609
|
2
|
-
airflow/providers/fab/__init__.py,sha256=
|
2
|
+
airflow/providers/fab/__init__.py,sha256=XfPbA_RY3CtuASSD_ZA32yNOhy8KxVVn8HOjx9JJefA,1500
|
3
3
|
airflow/providers/fab/alembic.ini,sha256=_1SvObfjMAkuD7DN5VR2S6Rd7_F81pORZT-w7GJldIA,4461
|
4
|
-
airflow/providers/fab/get_provider_info.py,sha256=
|
4
|
+
airflow/providers/fab/get_provider_info.py,sha256=s3JMCBoaAKkSePLVQGx2VBW6u85S3FUVSDLwoooSmg0,3501
|
5
5
|
airflow/providers/fab/auth_manager/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
6
|
-
airflow/providers/fab/auth_manager/fab_auth_manager.py,sha256=
|
6
|
+
airflow/providers/fab/auth_manager/fab_auth_manager.py,sha256=naHaDDUACL7ll5tEgdOJP3-Th-1PAhXwEvYtoyhf69g,23202
|
7
7
|
airflow/providers/fab/auth_manager/api/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
8
8
|
airflow/providers/fab/auth_manager/api/auth/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
9
9
|
airflow/providers/fab/auth_manager/api/auth/backend/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
10
|
-
airflow/providers/fab/auth_manager/api/auth/backend/basic_auth.py,sha256=
|
11
|
-
airflow/providers/fab/auth_manager/api/auth/backend/kerberos_auth.py,sha256=
|
12
|
-
airflow/providers/fab/auth_manager/api/auth/backend/session.py,sha256=
|
10
|
+
airflow/providers/fab/auth_manager/api/auth/backend/basic_auth.py,sha256=oQwUqcJDNCqLTS3trozRddBgccCTNaRk-wn8DXzxgys,2550
|
11
|
+
airflow/providers/fab/auth_manager/api/auth/backend/kerberos_auth.py,sha256=QfM0BPoDutI-1KyQEvwHqM76GeJurBOfb0smew9sYiE,5032
|
12
|
+
airflow/providers/fab/auth_manager/api/auth/backend/session.py,sha256=3xBC4PKvONya4MGhr5HZoPwojWmjStHoR43J8t4eiY4,1502
|
13
13
|
airflow/providers/fab/auth_manager/api_endpoints/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
14
|
-
airflow/providers/fab/auth_manager/api_endpoints/role_and_permission_endpoint.py,sha256=
|
15
|
-
airflow/providers/fab/auth_manager/api_endpoints/user_endpoint.py,sha256=
|
14
|
+
airflow/providers/fab/auth_manager/api_endpoints/role_and_permission_endpoint.py,sha256=iRabsYIcIWjLKxBtK41huvI-d9D5NTdoXgt_FqvD_rs,7548
|
15
|
+
airflow/providers/fab/auth_manager/api_endpoints/user_endpoint.py,sha256=w0rfxEOB3cQLhK0N_q0KyxYdx67kcBIJjDmc-NXxDAE,8480
|
16
16
|
airflow/providers/fab/auth_manager/cli_commands/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
17
|
-
airflow/providers/fab/auth_manager/cli_commands/db_command.py,sha256
|
17
|
+
airflow/providers/fab/auth_manager/cli_commands/db_command.py,sha256=-tImlkzVpdFcv1QDltU8CQGHNMmVdFohXKXtWWvOUOc,2204
|
18
18
|
airflow/providers/fab/auth_manager/cli_commands/definition.py,sha256=XIAPqoHwkFHshfbj6yGIs7xUrR-uSE1F7V71n44PttA,11483
|
19
19
|
airflow/providers/fab/auth_manager/cli_commands/role_command.py,sha256=4w1tHTR5gBbsymeqGIJ4Rs8CmGdw0l49y58pfI0DB_s,9098
|
20
20
|
airflow/providers/fab/auth_manager/cli_commands/sync_perm_command.py,sha256=VpW-rWhgHAL_ReU66D_BrsxlXQN4okfxzj6dyE5IfwA,1663
|
21
21
|
airflow/providers/fab/auth_manager/cli_commands/user_command.py,sha256=DMsGccMSs2u0cn1dQgRYkJoG37JhEE-m9dtn-sWEOXw,10275
|
22
|
-
airflow/providers/fab/auth_manager/cli_commands/utils.py,sha256=
|
22
|
+
airflow/providers/fab/auth_manager/cli_commands/utils.py,sha256=CqayMG8PIMJ1B4ai_PFaF12nzkDg_qmETmxAUWgnXQE,2048
|
23
23
|
airflow/providers/fab/auth_manager/decorators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
24
|
-
airflow/providers/fab/auth_manager/decorators/auth.py,sha256=
|
24
|
+
airflow/providers/fab/auth_manager/decorators/auth.py,sha256=p0_3ZFclvSyWjOvXfnnyLV5L_K-pV-oKqrT6HMGk4SQ,4958
|
25
25
|
airflow/providers/fab/auth_manager/models/__init__.py,sha256=KZl07tphFlZ8kTnsV8k7eTMilaWtd6rV-RjtWOkb13E,9243
|
26
26
|
airflow/providers/fab/auth_manager/models/anonymous_user.py,sha256=gE2E7NQgNBqSJe44pq_RKeZNe7KMVrACL43akF5ucag,1874
|
27
27
|
airflow/providers/fab/auth_manager/models/db.py,sha256=bPWvMiee6vDP4iJNWVCE7PTuLDjOSn_IvA9b9cbQJek,4339
|
@@ -32,7 +32,7 @@ airflow/providers/fab/auth_manager/schemas/role_and_permission_schema.py,sha256=
|
|
32
32
|
airflow/providers/fab/auth_manager/schemas/user_schema.py,sha256=ap0A09dYmzAbSHI88_5j0Ysx0Z1G0rKSNau5lEi_CFc,2383
|
33
33
|
airflow/providers/fab/auth_manager/security_manager/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
34
34
|
airflow/providers/fab/auth_manager/security_manager/constants.py,sha256=x1Sjl_Mu3wmaSy3NFZlHxK2z-juzWmMs1SrzJ0aiBBQ,907
|
35
|
-
airflow/providers/fab/auth_manager/security_manager/override.py,sha256=
|
35
|
+
airflow/providers/fab/auth_manager/security_manager/override.py,sha256=IfXEhhV2jt3jqxiaZhWamTFN3-3IiQ8jPS3ZljlnZzw,111580
|
36
36
|
airflow/providers/fab/auth_manager/views/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
37
37
|
airflow/providers/fab/auth_manager/views/permissions.py,sha256=k5APUTqqKZqMxCWlKrUEgqdDVrGa9719HJ3UmFpiSLc,2886
|
38
38
|
airflow/providers/fab/auth_manager/views/roles_list.py,sha256=o_VqnLbQa4sisKxLwyx6VCl3HmvjKcjkrJG23R81FMQ,1494
|
@@ -45,7 +45,34 @@ airflow/providers/fab/migrations/env.py,sha256=wbgFowVIf-wY1L-DqD2f8wiuTeXNDKeAU
|
|
45
45
|
airflow/providers/fab/migrations/script.py.mako,sha256=_krfPtzv1Unme2b9MCHPgXo0g73HcN2_zDgz3co2N4M,1353
|
46
46
|
airflow/providers/fab/migrations/versions/0001_1_4_0_placeholder_migration.py,sha256=wLZiBiWjfSofXZ4jXMjpEKkIc3jI0a6hpJ73xEYAzss,1370
|
47
47
|
airflow/providers/fab/migrations/versions/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
48
|
+
airflow/providers/fab/www/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
49
|
+
airflow/providers/fab/www/app.py,sha256=-iIMVcaYbkim44q5eLlGxM2DcXH8DLIUAcnYayWy2QU,3259
|
50
|
+
airflow/providers/fab/www/package-lock.json,sha256=jTY8acFl3PiNzieo0BhuoMcsI65kt_TI-NdHLJugDnE,815396
|
51
|
+
airflow/providers/fab/www/package.json,sha256=MG9qvfvtwf53RooYUQ-pR6NCmFTn5Od2zknhdoPl288,5124
|
52
|
+
airflow/providers/fab/www/webpack.config.js,sha256=Jf17mCmoAM_sa-w0nULRGkJpwvyt7KnIHkPdZ7OiqBQ,7064
|
53
|
+
airflow/providers/fab/www/extensions/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
54
|
+
airflow/providers/fab/www/extensions/init_appbuilder.py,sha256=ME4K1aucls_uODt6uyz3Dg240t7XGvHmFy2Y0Dusc4A,19742
|
55
|
+
airflow/providers/fab/www/extensions/init_jinja_globals.py,sha256=4xMc78p9WNYlEi4-loRrlQ7Mb3OfBwoD5S3pCqoaMMk,3023
|
56
|
+
airflow/providers/fab/www/extensions/init_manifest_files.py,sha256=DLeAcH2zMGbT-eDLYdXztP7HJG7H-e1jmSTolimZeAI,2125
|
57
|
+
airflow/providers/fab/www/extensions/init_security.py,sha256=hvqdhnc-6NGls-XxUAYDyng_jPIAPIrKJzM1nXlUIg8,1465
|
58
|
+
airflow/providers/fab/www/extensions/init_views.py,sha256=rPhhad6tQGWPBxrM1mQdvrozH_6SZ4ItCd6UzNfDx4Q,2551
|
59
|
+
airflow/providers/fab/www/static/sort_asc.png,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
60
|
+
airflow/providers/fab/www/static/sort_both.png,sha256=PgFsI65RQXOCtkCuLRnrSAR1MsN61TiUvRhVhlWcz_s,201
|
61
|
+
airflow/providers/fab/www/static/sort_desc.png,sha256=0I7Q4h8YfdMJAw1GUiTagIURmhWhfWFroOR3u1DG8Q0,158
|
62
|
+
airflow/providers/fab/www/static/css/bootstrap-theme.css,sha256=9hxX-_gQUlWspJ-CazcRU74IqY8WnmbhrEdbfHJHxV8,129001
|
63
|
+
airflow/providers/fab/www/static/css/loading-dots.css,sha256=amw1pWMdsaL0yEN_r0rCfwb11FwerQyRyXXFNAoB6hA,1385
|
64
|
+
airflow/providers/fab/www/static/css/main.css,sha256=Emc-ZZumKwH9qLsjor1Lx4supb8NQUHAmRTMNy5mdhU,10395
|
65
|
+
airflow/providers/fab/www/static/css/material-icons.css,sha256=4LV_bzKwJd8UDqOx7jbb2ro_y10nqeaNDmP8Rbv9XCY,112094
|
66
|
+
airflow/providers/fab/www/static/js/datetime_utils.js,sha256=Nq8gP1tRy-ztodREw8Q2QDLGYt_DwIMZWgrEVfuFMgE,4543
|
67
|
+
airflow/providers/fab/www/static/js/main.js,sha256=MUyTstwNQiN9GNT7yHBSt2Oh4Cr3M173CUFSXX6cI2g,9194
|
68
|
+
airflow/providers/fab/www/templates/airflow/_messages.html,sha256=DKKiboYjmRqPRIP3BpUYsIxK5xKGpZy2yRk67lcAW5Y,1147
|
69
|
+
airflow/providers/fab/www/templates/airflow/error.html,sha256=AEXwcesuTXQdzfjJrTr2hX2L1Oxtr-FgehWV9dCBCBA,1327
|
70
|
+
airflow/providers/fab/www/templates/airflow/main.html,sha256=317gj-QZ8v_UuWz5kXEb21ZiHzS6Gq73j88mcIB_DK0,2989
|
71
|
+
airflow/providers/fab/www/templates/airflow/traceback.html,sha256=lbBLGaR_Kj-BC23Hjv6kZukDlScB43mnXsB7sS1nbN8,2373
|
72
|
+
airflow/providers/fab/www/templates/appbuilder/index.html,sha256=ZaZsNdD8fCENqdnZMbjGbCaK5R9WNFRW5vk8y43pCsk,810
|
73
|
+
airflow/providers/fab/www/templates/appbuilder/navbar.html,sha256=KhWNJbnaJUobEAuADcpNx2dhK1E8vEllBAyzbfR6czE,9958
|
74
|
+
airflow/providers/fab/www/templates/appbuilder/navbar_menu.html,sha256=WWQ-_QLMqcW4Cpx_1_yulaQO-soD6ztnY2zfmBAUAGI,2034
|
75
|
+
apache_airflow_providers_fab-2.0.0rc1.dist-info/entry_points.txt,sha256=m05kASp7vFi0ZmQ--CFp7GeJpPL7UT2RQF8EEP5XRX8,99
|
76
|
+
apache_airflow_providers_fab-2.0.0rc1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
77
|
+
apache_airflow_providers_fab-2.0.0rc1.dist-info/METADATA,sha256=4i0LF1o6hXTdjcN_b3m0APB7pLDiLvbTJQloDK8bqS8,6459
|
78
|
+
apache_airflow_providers_fab-2.0.0rc1.dist-info/RECORD,,
|
File without changes
|
File without changes
|