Skip to content

Commit

Permalink
Version Packages (#837)
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 Jul 29, 2024
1 parent 4bd4c19 commit 502b4cd
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 35 deletions.
5 changes: 0 additions & 5 deletions .changeset/curly-weeks-sin.md

This file was deleted.

23 changes: 0 additions & 23 deletions .changeset/silly-coins-protect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/warm-rivers-reply.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.13.0

## 1.12.1

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

## 1.13.0

### Minor Changes

- 4bd4c19: Use `request.cf.regionCode` for `x-vercel-ip-country-region` for keeping behavior consistent with documentation
- 78accfd: Add support for custom worker entrypoints.

Example:

```ts
import nextOnPagesHandler from '@cloudflare/next-on-pages/fetch-handler';

export default {
async fetch(request, env, ctx) {
// do something before running the next-on-pages handler

const response = await nextOnPagesHandler.fetch(request, env, ctx);

// do something after running the next-on-pages handler

return response;
},
} as ExportedHandler<{ ASSETS: Fetcher }>;
```

### Patch Changes

- 2527917: Account for the Vercel CLI no longer generating prerender configs for dynamic ISR functions.

## 1.12.1

### 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.12.1",
"version": "1.13.0",
"bin": "./bin/index.js",
"exports": {
".": {
Expand Down

0 comments on commit 502b4cd

Please sign in to comment.