Skip to content

Commit

Permalink
chore: set webpack hashFunction to modern sha256, remove legacy-provi…
Browse files Browse the repository at this point in the history
…der. Fixes #2609 (#3475)

Reference from https://stackoverflow.com/a/74999688

Fixes #2609

Signed-off-by: Dimitri John Ledkov <[email protected]>
  • Loading branch information
xnox authored Mar 27, 2024
1 parent d108c59 commit 633819b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "NODE_OPTIONS=--openssl-legacy-provider webpack serve --config ./src/app/webpack.dev.js",
"build": "rm -rf dist && NODE_OPTIONS=--openssl-legacy-provider webpack --config ./src/app/webpack.prod.js",
"start": "webpack serve --config ./src/app/webpack.dev.js",
"build": "rm -rf dist && webpack --config ./src/app/webpack.prod.js",
"test": "jest",
"eject": "react-scripts eject",
"protogen": "../hack/swagger-codegen.sh generate -i ../pkg/apiclient/rollout/rollout.swagger.json -l typescript-fetch -o src/models/rollout/generated"
Expand Down
4 changes: 4 additions & 0 deletions ui/src/app/webpack.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
'use strict;';

const crypto = require("crypto");
const crypto_orig_createHash = crypto.createHash;
crypto.createHash = algorithm => crypto_orig_createHash(algorithm == "md4" ? "sha256" : algorithm);

const CopyWebpackPlugin = require('copy-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');

Expand Down

0 comments on commit 633819b

Please sign in to comment.