Skip to content

Commit 502b4cd

Browse files
Version Packages (#837)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 4bd4c19 commit 502b4cd

File tree

7 files changed

+33
-35
lines changed

7 files changed

+33
-35
lines changed

.changeset/curly-weeks-sin.md

-5
This file was deleted.

.changeset/silly-coins-protect.md

-23
This file was deleted.

.changeset/warm-rivers-reply.md

-5
This file was deleted.

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

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# eslint-plugin-next-on-pages
22

3+
## 1.13.0
4+
35
## 1.12.1
46

57
## 1.12.0

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

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

packages/next-on-pages/CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# @cloudflare/next-on-pages
22

3+
## 1.13.0
4+
5+
### Minor Changes
6+
7+
- 4bd4c19: Use `request.cf.regionCode` for `x-vercel-ip-country-region` for keeping behavior consistent with documentation
8+
- 78accfd: Add support for custom worker entrypoints.
9+
10+
Example:
11+
12+
```ts
13+
import nextOnPagesHandler from '@cloudflare/next-on-pages/fetch-handler';
14+
15+
export default {
16+
async fetch(request, env, ctx) {
17+
// do something before running the next-on-pages handler
18+
19+
const response = await nextOnPagesHandler.fetch(request, env, ctx);
20+
21+
// do something after running the next-on-pages handler
22+
23+
return response;
24+
},
25+
} as ExportedHandler<{ ASSETS: Fetcher }>;
26+
```
27+
28+
### Patch Changes
29+
30+
- 2527917: Account for the Vercel CLI no longer generating prerender configs for dynamic ISR functions.
31+
332
## 1.12.1
433

534
### Patch Changes

packages/next-on-pages/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/next-on-pages",
3-
"version": "1.12.1",
3+
"version": "1.13.0",
44
"bin": "./bin/index.js",
55
"exports": {
66
".": {

0 commit comments

Comments
 (0)