Skip to content

Commit

Permalink
Version Packages (#591)
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 30, 2023
1 parent 2b5c8f2 commit d74f154
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 43 deletions.
5 changes: 0 additions & 5 deletions .changeset/moody-chefs-dress.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/shaggy-cats-smell.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/tender-suns-agree.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/thirty-turtles-speak.md

This file was deleted.

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

## 1.8.3

### Patch Changes

- ed9a4ac: remove the no-longer-necessary `no-app-not-found-runtime` rule in a backward compatible manner
- 72426c2: update `no-unsupported-configs` with new configs options

in the `no-unsupported-configs` rule handle the following new options:

- logging
- optimizePackageImports
- ppr (Partial Prerendering)
- serverActions

## 1.8.2

## 1.8.1
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.2",
"version": "1.8.3",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
Expand Down
22 changes: 22 additions & 0 deletions packages/next-on-pages/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @cloudflare/next-on-pages

## 1.8.3

### Patch Changes

- a4efc7b: ignore invalid `_error` functions in the App router

In the App router, error boundaries are implemented as client components (see: https://nextjs.org/docs/app/api-reference/file-conventions/error),
meaning that they should not produce server side logic.

The Vercel build process can however generate `_error.func` lambdas (as they are useful in the
Vercel network I'd assume), through experimentation we've seen that those do not seem to be
necessary when building the application with next-on-pages so they should be safe to ignore.

The changes here make such invalid `_error.func` lambdas (if present) ignored (as they would otherwise
cause the next-on-pages build process to fail)

- 352bf4b: Make route matching check handle better trailing slashes

Currently having `trailingSlash` set to `true` in the `next.config.js` file
results in some routes not being correctly handled, this fix addresses such
issue

## 1.8.2

### Patch 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.2",
"version": "1.8.3",
"bin": "./bin/index.js",
"exports": {
"./__experimental__next-dev": "./dist/next-dev/index.cjs"
Expand Down

0 comments on commit d74f154

Please sign in to comment.