Skip to content

Commit e44a80d

Browse files
Version Packages (canary) (#79994)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or [setup this action to publish automatically](https://github.com/changesets/action#with-publishing). If you're not ready to do a release yet, that's fine, whenever you add more changesets to release/dry-run, this PR will be updated. ⚠️⚠️⚠️⚠️⚠️⚠️ `release/dry-run` is currently in **pre mode** so this branch has prereleases rather than normal releases. If you want to exit prereleases, run `changeset pre exit` on `release/dry-run`. ⚠️⚠️⚠️⚠️⚠️⚠️ # Releases ## next@15.4.0-canary.58 ### Patch Changes - [#79302](#79302) [`aa7d4de`](aa7d4de) Thanks [@unstubbable](https://github.com/unstubbable)! - Enable `ppr` when `dynamicIO` is enabled - [#79565](#79565) [`e0d4df2`](e0d4df2) Thanks [@wyattjoh](https://github.com/wyattjoh)! - Resolved bug where hitting the parameterized path directly would cause a fallback shell generation instead of just rendering the route with the parameterized placeholders. - [#79248](#79248) [`21e4411`](21e4411) Thanks [@ijjk](https://github.com/ijjk)! - Fix dangling promise in unstable_cache - [#79213](#79213) [`0c0262e`](0c0262e) Thanks [@unstubbable](https://github.com/unstubbable)! - Always pass implicit/soft tags into the `CacheHandler.get` method - [#79144](#79144) [`d16d9f4`](d16d9f4) Thanks [@devjiwonchoi](https://github.com/devjiwonchoi)! - [TypeScript Plugin] Match method signature (`someFunc(): void`) type for client boundary warnings. - [#79204](#79204) [`8eaf44b`](8eaf44b) Thanks [@devjiwonchoi](https://github.com/devjiwonchoi)! - Fixed rewrite params of the interception routes not being parsed correctly in certain deployed environments - [#79299](#79299) [`e2837fb`](e2837fb) Thanks [@unstubbable](https://github.com/unstubbable)! - Use `onPostpone` to determine if segment prefetch is partial - [#79193](#79193) [`3ecf087`](3ecf087) Thanks [@devjiwonchoi](https://github.com/devjiwonchoi)! - [TypeScript Plugin] Moved the diagnostics' positions to the prop's type instead of the value for client-boundary warnings. - [#79658](#79658) [`c513008`](c513008) Thanks [@eps1lon](https://github.com/eps1lon)! - [dev-overlay] Show error overlay on any thrown value We used to only show the error overlay on thrown values with a stack property. On other thrown values we kept the overlay collapsed. - [#79448](#79448) [`8751df4`](8751df4) Thanks [@unstubbable](https://github.com/unstubbable)! - [Segment Cache] Fix: Ensure server references can be prerendered - [#79109](#79109) [`854992f`](854992f) Thanks [@eps1lon](https://github.com/eps1lon)! - Sourcemap errors during prerender if `experimental.enablePrerenderSourceMaps` is enabled - [#79657](#79657) [`1f25118`](1f25118) Thanks [@unstubbable](https://github.com/unstubbable)! - Fix name tracking for closures in server actions transform - [#78882](#78882) [`5136f8e`](5136f8e) Thanks [@unstubbable](https://github.com/unstubbable)! - [dynamicIO] Avoid timeout errors with dynamic params in `"use cache"` ## @next/swc@15.4.0-canary.58 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 91fa72f commit e44a80d

File tree

6 files changed

+227
-33
lines changed

6 files changed

+227
-33
lines changed

.changeset/pre.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"mode": "pre",
3+
"tag": "canary",
4+
"initialVersions": {
5+
"create-next-app": "15.4.0-canary.57",
6+
"eslint-config-next": "15.4.0-canary.57",
7+
"@next/eslint-plugin-next": "15.4.0-canary.57",
8+
"@next/font": "15.4.0-canary.57",
9+
"next": "15.4.0-canary.57",
10+
"@next/bundle-analyzer": "15.4.0-canary.57",
11+
"@next/codemod": "15.4.0-canary.57",
12+
"@next/env": "15.4.0-canary.57",
13+
"@next/mdx": "15.4.0-canary.57",
14+
"@next/plugin-storybook": "15.4.0-canary.57",
15+
"@next/polyfill-module": "15.4.0-canary.57",
16+
"@next/polyfill-nomodule": "15.4.0-canary.57",
17+
"next-rspack": "15.4.0-canary.57",
18+
"@next/swc": "15.4.0-canary.57",
19+
"@next/react-refresh-utils": "15.4.0-canary.57",
20+
"@next/third-parties": "15.4.0-canary.57"
21+
},
22+
"changesets": [
23+
"dry-roses-nail",
24+
"giant-bushes-sink",
25+
"loose-cows-pump",
26+
"lovely-bulldogs-dress",
27+
"seven-seas-run",
28+
"shaggy-owls-visit",
29+
"shaggy-pears-tell",
30+
"shy-impalas-add",
31+
"smooth-bears-run",
32+
"spotty-hotels-train",
33+
"swift-socks-find",
34+
"tough-peaches-burn",
35+
"tricky-planes-worry"
36+
]
37+
}

packages/next-swc/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# @next/swc
2+
3+
## 15.4.0-canary.58

packages/next-swc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@next/swc",
3-
"version": "15.4.0-canary.57",
3+
"version": "15.4.0-canary.58",
44
"private": true,
55
"files": [
66
"native/"

packages/next/CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# next
2+
3+
## 15.4.0-canary.58
4+
5+
### Patch Changes
6+
7+
- [#79302](https://github.com/vercel/next.js/pull/79302) [`aa7d4de`](https://github.com/vercel/next.js/commit/aa7d4de472519f1b1a7a191177edfd08ab61b521) Thanks [@unstubbable](https://github.com/unstubbable)! - Enable `ppr` when `dynamicIO` is enabled
8+
9+
- [#79565](https://github.com/vercel/next.js/pull/79565) [`e0d4df2`](https://github.com/vercel/next.js/commit/e0d4df2180111bcb1511fc08d40d4c1b237326dd) Thanks [@wyattjoh](https://github.com/wyattjoh)! - Resolved bug where hitting the parameterized path directly would cause a fallback shell generation instead of just rendering the route with the parameterized placeholders.
10+
11+
- [#79248](https://github.com/vercel/next.js/pull/79248) [`21e4411`](https://github.com/vercel/next.js/commit/21e4411648cd82f91f31d08114678c37efc27fec) Thanks [@ijjk](https://github.com/ijjk)! - Fix dangling promise in unstable_cache
12+
13+
- [#79213](https://github.com/vercel/next.js/pull/79213) [`0c0262e`](https://github.com/vercel/next.js/commit/0c0262e604d92ffd9b92c83e8277dcb0222240ed) Thanks [@unstubbable](https://github.com/unstubbable)! - Always pass implicit/soft tags into the `CacheHandler.get` method
14+
15+
- [#79144](https://github.com/vercel/next.js/pull/79144) [`d16d9f4`](https://github.com/vercel/next.js/commit/d16d9f46b647469fdc49e8408b0fd3b645ccce98) Thanks [@devjiwonchoi](https://github.com/devjiwonchoi)! - [TypeScript Plugin] Match method signature (`someFunc(): void`) type for client boundary warnings.
16+
17+
- [#79204](https://github.com/vercel/next.js/pull/79204) [`8eaf44b`](https://github.com/vercel/next.js/commit/8eaf44b0364b7bca794918da990f8c73420cff7f) Thanks [@devjiwonchoi](https://github.com/devjiwonchoi)! - Fixed rewrite params of the interception routes not being parsed correctly in certain deployed environments
18+
19+
- [#79299](https://github.com/vercel/next.js/pull/79299) [`e2837fb`](https://github.com/vercel/next.js/commit/e2837fb3b485bde391f1dfb1d6fdb87f4bd71d1e) Thanks [@unstubbable](https://github.com/unstubbable)! - Use `onPostpone` to determine if segment prefetch is partial
20+
21+
- [#79193](https://github.com/vercel/next.js/pull/79193) [`3ecf087`](https://github.com/vercel/next.js/commit/3ecf087f10fdfba4426daa02b459387bc9c3c54f) Thanks [@devjiwonchoi](https://github.com/devjiwonchoi)! - [TypeScript Plugin] Moved the diagnostics' positions to the prop's type instead of the value for client-boundary warnings.
22+
23+
- [#79658](https://github.com/vercel/next.js/pull/79658) [`c513008`](https://github.com/vercel/next.js/commit/c51300807ea7e0590104343b8616572503f0b78d) Thanks [@eps1lon](https://github.com/eps1lon)! - [dev-overlay] Show error overlay on any thrown value
24+
25+
We used to only show the error overlay on thrown values with a stack property.
26+
On other thrown values we kept the overlay collapsed.
27+
28+
- [#79448](https://github.com/vercel/next.js/pull/79448) [`8751df4`](https://github.com/vercel/next.js/commit/8751df4ee3d78a5ba53ae2ab7103da02d2637a06) Thanks [@unstubbable](https://github.com/unstubbable)! - [Segment Cache] Fix: Ensure server references can be prerendered
29+
30+
- [#79109](https://github.com/vercel/next.js/pull/79109) [`854992f`](https://github.com/vercel/next.js/commit/854992f4d7ca576390c231c1ab97643b37dc44f6) Thanks [@eps1lon](https://github.com/eps1lon)! - Sourcemap errors during prerender if `experimental.enablePrerenderSourceMaps` is enabled
31+
32+
- [#79657](https://github.com/vercel/next.js/pull/79657) [`1f25118`](https://github.com/vercel/next.js/commit/1f2511839052b0a66d70ff1e328af6ac816db1ff) Thanks [@unstubbable](https://github.com/unstubbable)! - Fix name tracking for closures in server actions transform
33+
34+
- [#78882](https://github.com/vercel/next.js/pull/78882) [`5136f8e`](https://github.com/vercel/next.js/commit/5136f8ecfd06f638325a2f45656744cbebd3fe97) Thanks [@unstubbable](https://github.com/unstubbable)! - [dynamicIO] Avoid timeout errors with dynamic params in `"use cache"`

packages/next/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "next",
3-
"version": "15.4.0-canary.57",
3+
"version": "15.4.0-canary.58",
44
"description": "The React Framework",
55
"main": "./dist/server/next.js",
66
"license": "MIT",
@@ -166,7 +166,7 @@
166166
"@next/polyfill-module": "15.4.0-canary.57",
167167
"@next/polyfill-nomodule": "15.4.0-canary.57",
168168
"@next/react-refresh-utils": "15.4.0-canary.57",
169-
"@next/swc": "15.4.0-canary.57",
169+
"@next/swc": "15.4.0-canary.58",
170170
"@opentelemetry/api": "1.6.0",
171171
"@playwright/test": "1.41.2",
172172
"@rspack/core": "1.3.12",

pnpm-lock.yaml

Lines changed: 150 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)