Skip to content

Commit 2e03ba1

Browse files
authored
Merge branch 'canary' into feedthejim/update-release-script
2 parents a77003c + ea034f6 commit 2e03ba1

File tree

3,013 files changed

+197003
-62207
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,013 files changed

+197003
-62207
lines changed

.eslintrc.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,13 @@
3838
},
3939
"overrides": [
4040
{
41-
"files": ["test/**/*.js", "test/**/*.ts", "**/*.test.ts"],
41+
"files": [
42+
"test/**/*.js",
43+
"test/**/*.ts",
44+
"test/**/*.tsx",
45+
"**/*.test.ts",
46+
"**/*.test.tsx"
47+
],
4248
"excludedFiles": ["test/tmp/**"],
4349
"extends": ["plugin:jest/recommended"],
4450
"rules": {
@@ -248,8 +254,9 @@
248254
"packages/next/src/next-devtools/dev-overlay/**/*.tsx",
249255
"packages/next/src/next-devtools/dev-overlay/**/*.ts"
250256
],
257+
"extends": ["plugin:react-hooks/recommended"],
251258
"rules": {
252-
"react-hooks/react-compiler": "error"
259+
"react-hooks/exhaustive-deps": "error"
253260
}
254261
}
255262
],

.github/actions/next-integration-stat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"strip-ansi": "^7.0.1"
2222
},
2323
"engines": {
24-
"node": ">=18.18.0"
24+
"node": ">=20.9.0"
2525
},
2626
"packageManager": "[email protected]"
2727
}

.github/actions/next-stats-action/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt install unzip wget curl nano htop screen build-essential pkg-config libs
1111

1212
RUN ln $(which python3) /usr/bin/python
1313

14-
RUN curl -sfLS https://install-node.vercel.app/v18.18.2 | bash -s -- -f
14+
RUN curl -sfLS https://install-node.vercel.app/v20.9.0 | bash -s -- -f
1515
RUN npm i -g [email protected]
1616
RUN corepack enable
1717

.github/actions/next-stats-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"typescript": "5.1.6"
1919
},
2020
"engines": {
21-
"node": ">=18.18.0"
21+
"node": ">=20.9.0"
2222
},
2323
"packageManager": "[email protected]"
2424
}

.github/actions/upload-turboyet-data/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@vercel/ncc": "^0.36.0"
1313
},
1414
"engines": {
15-
"node": ">=18.18.0"
15+
"node": ">=20.9.0"
1616
},
1717
"packageManager": "[email protected]"
1818
}

.github/pull_request_template.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,6 @@ Choose the right checklist for the change(s) that you're making:
99
- Run `pnpm prettier-fix` to fix formatting issues before opening the PR.
1010
- Read the Docs Contribution Guide to ensure your contribution follows the docs guidelines: https://nextjs.org/docs/community/contribution-guide
1111
12-
### Adding or Updating Examples
13-
14-
- The "examples guidelines" are followed from our contributing doc https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md
15-
- Make sure the linting passes by running `pnpm build && pnpm lint`. See https://github.com/vercel/next.js/blob/canary/contributing/repository/linting.md
16-
1712
### Fixing a bug
1813
1914
- Related issues linked using `fixes #number`

0 commit comments

Comments
 (0)