Skip to content

Commit

Permalink
Version Packages (#567)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Dec 4, 2023
1 parent 8ece962 commit 91acc21
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 54 deletions.
5 changes: 0 additions & 5 deletions .changeset/blue-seals-fail.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/brave-cougars-melt.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dull-wolves-arrive.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fast-masks-attack.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/good-squids-join.md

This file was deleted.

22 changes: 0 additions & 22 deletions .changeset/olive-needles-lay.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shaggy-wombats-happen.md

This file was deleted.

2 changes: 2 additions & 0 deletions packages/eslint-plugin-next-on-pages/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# eslint-plugin-next-on-pages

## 1.8.1

## 1.8.0

## 1.7.4
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-next-on-pages/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-next-on-pages",
"version": "1.8.0",
"version": "1.8.1",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
Expand Down
30 changes: 30 additions & 0 deletions packages/next-on-pages/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# @cloudflare/next-on-pages

## 1.8.1

### Patch Changes

- 61d0a2f: print warning in case developers are using a different package manager to run @cloudflare/next-on-pages
- 1e73555: Fix route intercepts causing 404s for the non-intercepted route.
- 1e73555: Fix route intercept modals not getting all the parameters for a route.
- b7f9225: improve unhelpful error message (so that instead of `[object Object]` it prints the actual error message)
- bc216b4: Improved support for newer version of Next.js with the suspense cache through trying to handle soft/implicit tags properly
- 8ece962: fix external middleware rewrites

Currently Middleware rewrites (`NextResponse.rewrite()`) assume that the rewrite destination
is on the same host as the application, meaning that the following operations would work as intended:

```ts
NextResponse.rewrite(new URL('/rewrite-dest', request.url));
```

while something like this would not:

```ts
return NextResponse.rewrite(
new URL('https://my-customer-rewrite-site.come/rewrite-dest', request.url),
);
```

Remove such assumption and allow such external rewrites to take place (as they do on Vercel)

- bc216b4: Fix old version of Next.js not updating a cache entry properly due to not receving the correct shape they expected.

## 1.8.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/next-on-pages/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudflare/next-on-pages",
"version": "1.8.0",
"version": "1.8.1",
"bin": "./bin/index.js",
"exports": {
"./__experimental__next-dev": "./dist/next-dev/index.cjs"
Expand Down

0 comments on commit 91acc21

Please sign in to comment.