Skip to content

Commit 3d84ab0

Browse files
Version Packages (#964)
* Version Packages --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Dario Piotrowicz <dario@cloudflare.com>
1 parent 3d651bc commit 3d84ab0

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

.changeset/tidy-geese-film.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.12
4+
35
## 1.13.11
46

57
## 1.13.10

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.13.11",
3+
"version": "1.13.12",
44
"main": "dist/index.js",
55
"scripts": {
66
"prebuild": "rimraf dist",

packages/next-on-pages/CHANGELOG.md

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

3+
## 1.13.12
4+
5+
### Patch Changes
6+
7+
- 3d651bc: fix internal usage of `global` instead of `globalThis` (which causes some reference errors)
8+
39
## 1.13.11
410

511
### 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.13.11",
3+
"version": "1.13.12",
44
"bin": "./bin/index.js",
55
"exports": {
66
".": {

packages/next-on-pages/templates/_worker.js/index.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ const patchedDefineProperty = (
4747
globalThis.Object.defineProperty =
4848
patchedDefineProperty as typeof globalThis.Object.defineProperty;
4949

50-
globalThis.AbortController = class PatchedAbortController extends AbortController {
50+
globalThis.AbortController = class PatchedAbortController extends (
51+
AbortController
52+
) {
5153
constructor() {
5254
try {
5355
super();

0 commit comments

Comments
 (0)