Conversation
Key points: - eslint is now stricter - css-loader css modules options have been moved Below details some of the major package version upgrades: eslint 5 to 6: - https://eslint.org/docs/user-guide/migrating-to-6.0.0 - node 6 not supported - multiple validation changes css-loader 1 to 3: - css modules disabled by default - min node ver: 8.9.0 - css modules option moved to "modules" key as object (affects localIdentName, hashPrefix, etc.) file-loader 2 to 4: - removed useRelativePath option - min webpack 4 - min node: 8.9.0 raw-loader 0.5.1 to 3: - min node dep 8.9.0 style-loader 0 to 1: - min node dep 8.9.0 - min webpack 4 - lots of option changes: https://github.com/webpack-contrib/style-loader/releases/tag/v1.0.0 svg-sprite-loader 3 to 4: - safe, no breaking changes despite major bump url-loader 1 to 2: - min node 8.9.0 - "limit" param must always be a number clean-webpack-plugin 0 to 3: - min node 7 - min webpack 3 - default export is now a named symbol export (CleanWebpackPlugin) copy-webpack-plugin 4 to 5: - min node 6.9 - min webpack 4 terser-webpack-plugin 1 to 2: - min node 8.9.0 - default option value changes (mostly from "false" to "true") workbox-webpack-plugin 3 to 4: - workbox is now at v4 - manifest.json is now precached by default webpack-dashboard 2 to 3: - min node 8 commitizen 3 to 4: - remove node 6 and 8 support cz-conventional-changelog 2 to 3: - "Node 10 is LTS so please upgrade to it" size-limit 0 to 2: - ????? They don't have any notes on this
Contributor
Author
|
Note I'm not ready to merge just yet. |
Contributor
Author
|
Ok, there are two reported security vulnerabilities from |
Collaborator
|
🎉 This PR is included in version 9.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This increments the major version for a bunch of packages. See the BREAKING CHANGE commit message for more details.
Ones that likely have the most impact, so may need testing:
css-loader:
eslint:
Fixes #7
@jourdain