Skip to content

Commit

Permalink
Version Packages (#693)
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 Mar 22, 2024
1 parent 53cb762 commit 64988ca
Show file tree
Hide file tree
Showing 13 changed files with 34 additions and 59 deletions.
5 changes: 0 additions & 5 deletions .changeset/funny-berries-beg.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/fuzzy-turkeys-try.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/healthy-ads-knock.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/khaki-pumas-whisper.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lazy-avocados-swim.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/proud-coats-raise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shaggy-colts-rhyme.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/six-hotels-rule.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/sour-jeans-kneel.md

This file was deleted.

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

## 1.11.0

### Minor Changes

- 702f601: add new `no-app-nodejs-dynamic-ssg` rule

add the new `no-app-nodejs-dynamic-ssg` rule that makes sure that
developers using `generateStaticParams` also export either the `runtime`
variable set to `edge` or the `dynamicParams` one set to `false`

- 82aa1a4: add new `no-pages-nodejs-dynamic-ssg` rule

add the new `no-pages-nodejs-dynamic-ssg` rule that makes sure that
developers using `getStaticPaths` set the `fallback` property to `false`
or opt in into the `edge` runtime

## 1.10.0

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

## 1.11.0

### Patch Changes

- 555b4a7: fix `trailingSlash` set to `true` alongside `i18n` enabled causing incorrect `404`s
- 8da9da2: Make sure protocol relative URLs are not treated as actual relative URLs
- 60eb0ae: fix issue in which redirect responses become rewrites when a middleware is involved
- c3fb67b: make sure that the original request headers are not passed along when fetching external images
- 9900517: fix `process.env` not giving access to bindings during local development (in `next-dev`)
- 869cee0: Throw a user friendly error message when `getRequestContext` is called during prerendering
- 53cb762: fix applications using Next.js v.14.2.0-canary.18 and up

In v.14.2.0-canary.18 a simple upstream change in Next.js changes the code that
next-on-pages receives, nullifying a find-and-replace regex that next-on-pages
is currently relying on, update such regex so that it can handle the new code

## 1.10.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.10.0",
"version": "1.11.0",
"bin": "./bin/index.js",
"exports": {
".": "./dist/api/index.js",
Expand Down

0 comments on commit 64988ca

Please sign in to comment.