Skip to content

Commit 91acc21

Browse files
Version Packages (#567)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 8ece962 commit 91acc21

File tree

11 files changed

+34
-54
lines changed

11 files changed

+34
-54
lines changed

.changeset/blue-seals-fail.md

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

.changeset/brave-cougars-melt.md

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

.changeset/dull-wolves-arrive.md

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

.changeset/fast-masks-attack.md

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

.changeset/good-squids-join.md

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

.changeset/olive-needles-lay.md

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

.changeset/shaggy-wombats-happen.md

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

packages/eslint-plugin-next-on-pages/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# eslint-plugin-next-on-pages
22

3+
## 1.8.1
4+
35
## 1.8.0
46

57
## 1.7.4

packages/eslint-plugin-next-on-pages/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-next-on-pages",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"main": "dist/index.js",
55
"scripts": {
66
"prebuild": "rimraf dist",

packages/next-on-pages/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# @cloudflare/next-on-pages
22

3+
## 1.8.1
4+
5+
### Patch Changes
6+
7+
- 61d0a2f: print warning in case developers are using a different package manager to run @cloudflare/next-on-pages
8+
- 1e73555: Fix route intercepts causing 404s for the non-intercepted route.
9+
- 1e73555: Fix route intercept modals not getting all the parameters for a route.
10+
- b7f9225: improve unhelpful error message (so that instead of `[object Object]` it prints the actual error message)
11+
- bc216b4: Improved support for newer version of Next.js with the suspense cache through trying to handle soft/implicit tags properly
12+
- 8ece962: fix external middleware rewrites
13+
14+
Currently Middleware rewrites (`NextResponse.rewrite()`) assume that the rewrite destination
15+
is on the same host as the application, meaning that the following operations would work as intended:
16+
17+
```ts
18+
NextResponse.rewrite(new URL('/rewrite-dest', request.url));
19+
```
20+
21+
while something like this would not:
22+
23+
```ts
24+
return NextResponse.rewrite(
25+
new URL('https://my-customer-rewrite-site.come/rewrite-dest', request.url),
26+
);
27+
```
28+
29+
Remove such assumption and allow such external rewrites to take place (as they do on Vercel)
30+
31+
- bc216b4: Fix old version of Next.js not updating a cache entry properly due to not receving the correct shape they expected.
32+
333
## 1.8.0
434

535
### Minor Changes

packages/next-on-pages/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/next-on-pages",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"bin": "./bin/index.js",
55
"exports": {
66
"./__experimental__next-dev": "./dist/next-dev/index.cjs"

0 commit comments

Comments
 (0)