-You're being redirected to a SSO login page. -Please click the button below if you're not redirected automatically within a few seconds. -
- diff --git a/desktop/core/src/desktop/templates/djangosaml2/post_binding_form.html b/desktop/core/src/desktop/templates/djangosaml2/post_binding_form.html new file mode 100644 index 00000000000..0243515a94d --- /dev/null +++ b/desktop/core/src/desktop/templates/djangosaml2/post_binding_form.html @@ -0,0 +1,14 @@ + + + \ No newline at end of file diff --git a/desktop/libs/notebook/src/notebook/templates/editor_components.mako b/desktop/libs/notebook/src/notebook/templates/editor_components.mako index 2d47139ec1b..e0d119c9cf6 100644 --- a/desktop/libs/notebook/src/notebook/templates/editor_components.mako +++ b/desktop/libs/notebook/src/notebook/templates/editor_components.mako @@ -285,13 +285,15 @@ else: - + - + diff --git a/package-lock.json b/package-lock.json index e671f74bb6a..7ee211640f2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -125,6 +125,7 @@ "sass-loader": "11.1.1", "snarkdown": "2.0.0", "source-map-loader": "5.0.0", + "strip-sourcemap-loader": "0.0.1", "style-loader": "2.0.0", "styled-components": "6.0.8", "stylelint": "16.7.0", @@ -13650,9 +13651,9 @@ } }, "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", "funding": [ { "type": "github", @@ -17025,6 +17026,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/strip-sourcemap-loader": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/strip-sourcemap-loader/-/strip-sourcemap-loader-0.0.1.tgz", + "integrity": "sha512-IrVeMZNYS//7jKzCVF4U6keLyOe/6JYLtjyvCNyteKxXwWQ+MrwNGT42eJQll+pChxgE3K34iLddz4rWG6e8Ow==", + "dev": true + }, "node_modules/style-loader": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz", diff --git a/package.json b/package.json index 762e5e3ff45..6048e825a1c 100644 --- a/package.json +++ b/package.json @@ -146,6 +146,7 @@ "sass-loader": "11.1.1", "snarkdown": "2.0.0", "source-map-loader": "5.0.0", + "strip-sourcemap-loader": "0.0.1", "style-loader": "2.0.0", "styled-components": "6.0.8", "stylelint": "16.7.0", diff --git a/webpack.config.js b/webpack.config.js index 6c7eea62d8b..b79ceeb6c10 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -64,6 +64,14 @@ const config = { enforce: 'pre', use: ['source-map-loader'] }, + // Remove hardcoded references to source map files in third party mjs-files + // since those files will be missing in our builds. + { + test: /\.mjs$/, + include: /node_modules/, + enforce: 'post', + loader: 'strip-sourcemap-loader' + }, { test: /\.scss$/, exclude: /node_modules/,