webpack4-boilerplate
webpack4-boilerplate copied to clipboard
build(deps): bump json5, react-hot-loader, babel-loader, css-loader, file-loader, html-webpack-plugin, mini-css-extract-plugin, postcss-loader, sass-loader, style-loader, url-loader, webpack and webpack-cli
Bumps json5 to 2.2.3 and updates ancestor dependencies json5, react-hot-loader, babel-loader, css-loader, file-loader, html-webpack-plugin, mini-css-extract-plugin, postcss-loader, sass-loader, style-loader, url-loader, webpack and webpack-cli. These dependencies need to be updated together.
Updates json5
from 2.1.0 to 2.2.3
Release notes
Sourced from json5's releases.
v2.2.3
- Fix: [email protected] is now the 'latest' release according to npm instead of v1.0.2. (#299)
v2.2.2
- Fix: Properties with the name
__proto__
are added to objects and arrays. (#199) This also fixes a prototype pollution vulnerability reported by Jonathan Gregson! (#295).v2.2.1
- Fix: Removed dependence on minimist to patch CVE-2021-44906. (#266)
v2.2.0
- New: Accurate and documented TypeScript declarations are now included. There is no need to install
@types/json5
. (#236, #244)v2.1.3 [code, diff]
v2.1.2
- Fix: Bump
minimist
tov1.2.5
. (#222)v2.1.1
Changelog
Sourced from json5's changelog.
v2.2.3 [code, diff]
- Fix: [email protected] is now the 'latest' release according to npm instead of v1.0.2. (#299)
v2.2.2 [code, diff]
- Fix: Properties with the name
__proto__
are added to objects and arrays. (#199) This also fixes a prototype pollution vulnerability reported by Jonathan Gregson! (#295).v2.2.1 [code, diff]
- Fix: Removed dependence on minimist to patch CVE-2021-44906. (#266)
v2.2.0 [code, diff]
- New: Accurate and documented TypeScript declarations are now included. There is no need to install
@types/json5
. (#236, #244)v2.1.3 [code, diff]
v2.1.2 [code, diff]
- Fix: Bump
minimist
tov1.2.5
. (#222)v2.1.1 [code, [diff][d2.1.1]]
... (truncated)
Commits
c3a7524
2.2.394fd06d
docs: update CHANGELOG for v2.2.33b8cebf
docs(security): use GitHub security advisoriesf0fd9e1
docs: publish a security policy6a91a05
docs(template): bug -> bug report14f8cb1
2.2.210cc7ca
docs: update CHANGELOG for v2.2.27774c10
fix: add proto to objects and arraysedde30a
Readme: slight tweak to intro97286f8
Improve example in readme- Additional commits viewable in compare view
Updates react-hot-loader
from 4.12.11 to 4.13.1
Release notes
Sourced from react-hot-loader's releases.
🔥-rc for 17-rc
Bug Fixes
- tailUpdate might be blocked by a PureComponent (#1448) (e44103a)
- provide "hot fallback" when module.hot is not truthy (#1451) (ec3447f)
Features
v4.12.19
Bug Fixes
v4.12.18
Bug Fixes
- (regression) hook order change is causing React error, fixes #1393 (6707b4b)
- production babel plugin might perform eager replacement, fixes #1388 (b94adb3)
v4.12.17
Bug Fixes
v4.12.16
Bug Fixes
- dont write to elementType if it is not defined, fixes #1357 (1072303)
- explain why RHL could not be activated, fixes #1362 (9561d66)
- more
@types/react
to dependencies, fixes #1359 (af42c1a)- use logger.warn instead of console to report tail update, fixes #1386 (fbc890a)
16.10
Bug Fixes
- React 16.10 support (b7ed82a)
v4.12.14
Bug Fixes
- autodetect underupdated state and trigger an automatic update, fixes #1342 (33c54f5)
- resolve all components to their last versions, #1342 (62bc67e)
v4.12.13
Bug Fixes
... (truncated)
Changelog
Sourced from react-hot-loader's changelog.
Changelog
All notable changes to this project will be documented in this file. See standard-version for commit guidelines.
4.13.0 (2020-09-22)
Bug Fixes
- tailUpdate might be blocked by a PureComponent (#1448) (e44103a)
- when module.hot is not truthy (#1451) (ec3447f)
Features
4.12.21 (2020-04-30)
Bug Fixes
- add peerDependenciesMeta in package.json (#1433)
4.12.20 (2020-03-14)
Bug Fixes
4.12.19 (2020-01-22)
Bug Fixes
4.12.18 (2019-11-16)
Bug Fixes
- (regression) hook order change is causing React error, fixes #1393 (6707b4b)
- production babel plugin might perform eager replacement, fixes #1388 (b94adb3)
4.12.17 (2019-11-12)
Bug Fixes
... (truncated)
Commits
07d1f4e
4.13.1bddd179
update loader-utils version (#1849)f58a931
Remove space after peerDependency version definition (#1843)642b705
README.md
fix typo (#1811)ed8b310
Note create-react-app support for fast refresh in readme (#1708)6032f42
chore(release): 4.13.0c05396b
feat: support React 17 (#1557)e44103a
fix: tailUpdate might be blocked by a PureComponent (#1448)74d3d9b
Merge pull request #1513 from gaearon/gaearon-patch-1d73d505
README: Link to Fast Refresh Webpack plugin- Additional commits viewable in compare view
Updates babel-loader
from 8.0.6 to 8.3.0
Release notes
Sourced from babel-loader's releases.
v8.3.0
New features
- Pass external dependencies from Babel to Webpack by
@nicolo-ribaudo
in babel/babel-loader#971Full Changelog: https://github.com/babel/babel-loader/compare/v8.2.5...v8.3.0
v8.2.5
What's Changed
- fix: respect
inputSourceMap
loader option by@alan-agius4
in babel/babel-loader#896New Contributors
@alan-agius4
made their first contribution in babel/babel-loader#896Full Changelog: https://github.com/babel/babel-loader/compare/v8.2.4...v8.2.5
v8.2.4
What's Changed
- doc(README.md): fix a broken markdown link by
@loveDstyle
in babel/babel-loader#919- Bump loader-utils to 2.x by
@stianjensen
in babel/babel-loader#931- Use md5 hashing for OpenSSL 3 by
@pathmapper
in babel/babel-loader#924Thanks
@loveDstyle
,@stianjensen
and@pathmapper
for your first PRs!8.2.3
This release fixes compatibility with Node.js 17
- Use md5 hash for caching on node v17 (babel/babel-loader#918)
Thanks
@Reptarsrage
!8.2.1
- Move
@ava/babel
todevDependencies
#881 (@jvasseur
)8.2.0
- Replace
mkdirp
withmake-dir
47958ca3857e489e450b27c6f3266375015cba82 (@JLHwung
)- Use async config loading when available d8cff97ff387ded0fc9b5cbc489228c96c5ab14a (
@the-spyke
)8.1.0
- docs(readme): fix typo #818 (
@frederickfogerty
)- docs(contributing): fix typo #821 (
@PatNeedham
)- Add schema validation #822 (
@ogonkov
)- Add supportsTopLevelAwait to caller #814 (
@nicolo-ribaudo
)- feat: expose webpack target via babel caller #826 (
@DylanPiercey
)- Bump deps for audit #834 (
@existentialism
)
Commits
9bf5652
8.3.080ab7d0
Update@babel/
dependencies493ac6c
Pass external dependencies from Babel to Webpack (#971)df28fe3
Fix broken main test (#950)0b338e4
update hash method so it doesn't fail on a fips enabled machine (#939)1f98d3c
8.2.5c622868
fix: respectinputSourceMap
loader option (#896)f7982c1
8.2.44bb9e21
Use md5 hashing for OpenSSL 3 (#924)247c94b
Bump loader-utils to 2.x (#931)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by nicolo-ribaudo, a new releaser for babel-loader since your current version.
Updates css-loader
from 3.2.0 to 6.7.3
Release notes
Sourced from css-loader's releases.
v6.7.3
6.7.3 (2022-12-14)
Bug Fixes
v6.7.2
6.7.2 (2022-11-13)
Bug Fixes
v6.7.1
6.7.1 (2022-03-08)
Bug Fixes
v6.7.0
6.7.0 (2022-03-04)
Features
v6.6.0
6.6.0 (2022-02-02)
Features
- added the
hashStrategy
option (ca4abce)v6.5.1
6.5.1 (2021-11-03)
Bug Fixes
v6.5.0
... (truncated)
Changelog
Sourced from css-loader's changelog.
6.7.3 (2022-12-14)
Bug Fixes
6.7.2 (2022-11-13)
Bug Fixes
6.7.1 (2022-03-08)
Bug Fixes
6.7.0 (2022-03-04)
Features
6.6.0 (2022-02-02)
Features
- added the
hashStrategy
option (ca4abce)6.5.1 (2021-11-03)
Bug Fixes
6.5.0 (2021-10-26)
Features
... (truncated)
Commits
ef749f2
chore(release): 6.7.336fb945
chore: fix cspell962924c
fix: removesourceURL
from emitted CSS (#1487)3f3f302
chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2 (#1486)04ca713
chore: update dependencies to the latest version (#1485)9449827
chore: update styfle/cancel-workflow-action (#1484)6c67af8
chore: add cSpell to check spelling issues (#1482)239b9ac
chore(deps): bump loader-utils from 2.0.3 to 2.0.4 (#1481)394d200
chore(release): 6.7.22f4c273
fix: css modules generation with inline syntax (#1480)- Additional commits viewable in compare view
Updates file-loader
from 4.2.0 to 6.2.0
Release notes
Sourced from file-loader's releases.
v6.2.0
6.2.0 (2020-10-27)
Features
Bug Fixes
v6.1.1
6.1.1 (2020-10-09)
Chore
- update
schema-utils
v6.1.0
6.1.0 (2020-08-31)
Features
v6.0.0
6.0.0 (2020-03-17)
⚠ BREAKING CHANGES
v5.1.0
5.1.0 (2020-02-19)
Features
v5.0.2
5.0.2 (2019-11-25)
Chore
... (truncated)
Changelog
Sourced from file-loader's changelog.
6.2.0 (2020-10-27)
Features
Bug Fixes
6.1.1 (2020-10-09)
Chore
- update
schema-utils
6.1.0 (2020-08-31)
Features
6.0.0 (2020-03-17)
⚠ BREAKING CHANGES
5.1.0 (2020-02-19)
Features
5.0.2 (2019-11-25)
Chore
- add the
funding
field inpackage.json
5.0.1 (2019-11-25)
... (truncated)
Commits
c423008
chore(release): 6.2.0654e0d6
feat: added thesourceFilename
property to asset info with original filenam...381d8bd
fix: immutable flag when thename
option have hash in query string (#392)14ed4c9
ci: updated webpack versions (#389)6fadfbe
chore(release): 6.1.160508cf
chore(deps): update25e2668
chore(release): 6.1.06e22f6e
test: fix40fcde8
feat: pass immutable flag to asset info (#383)718aef5
chore(deps): update (#375)- Additional commits viewable in compare view
Updates html-webpack-plugin
from 3.2.0 to 5.5.0
Changelog
Sourced from html-webpack-plugin's changelog.
5.5.0 (2021-10-25)
Features
5.4.0 (2021-10-15)
Features
- update terser (9c7fba0
5.3.2 (2021-06-22)
Bug Fixes
- update lodash and pretty error (9c7fba0
5.3.1 (2021-03-09)
Bug Fixes
- remove loader-utils from plugin core (82d0ee8)
5.3.0 (2021-03-07)
Features
- allow to modify the interpolation options in webpack config (d654f5b)
- drop loader-utils dependency (41d7a50)
5.2.0 (2021-02-19)
Features
- improve ssr (73d2a66)
5.1.0 (2021-02-12)
Features
5.0.0 (2021-02-03)
... (truncated)
Commits
873d75b
chore(release): 5.5.0ddeb774
chore: update examples1e42625
feat: Support type=module via scriptLoading option7d3645b
Bump pretty-error to 4.0.0 to fix transitive vuln for ansi-regex CVE-2021-380779be779
[chore] changes actions to run on pull_requestsb7e5859
[chore] fixes CI to avoid race conditions48131d3
chore(release): 5.4.016a841a
[chore] rebuild examples3bb7c17
Update index.jse38ac97
Update index.js- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by jantimon, a new releaser for html-webpack-plugin since your current version.
Updates mini-css-extract-plugin
from 0.8.0 to 2.7.2
Release notes
Sourced from mini-css-extract-plugin's releases.
v2.7.2
2.7.2 (2022-12-06)
Bug Fixes
v2.7.1
2.7.1 (2022-11-29)
Bug Fixes
v2.7.0
2.7.0 (2022-11-16)
Features
v2.6.1
2.6.1 (2022-06-15)
Bug Fixes
v2.6.0
2.6.0 (2022-03-03)
Features
v2.5.3
2.5.3 (2022-01-25)
Bug Fixes
v2.5.2
2.5.2 (2022-01-17)
... (truncated)
Changelog
Sourced from mini-css-extract-plugin's changelog.
2.7.2 (2022-12-06)
Bug Fixes
2.7.1 (2022-11-29)
Bug Fixes
2.7.0 (2022-11-16)
Features
2.6.1 (2022-06-15)
Bug Fixes
2.6.0 (2022-03-03)
Features
2.5.3 (2022-01-25)
Bug Fixes
2.5.2 (2022-01-17)
Bug Fixes
- types (dfb9afd)
2.5.1 (2022-01-17)
... (truncated)
Commits
b616093
chore(release): 2.7.24d98d4b
fix: don't crash in web workers (#1004)5ef989b
chore(deps): bump minimist from 1.2.5 to 1.2.6 (#928)cd7d933
chore(deps): bump loader-utils from 2.0.3 to 2.0.4 (#993)9178a0c
chore: update dependencies to the latest version (#1003)7053ce2
chore(release): 2.7.182ed663
refactor: fix compatibility with old browsers (#1000)7585663
chore(deps): update (#999)6ea0922
fix: preserve order of link tags on HMR (#982)2633446
chore: update styfle/cancel-workflow-action (#996)- Additional commits viewable in compare view
Updates postcss-loader
from 3.0.0 to 7.0.2
Release notes
Sourced from postcss-loader's releases.
v7.0.2
7.0.2 (2022-11-29)
Bug Fixes
v7.0.1
7.0.1 (2022-07-11)
Bug Fixes
v7.0.0
7.0.0 (2022-05-18)
⚠ BREAKING CHANGES
- minimum supported
Node.js
version is14.15.0
v6.2.1
6.2.1 (2021-11-26)
Bug Fixes
v6.2.0
6.2.0 (2021-10-13)
Features
v6.1.1
6.1.1 (2021-07-01)
Bug Fixes
- do not swallow exception from postcss (2eec42b)
v6.1.0
6.1.0 (2021-06-10)
... (truncated)
Changelog
Sourced from postcss-loader's changelog.
7.0.2 (2022-11-29)
Bug Fixes
7.0.1 (2022-07-11)
Bug Fixes
7.0.0 (2022-05-18)
⚠ BREAKING CHANGES
- minimum supported
Node.js
version is14.15.0
6.2.1 (2021-11-26)
Bug Fixes
6.2.0 (2021-10-13)
Features
6.1.1 (2021-07-01)
Bug Fixes
- do not swallow exception from postcss (2eec42b)
6.1.0 (2021-06-10)
Features
- allow
String
value for the "implementation" option (0d342b1)6.0.0 (2021-06-10)
... (truncated)
Commits
2129116
chore(release): 7.0.2955085f
fix: support ESM version ofpostcss.config.js
andpostcss.config.mjs
(#614)b0f4749
chore: update styfle/cancel-workflow-action (#612)ab3ff44
chore: add cSpell to check spelling issues (#610)3177135
chore: update dependencies to the latest version (#609)08b19c7
docs: update cla link (#608)49a0943
ci: add node v19 (#607)d274f90
ci: add dependency review action (#606)64af37b
chore: update dependencies to the latest version (#605)548e8aa
chore: update commitlint action (#604)- Additional commits viewable in Description%20has%20been%20truncated%0A" rel="nofollow" target="_blank" >