Skip to content

Commit 2e06487

Browse files
chore(release): new release
1 parent f8d274b commit 2e06487

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

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

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

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
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+
39
## 5.106.0
410

511
### 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)