You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* update changelog for 2.10.1
* Revert "update changelog for 2.10.1"
This reverts commit 53d76f5.
* fix changelog for v2.10.1
* update versions in package.json
* Revert "update versions in package.json"
This reverts commit 28a0c23.
* update packages with yarn lerna command
* update @parcel/babel-register in package.json manually
* yarn adjust-versions
* update changelog according to comments
* update changelog for latest commits to include in patch
* change parcel package dependency
range to * in root
* Revert "change parcel package dependency"
This reverts commit 00979c8.
* update changelog for latest changes to v2
---------
Co-authored-by: achan3 <[email protected]>
Copy file name to clipboardexpand all lines: CHANGELOG.md
+60-1
Original file line number
Diff line number
Diff line change
@@ -5,40 +5,76 @@ All notable changes to Parcel will be documented in this file.
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6
6
and Parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7
7
8
+
## [2.10.1] – 2023-10-23
9
+
10
+
### Fixed
11
+
12
+
- Core
13
+
14
+
- Use modern node versions in CI [Details](https://github.com/parcel-bundler/parcel/pull/9323)
15
+
- Support multiple workspaces/clients in Parcel for VSCode [Details](https://github.com/parcel-bundler/parcel/pull/9278)
16
+
17
+
- Bundler
18
+
19
+
- Make sure to set unique key [Details](https://github.com/parcel-bundler/parcel/pull/9326)
20
+
- Fix bundler tests assertions on Windows [Details](https://github.com/parcel-bundler/parcel/pull/9333)
21
+
22
+
- JavaScript
23
+
24
+
- Add logic to disable scope hoisting if the `this` key word is pointing to an export module [Details](https://github.com/parcel-bundler/parcel/pull/9291)
25
+
- Detect TSC polyfills to avoid marking them as CJS [Details](https://github.com/parcel-bundler/parcel/pull/9318)
26
+
- Remove `this` exports tracking for files with module syntax [Details](https://github.com/parcel-bundler/parcel/pull/9330)
27
+
28
+
### Unstable
29
+
30
+
- Bundler
31
+
32
+
- Fix inline constants in shared bundles [Details](https://github.com/parcel-bundler/parcel/pull/9313)
33
+
- Ensure manualSharedBundles have unique names [Details](https://github.com/parcel-bundler/parcel/pull/9298)
- Add support for include and exclude globs for `--lazy` mode – [Details](https://github.com/parcel-bundler/parcel/pull/9166), [Details](https://github.com/parcel-bundler/parcel/pull/9260)
14
43
- Merge all native Rust modules into one package – [Details](https://github.com/parcel-bundler/parcel/pull/9146)
15
44
- Add async resolver and JS transformer functions using rayon – [Details](https://github.com/parcel-bundler/parcel/pull/9147)
16
45
- Support "register" tools in module loader (e.g. `@babel/register`, `esbuild-register`, `ts-node`) – [Details](https://github.com/parcel-bundler/parcel/pull/9285)
17
46
- Limit default number of JS workers to 4 to improve memory usage/performance – [Details](https://github.com/parcel-bundler/parcel/pull/9300)
- Support node: prefix for CJS dependencies – [Details](https://github.com/parcel-bundler/parcel/pull/9244), [Details](https://github.com/parcel-bundler/parcel/pull/9250)
@@ -98,6 +141,7 @@ and Parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
98
141
### Fixed
99
142
100
143
- Resolver
144
+
101
145
- Fix the development and production package conditions – [Details](https://github.com/parcel-bundler/parcel/pull/9108)
102
146
103
147
- JavaScript
@@ -108,19 +152,24 @@ and Parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
108
152
### Fixed
109
153
110
154
- Core
155
+
111
156
- Fix infinite loop when entries look like globs – [Details](https://github.com/parcel-bundler/parcel/pull/9020)
112
157
- Fix proxyrc require from path – [Details](https://github.com/parcel-bundler/parcel/pull/9069)
113
158
114
159
- JavaScript
160
+
115
161
- Treat re-exports of `*` from empty files with `sideEffects: false` as ESM – [Details](https://github.com/parcel-bundler/parcel/pull/9079)
116
162
117
163
- CSS
164
+
118
165
- Fix self references error in CSS module JS assets causing "Bundle group cannot have more than one entry bundle of the same type" – [Details](https://github.com/parcel-bundler/parcel/pull/9080)
119
166
120
167
- Dev server
168
+
121
169
- Serve folder's index when requesting folder without slash – [Details](https://github.com/parcel-bundler/parcel/pull/9066)
122
170
123
171
- Web extensions
172
+
124
173
- Allow source maps files in webextension – [Details](https://github.com/parcel-bundler/parcel/pull/8541)
125
174
126
175
- Image
@@ -139,6 +188,7 @@ and Parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
139
188
### Added
140
189
141
190
- Core
191
+
142
192
- Add support for ESM plugins and configs – [Details](https://github.com/parcel-bundler/parcel/pull/8913)
143
193
- Add support for local parcel plugins – [Details](https://github.com/parcel-bundler/parcel/pull/8925)
144
194
- Incremental Symbol Propagation for improved performance and improved export errors in development – [Details](https://github.com/parcel-bundler/parcel/pull/8723)
@@ -147,14 +197,17 @@ and Parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
147
197
- Add support for `loadConfig` function to resolver plugins – [Details](https://github.com/parcel-bundler/parcel/pull/8847)
148
198
149
199
- Resolver
200
+
150
201
- New resolver implementation in Rust supporting package.json "exports" and "imports", and tsconfig.json "baseUrl", "paths", and "moduleSuffixes" – [Details](https://github.com/parcel-bundler/parcel/pull/8807)
151
202
152
203
- JavaScript
204
+
153
205
- Switch to SWC minifier instead of Terser by default – [Details](https://github.com/parcel-bundler/parcel/pull/8860)
154
206
- Split large runtime manifest into separate bundles to reduce cache invalidations – [Details](https://github.com/parcel-bundler/parcel/pull/8837)
155
207
- Respect `addExternalDependency` in Babel plugins – [Details](https://github.com/parcel-bundler/parcel/pull/7820)
156
208
157
209
- Bundler
210
+
158
211
- Use BitSet for bundler intersections for improved performance – [Details](https://github.com/parcel-bundler/parcel/pull/8862)
159
212
160
213
- Web Extensions
@@ -163,6 +216,7 @@ and Parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
163
216
### Fixed
164
217
165
218
- Core
219
+
166
220
- Improve error message when bundles do not have unique file names – [Details](https://github.com/parcel-bundler/parcel/pull/8784)
167
221
- Bump napi-rs to latest – [Details](https://github.com/parcel-bundler/parcel/pull/8838), [Details](https://github.com/parcel-bundler/parcel/pull/8918)
0 commit comments