Skip to content

chore(deps): upgrade everything to latest Next and React #1775

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Nov 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion demos/base-path/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"typescript": "^4.6.3"
},
"dependencies": {
"next": "^13.0.0"
"next": "^13.0.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
6 changes: 3 additions & 3 deletions demos/canary/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions demos/canary/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
},
"dependencies": {
"next": "^12.3.1",
"react": "18.1.0",
"react-dom": "18.1.0"
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@netlify/plugin-nextjs": "*",
Expand Down
2 changes: 1 addition & 1 deletion demos/custom-routes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"typescript": "^4.7.4"
},
"dependencies": {
"next": "^13.0.0"
"next": "^13.0.3"
},
"scripts": {
"build": "next build",
Expand Down
7 changes: 4 additions & 3 deletions demos/default/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@
},
"homepage": "https://github.com/netlify/next-runtime#readme",
"dependencies": {
"@netlify/next": "*",
"@reach/dialog": "^0.16.2",
"@reach/visually-hidden": "^0.16.0",
"@vercel/og": "^0.0.20",
"next": "^13.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
"next": "^13.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@netlify/plugin-nextjs": "*",
Expand Down
6 changes: 3 additions & 3 deletions demos/middleware/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"dependencies": {
"@netlify/next": "*",
"@netlify/plugin-nextjs": "*",
"next": "^13.0.0",
"react": "18.0.0",
"react-dom": "18.0.0"
"next": "^13.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
Expand Down
1 change: 0 additions & 1 deletion demos/next-auth/netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ ignore = "if [ $CACHED_COMMIT_REF == $COMMIT_REF ]; then (exit 1); else git diff

[build.environment]
TERM = "xterm"
NODE_VERSION = "17"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this safe to remove? I can't remember why we had this set.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was for Cypress. It caused breakages with this update, as there are packages with engines fields that don't like it. It didn't seem to be needed anymore, and the tests still pass.


[[plugins]]
package = "@netlify/plugin-nextjs"
Expand Down
6 changes: 3 additions & 3 deletions demos/next-auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
],
"license": "MIT",
"dependencies": {
"next": "^13.0.0",
"next": "^13.0.3",
"next-auth": "^4.15.0",
"nodemailer": "^6.6.3",
"react": "^18.0.0",
"react-dom": "^18.0.0"
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@netlify/plugin-nextjs": "*",
Expand Down
1 change: 0 additions & 1 deletion demos/next-export/netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ ignore = "if [ $CACHED_COMMIT_REF == $COMMIT_REF ]; then (exit 1); else git diff

[build.environment]
NETLIFY_NEXT_PLUGIN_SKIP = "true"
NODE_VERSION = "17"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above


[[plugins]]
package = "@netlify/plugin-nextjs"
Expand Down
2 changes: 1 addition & 1 deletion demos/next-export/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"description": "",
"dependencies": {
"next": "^13.0.0"
"next": "^13.0.3"
},
"devDependencies": {
"@netlify/plugin-nextjs": "*",
Expand Down
Loading