movies-javascript-bolt
movies-javascript-bolt copied to clipboard
Neo4j Movies Example with webpack-in-browser app using the neo4j-javascript-driver
Bumps [neo4j-driver](https://github.com/neo4j/neo4j-javascript-driver) from 4.4.4 to 4.4.7. Release notes Sourced from neo4j-driver's releases. 4.4.7 See release notes on the wiki 4.4.6 See release notes on the wiki 4.4.5 See release notes...
Bumps [webpack](https://github.com/webpack/webpack) from 5.69.1 to 5.74.0. Release notes Sourced from webpack's releases. v5.74.0 Features add resolve.extensionAlias option which allows to alias extensions This is useful when you are forced to...
Bumps [terser](https://github.com/terser/terser) from 5.10.0 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...
Bumps [webpack-dev-server](https://github.com/webpack/webpack-dev-server) from 4.7.4 to 4.9.3. Release notes Sourced from webpack-dev-server's releases. v4.9.3 4.9.3 (2022-06-29) Bug Fixes avoid creation unnecessary stream for static sockjs file (#4482) (049b153) history-api-fallback now supports...
Bumps [webpack-cli](https://github.com/webpack/webpack-cli) from 4.9.2 to 4.10.0. Release notes Sourced from webpack-cli's releases. v4.10.0 4.10.0 (2022-06-13) Bug Fixes changeTime is already in milliseconds (#3198) (d390d32) improve parsing of --env flag (#3286)...
Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. Changelog Sourced from async's changelog. v2.6.4 Fix potential prototype pollution exploit (#1828) Commits c6bdaca Version 2.6.4 8870da9 Update built files 4df6754 update changelog 8f7f903...
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
Bumps [node-forge](https://github.com/digitalbazaar/forge) from 1.2.1 to 1.3.0. Changelog Sourced from node-forge's changelog. 1.3.0 - 2022-03-17 Security Three RSA PKCS#1 v1.5 signature verification issues were reported by Moosa Yahyazadeh ([email protected]). HIGH: Leniency...
Bumps [css-loader](https://github.com/webpack-contrib/css-loader) from 6.6.0 to 6.7.1. Release notes Sourced from css-loader's releases. v6.7.1 6.7.1 (2022-03-08) Bug Fixes defaultGetLocalIdent export (#1427) (74dac1e) v6.7.0 6.7.0 (2022-03-04) Features re-export defaultGetLocalIdent (#1423) (207cf36) Changelog...
The problem is described here: https://github.com/webpack/webpack/issues/14532/. The solution: ```diff - "build": "webpack", - "start": "webpack serve" + "build": "NODE_OPTIONS=--openssl-legacy-provider webpack", + "start": "NODE_OPTIONS=--openssl-legacy-provider webpack serve" ``` BUT this only works...