Skip to content

Commit

Permalink
Version Packages (#338)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jun 29, 2023
1 parent 3a95489 commit 8346e05
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 44 deletions.
5 changes: 0 additions & 5 deletions .changeset/five-doors-cross.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/large-pillows-try.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pretty-icons-impress.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pretty-moons-tickle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rude-hotels-raise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spicy-pears-boil.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/tall-pumas-give.md

This file was deleted.

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

## 1.2.0

### Patch Changes

- daa32fd: update no-unsupported-config rules (to match the latest supported configs table)
- c21c995: add fallback detection check in no-unsupported-configs rule

add an additional check in the no-unsupported-configs rule so that if the rule
were to fail detecting the config's name as a last resort we fall back checking
the variable declaration present just after the "/\*_ @type {import('next').NextConfig} _/"
comment

## 1.1.1

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

## 1.2.0

### Minor Changes

- 2f9cf97: Support for using a custom output directory for the generated worker and static assets, through a `--outdir` flag.

### Patch Changes

- f879ffd: Prevent middleware redirects applying search params.

When a middleware function results in a redirect, the location header specified in the response is the full destination, including any search params, as written by the developer. Previously, we always applied search params to redirects found during the routing process, no matter what. This meant that we accidentally were applying search params to middleware redirects, which would alter the intended final destination. This change prevents that from happening.

- 3a95489: Fix middleware returning `new NextResponse` resulting in 404 for routes that don't exist in the build output.
- 2dceb75: Fix middleware being invoked multiple times in a phase during routing when there is more than one config entry.

## 1.1.1

### 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.1.1",
"version": "1.2.0",
"bin": "./bin/index.js",
"scripts": {
"prettier": "prettier --ignore-unknown src templates tests",
Expand Down

0 comments on commit 8346e05

Please sign in to comment.