Skip to content

Commit d43108c

Browse files
committed
changelog for v2.14.0
1 parent ee9c3e4 commit d43108c

File tree

5 files changed

+32
-6
lines changed

5 files changed

+32
-6
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ All notable changes to Parcel will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and Parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [2.14.0] - 2025-03-18
9+
10+
### Added
11+
12+
- Core
13+
- Add a CLI to create new Parcel apps – [Details](https://github.com/parcel-bundler/parcel/pull/10069)
14+
15+
- JavaScript
16+
- React Server Components – [Details](https://github.com/parcel-bundler/parcel/pull/10043), [Details](https://github.com/parcel-bundler/parcel/pull/10067), [Details](https://github.com/parcel-bundler/parcel/pull/10074), [Details](https://github.com/parcel-bundler/parcel/pull/10093), [Details](https://github.com/parcel-bundler/parcel/pull/10104)
17+
- Add RSC-based static site generator – [Details](https://github.com/parcel-bundler/parcel/pull/10057)
18+
- First-class MDX support – [Details](https://github.com/parcel-bundler/parcel/pull/10064)
19+
- Merge React Refresh runtime and transformer – [Details](https://github.com/parcel-bundler/parcel/pull/10056)
20+
- Modernize React error overlay – [Details](https://github.com/parcel-bundler/parcel/pull/10082)
21+
- Support bundling node native modules – [Details](https://github.com/parcel-bundler/parcel/pull/10066)
22+
- Use import maps for bundle manifest – [Details](https://github.com/parcel-bundler/parcel/pull/10073)
23+
24+
- Dev Server
25+
- Support running node bundles in dev server – [Details](https://github.com/parcel-bundler/parcel/pull/10055)
26+
- Apply HMR updates via node worker thread – [Details](https://github.com/parcel-bundler/parcel/pull/10071)
27+
28+
### Fixed
29+
30+
- Core
31+
- Fix dev dep request missing 'invalidateOnCreate' – [Details](https://github.com/parcel-bundler/parcel/commit/d6a4df3700bc2364eca18c25c42aa5f220c4b8db)
32+
- Add napi-wasm as optional peer dependency in @parcel/rust[Details](https://github.com/parcel-bundler/parcel/pull/10101)
33+
834
## [2.13.3] - 2024-12-16
935

1036
### Fixed

packages/utils/create-parcel/templates/react-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
"devDependencies": {
1515
"@types/react": "^19.0.0",
1616
"@types/react-dom": "^19.0.0",
17-
"parcel": "^2.13.3"
17+
"parcel": "^2.14.0"
1818
}
1919
}

packages/utils/create-parcel/templates/react-server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"build": "parcel build"
1818
},
1919
"dependencies": {
20-
"@parcel/rsc": "canary",
20+
"@parcel/rsc": "^2.14.0",
2121
"express": "^4.21.2",
2222
"react": "canary",
2323
"react-dom": "canary"
@@ -28,6 +28,6 @@
2828
"@types/node": "^22.10.5",
2929
"@types/react": "^19.0.0",
3030
"@types/react-dom": "^19.0.0",
31-
"parcel": "canary"
31+
"parcel": "^2.14.0"
3232
}
3333
}

packages/utils/create-parcel/templates/react-static/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
"build": "parcel build"
1414
},
1515
"dependencies": {
16-
"@parcel/rsc": "canary",
16+
"@parcel/rsc": "^2.14.0",
1717
"react": "canary",
1818
"react-dom": "canary"
1919
},
2020
"devDependencies": {
2121
"@types/react": "^19.0.0",
2222
"@types/react-dom": "^19.0.0",
23-
"parcel": "canary"
23+
"parcel": "^2.14.0"
2424
}
2525
}

packages/utils/create-parcel/templates/vanilla/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
},
1010
"dependencies": {},
1111
"devDependencies": {
12-
"parcel": "^2.13.3"
12+
"parcel": "^2.14.0"
1313
}
1414
}

0 commit comments

Comments
 (0)