Skip to content

Commit a934b9b

Browse files
chore(release): new release (#20808)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ecb436b commit a934b9b

5 files changed

Lines changed: 11 additions & 16 deletions

File tree

.changeset/fix-anonymous-default-export-es5-regression.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fix-css-important-rename.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fix-css-module-hash-collision.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# webpack
22

3+
## 5.106.1
4+
5+
### Patch Changes
6+
7+
- Fix two ES5-environment regressions in the anonymous default export `.name` fix-up: the generated code referenced an undeclared `__WEBPACK_DEFAULT_EXPORT__` binding causing `ReferenceError`, and used `Reflect.defineProperty` which is not available in pre-ES2015 runtimes. The fix-up now references the real assignment target and uses `Object.defineProperty` / `Object.getOwnPropertyDescriptor`. (by [@xiaoxiaojx](https://github.com/xiaoxiaojx) in [#20796](https://github.com/webpack/webpack/pull/20796))
8+
9+
- Prevent `!important` from being renamed as a local identifier in CSS modules. (by [@xiaoxiaojx](https://github.com/xiaoxiaojx) in [#20798](https://github.com/webpack/webpack/pull/20798))
10+
11+
- Use compiler context instead of module context for CSS modules local ident hashing to avoid hash collisions when files with the same name exist in different directories. (by [@xiaoxiaojx](https://github.com/xiaoxiaojx) in [#20799](https://github.com/webpack/webpack/pull/20799))
12+
313
## 5.106.0
414

515
### Minor Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webpack",
3-
"version": "5.106.0",
3+
"version": "5.106.1",
44
"description": "Packs ECMAScript/CommonJs/AMD modules for the browser. Allows you to split your codebase into multiple bundles, which can be loaded on demand. Supports loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.",
55
"homepage": "https://github.com/webpack/webpack",
66
"bugs": "https://github.com/webpack/webpack/issues",

0 commit comments

Comments
 (0)