Update nextjs monorepo to v13.1.0 #44

Merged
kjuulh merged 1 commits from renovate/nextjs-monorepo into main 2022-12-22 16:57:33 +01:00
Owner

This PR contains the following updates:

Package Type Update Change
eslint-config-next devDependencies minor 13.0.7 -> 13.1.0
next (source) dependencies minor 13.0.7 -> 13.1.0

Release Notes

vercel/next.js

v13.1.0

Compare Source

Core Changes
  • Fix windows slashes for app client entry: #​44052
  • Hash both pitch and main loader for server CSS imports: #​44063
  • Add tracing for testing tools: #​44046
  • Run packing in tests in parallel: #​44048
  • feat: app dir error-global component: #​44066
  • Fix ignoring dev warning for preload component: #​44065
  • refactor(next-swc): introduce next-binding to consolidate dependencies.: #​43473
  • Add lodash to server components external packages: #​44022
  • Fix dev session stopped handling: #​44112
  • Add jsdoc/no-types eslint rule for TypeScript files: #​44049
  • Revert "Remove useState from next/image (#​43587)": #​44094
  • should not contain pages css in app dir: #​44151
  • Upgrade undici to 5.14.0 to fix fetch redirect bug: #​44133
  • build(cargo): fix turbopack + next-swc build: #​43983
  • Align onRecoverableError callback between pages and app dir: #​44161
  • build(cargo): update turbopack: #​44167
  • Update styled-jsx: #​44070
  • Fix crash in GraalVM: #​44176
  • Also check error.message as digest for recoverable errors in pages: #​44185
  • Move options to stable: #​44195
  • Move transpilePackages out of experimental: #​44194
  • Fix CSS resources being duplicated in app dir: #​44168
  • Add telemetry for stable features: #​44201
  • Add warning for experimental flags that have moved: #​44202
  • build(cargo): bump up turbopack: #​44206
  • Bump @vercel/nft@0.22.6: #​44193
  • Disable Image Optimization API when next.config.js has unoptimized: true: #​44205
  • Honour distDir in type generation: #​44207
  • Only once for the next/head usage in app dir: #​44233
  • Enable allowMiddlewareResponseBody by default: #​44224
  • Move modularizeImports out of experimental: #​44240
  • Update config validation for latest turbopack changes: #​44223
  • build(cargo): update turbopack: #​44241
  • update turbopack for bugfixes: #​44251
Documentation Changes
  • docs: Add explanation about font-display: #​44001
  • Test that adding query can be detected by useSearchParams: #​43969
  • Add static test for useSelectedLayoutSegments: #​43955
  • Docs: Update deployment.md with Firebase, Amplify and Cloudflare: #​44092
  • Add test for rewriting in middleware in app-dir: #​43971
  • docs: Add missing type to import statement: #​44111
  • docs: update next/dynamic docs: #​44067
  • Update disabling-http-keep-alive.md for server-side only: #​43374
  • docs: fix spelling error: #​44191
  • Write tests for navigation between app-dir and pages: #​43881
  • Add docs for middleware flags: #​44235
Example Changes
  • Updates with-supertokens example: #​44042
  • Fix styled-components setup in turbo example: #​44165
  • update with-turbopack example for postcss/tailwind support: #​44261
Misc Changes
  • Run packing in tests in parallel
  • Revert "Run packing in tests in parallel"
  • Remove extra turbo test: #​44073
  • Implement new core test API: #​44086
  • Refactor more tests to createNextDescribe: #​44104
  • Add types as a default dependency into tests: #​44140
  • Suggest contributors to use shallow clone: #​44158
  • Update pnpm new-test to use createNextDescribe: #​44147
  • Update README templates to include snippet on next/font: #​44088
  • Wrap CSS variable in var: #​44153
  • Ensure next.url is used instead of next.appPort: #​44163
  • test: add test for notFound during streaming: #​44078
  • Fix test template example: #​44170
  • Remove devcontainer network host argument: #​44157
  • Fix pnpm install on Azure: #​44179
  • Enable ReactRefreshLogBox scss test: #​44180
  • Increase recommended git clone depth: #​44181
  • Document how chain works in BrowserInterface and chain to browser.eval: #​44085
  • Remove browser.refresh in app tests: #​44186
  • Move tests into their test folder: #​44183
  • Add test checking that repeated edits won't cause hydration issues: #​44189
  • Update labeler.json with current next.js team members: #​44231
Credits

Huge thanks to @​shuding, @​hanneslund, @​rishabhpoddar, @​JanKaifer, @​huozhi, @​timneutkens, @​kwonoj, @​IamManchanda, @​styfle, @​nyedidikeke, @​jaslong, @​jueungrace, @​longzheng, @​akshitsinha, @​Brooooooklyn, @​gish, and @​sokra for helping!


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [eslint-config-next](https://github.com/vercel/next.js) | devDependencies | minor | [`13.0.7` -> `13.1.0`](https://renovatebot.com/diffs/npm/eslint-config-next/13.0.7/13.1.0) | | [next](https://nextjs.org) ([source](https://github.com/vercel/next.js)) | dependencies | minor | [`13.0.7` -> `13.1.0`](https://renovatebot.com/diffs/npm/next/13.0.7/13.1.0) | --- ### Release Notes <details> <summary>vercel/next.js</summary> ### [`v13.1.0`](https://github.com/vercel/next.js/releases/tag/v13.1.0) [Compare Source](https://github.com/vercel/next.js/compare/v13.0.7...v13.1.0) ##### Core Changes - Fix windows slashes for app client entry: [#&#8203;44052](https://github.com/vercel/next.js/issues/44052) - Hash both pitch and main loader for server CSS imports: [#&#8203;44063](https://github.com/vercel/next.js/issues/44063) - Add tracing for testing tools: [#&#8203;44046](https://github.com/vercel/next.js/issues/44046) - Run packing in tests in parallel: [#&#8203;44048](https://github.com/vercel/next.js/issues/44048) - feat: app dir error-global component: [#&#8203;44066](https://github.com/vercel/next.js/issues/44066) - Fix ignoring dev warning for preload component: [#&#8203;44065](https://github.com/vercel/next.js/issues/44065) - refactor(next-swc): introduce next-binding to consolidate dependencies.: [#&#8203;43473](https://github.com/vercel/next.js/issues/43473) - Add lodash to server components external packages: [#&#8203;44022](https://github.com/vercel/next.js/issues/44022) - Fix dev session stopped handling: [#&#8203;44112](https://github.com/vercel/next.js/issues/44112) - Add jsdoc/no-types eslint rule for TypeScript files: [#&#8203;44049](https://github.com/vercel/next.js/issues/44049) - Revert "Remove `useState` from `next/image` ([#&#8203;43587](https://github.com/vercel/next.js/issues/43587))": [#&#8203;44094](https://github.com/vercel/next.js/issues/44094) - should not contain pages css in app dir: [#&#8203;44151](https://github.com/vercel/next.js/issues/44151) - Upgrade undici to 5.14.0 to fix fetch redirect bug: [#&#8203;44133](https://github.com/vercel/next.js/issues/44133) - build(cargo): fix turbopack + next-swc build: [#&#8203;43983](https://github.com/vercel/next.js/issues/43983) - Align onRecoverableError callback between pages and app dir: [#&#8203;44161](https://github.com/vercel/next.js/issues/44161) - build(cargo): update turbopack: [#&#8203;44167](https://github.com/vercel/next.js/issues/44167) - Update styled-jsx: [#&#8203;44070](https://github.com/vercel/next.js/issues/44070) - Fix crash in GraalVM: [#&#8203;44176](https://github.com/vercel/next.js/issues/44176) - Also check error.message as digest for recoverable errors in pages: [#&#8203;44185](https://github.com/vercel/next.js/issues/44185) - Move options to stable: [#&#8203;44195](https://github.com/vercel/next.js/issues/44195) - Move `transpilePackages` out of experimental: [#&#8203;44194](https://github.com/vercel/next.js/issues/44194) - Fix CSS resources being duplicated in app dir: [#&#8203;44168](https://github.com/vercel/next.js/issues/44168) - Add telemetry for stable features: [#&#8203;44201](https://github.com/vercel/next.js/issues/44201) - Add warning for experimental flags that have moved: [#&#8203;44202](https://github.com/vercel/next.js/issues/44202) - build(cargo): bump up turbopack: [#&#8203;44206](https://github.com/vercel/next.js/issues/44206) - Bump `@vercel/nft@0.22.6`: [#&#8203;44193](https://github.com/vercel/next.js/issues/44193) - Disable Image Optimization API when next.config.js has `unoptimized: true`: [#&#8203;44205](https://github.com/vercel/next.js/issues/44205) - Honour `distDir` in type generation: [#&#8203;44207](https://github.com/vercel/next.js/issues/44207) - Only once for the next/head usage in app dir: [#&#8203;44233](https://github.com/vercel/next.js/issues/44233) - Enable allowMiddlewareResponseBody by default: [#&#8203;44224](https://github.com/vercel/next.js/issues/44224) - Move `modularizeImports` out of experimental: [#&#8203;44240](https://github.com/vercel/next.js/issues/44240) - Update config validation for latest turbopack changes: [#&#8203;44223](https://github.com/vercel/next.js/issues/44223) - build(cargo): update turbopack: [#&#8203;44241](https://github.com/vercel/next.js/issues/44241) - update turbopack for bugfixes: [#&#8203;44251](https://github.com/vercel/next.js/issues/44251) ##### Documentation Changes - docs: Add explanation about font-display: [#&#8203;44001](https://github.com/vercel/next.js/issues/44001) - Test that adding query can be detected by useSearchParams: [#&#8203;43969](https://github.com/vercel/next.js/issues/43969) - Add static test for useSelectedLayoutSegments: [#&#8203;43955](https://github.com/vercel/next.js/issues/43955) - Docs: Update deployment.md with Firebase, Amplify and Cloudflare: [#&#8203;44092](https://github.com/vercel/next.js/issues/44092) - Add test for rewriting in middleware in app-dir: [#&#8203;43971](https://github.com/vercel/next.js/issues/43971) - docs: Add missing type to import statement: [#&#8203;44111](https://github.com/vercel/next.js/issues/44111) - docs: update next/dynamic docs: [#&#8203;44067](https://github.com/vercel/next.js/issues/44067) - Update disabling-http-keep-alive.md for server-side only: [#&#8203;43374](https://github.com/vercel/next.js/issues/43374) - docs: fix spelling error: [#&#8203;44191](https://github.com/vercel/next.js/issues/44191) - Write tests for navigation between app-dir and pages: [#&#8203;43881](https://github.com/vercel/next.js/issues/43881) - Add docs for middleware flags: [#&#8203;44235](https://github.com/vercel/next.js/issues/44235) ##### Example Changes - Updates with-supertokens example: [#&#8203;44042](https://github.com/vercel/next.js/issues/44042) - Fix styled-components setup in turbo example: [#&#8203;44165](https://github.com/vercel/next.js/issues/44165) - update with-turbopack example for postcss/tailwind support: [#&#8203;44261](https://github.com/vercel/next.js/issues/44261) ##### Misc Changes - Run packing in tests in parallel - Revert "Run packing in tests in parallel" - Remove extra turbo test: [#&#8203;44073](https://github.com/vercel/next.js/issues/44073) - Implement new core test API: [#&#8203;44086](https://github.com/vercel/next.js/issues/44086) - Refactor more tests to createNextDescribe: [#&#8203;44104](https://github.com/vercel/next.js/issues/44104) - Add types as a default dependency into tests: [#&#8203;44140](https://github.com/vercel/next.js/issues/44140) - Suggest contributors to use shallow clone: [#&#8203;44158](https://github.com/vercel/next.js/issues/44158) - Update pnpm new-test to use createNextDescribe: [#&#8203;44147](https://github.com/vercel/next.js/issues/44147) - Update README templates to include snippet on `next/font`: [#&#8203;44088](https://github.com/vercel/next.js/issues/44088) - Wrap CSS variable in var: [#&#8203;44153](https://github.com/vercel/next.js/issues/44153) - Ensure next.url is used instead of next.appPort: [#&#8203;44163](https://github.com/vercel/next.js/issues/44163) - test: add test for notFound during streaming: [#&#8203;44078](https://github.com/vercel/next.js/issues/44078) - Fix test template example: [#&#8203;44170](https://github.com/vercel/next.js/issues/44170) - Remove devcontainer network host argument: [#&#8203;44157](https://github.com/vercel/next.js/issues/44157) - Fix pnpm install on Azure: [#&#8203;44179](https://github.com/vercel/next.js/issues/44179) - Enable ReactRefreshLogBox scss test: [#&#8203;44180](https://github.com/vercel/next.js/issues/44180) - Increase recommended git clone depth: [#&#8203;44181](https://github.com/vercel/next.js/issues/44181) - Document how chain works in BrowserInterface and chain to `browser.eval`: [#&#8203;44085](https://github.com/vercel/next.js/issues/44085) - Remove browser.refresh in app tests: [#&#8203;44186](https://github.com/vercel/next.js/issues/44186) - Move tests into their test folder: [#&#8203;44183](https://github.com/vercel/next.js/issues/44183) - Add test checking that repeated edits won't cause hydration issues: [#&#8203;44189](https://github.com/vercel/next.js/issues/44189) - Update labeler.json with current next.js team members: [#&#8203;44231](https://github.com/vercel/next.js/issues/44231) ##### Credits Huge thanks to [@&#8203;shuding](https://github.com/shuding), [@&#8203;hanneslund](https://github.com/hanneslund), [@&#8203;rishabhpoddar](https://github.com/rishabhpoddar), [@&#8203;JanKaifer](https://github.com/JanKaifer), [@&#8203;huozhi](https://github.com/huozhi), [@&#8203;timneutkens](https://github.com/timneutkens), [@&#8203;kwonoj](https://github.com/kwonoj), [@&#8203;IamManchanda](https://github.com/IamManchanda), [@&#8203;styfle](https://github.com/styfle), [@&#8203;nyedidikeke](https://github.com/nyedidikeke), [@&#8203;jaslong](https://github.com/jaslong), [@&#8203;jueungrace](https://github.com/jueungrace), [@&#8203;longzheng](https://github.com/longzheng), [@&#8203;akshitsinha](https://github.com/akshitsinha), [@&#8203;Brooooooklyn](https://github.com/Brooooooklyn), [@&#8203;gish](https://github.com/gish), and [@&#8203;sokra](https://github.com/sokra) for helping! </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC43MC4xIiwidXBkYXRlZEluVmVyIjoiMzQuNzAuMSJ9-->
kjuulh added 1 commit 2022-12-22 16:37:07 +01:00
Update nextjs monorepo to v13.1.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
cfc6662e21
kjuulh merged commit cfc6662e21 into main 2022-12-22 16:57:33 +01:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kjuulh/todo#44
No description provided.