Update nextjs monorepo to v13.4.2 #115

Merged
kjuulh merged 1 commits from renovate/nextjs-monorepo into main 2023-05-12 02:42:42 +02:00
Owner

This PR contains the following updates:

Package Type Update Change
eslint-config-next devDependencies patch 13.4.1 -> 13.4.2
next (source) dependencies patch 13.4.1 -> 13.4.2

Release Notes

vercel/next.js

v13.4.2

Compare Source

Core Changes
  • make sure server component externals only apply to files resolvable by node: #​49147
  • Fix link not being GC'd sometimes: #​49318
  • Fix issue where nextP is not replaced in searchParams: #​49315
  • Add typescript version to next-info: #​49346
  • Upgrade React to 18.3.0-canary-16d053d59-20230506: #​49402
  • Remove empty config warning: #​49435
  • app-router: add startTransition call to revalidate dispatcher: #​49453
  • Inline static data buffer instead of using fs read: #​49323
  • Revert "Temporarily disable app dir export integration test": #​49311
  • Add link to Server Actions docs.: #​49384
  • Replace metadata clone with custom handler in dev: #​49343
  • Add request-async-storage to the shared layer: #​49470
  • Fix revalidate: false detection in app: #​49473
  • Fix metadata image route encoding: #​49482
  • Fix actions redirect handling: #​49483
  • Restrict useOptimistic and useFormStatus APIs on the server layer: #​49331
  • Fix external rewrite with body: #​49487
  • fix: better error message with an invalid assetPrefix: #​49403
  • Fix Node Crypto polyfill: #​49288
  • Fix: Router.query contains _next when using middleware with dynamic routes: #​48753
  • type: update React.CSSProperties type to Record: #​49186
  • Fix server CSS imports and HMR not working properly in specific conditions: #​49462
  • Fix HMR support for server layer imported SASS and SCSS: #​49534
  • Support .bind syntax with Action functions: #​49422
  • ci(test): enable turbopack test: #​49466
  • feat(next-core): relay transform plugin: #​48899
  • Fix canonical url for dynamic routes: #​49512
  • Add experimental compile/generate handling: #​49491
  • chore: cross-platform rm -rf script: #​49529
  • refactor(next-core): remove ast cloning in custom transform: #​49560
  • fix: a11y issues in react-dev-overlay: #​49460
  • Add tests for HMR: #​49206
  • Add stub Route type for typedRoutes: #​48099
  • Add test for appdir referenced images: #​49242
  • feat: Allow trace-level logging for non-published release builds: #​49564
  • Fix unexpected object mutation while resolving Open Graph: #​49514
  • actions: forward fetch rejections to the action handler: #​49577
  • actions: make cookies.set revalidate: #​49582
  • interception route: fix route groups breaking the referrer computation: #​49602
  • Allow export decl with any init value in the actions compiler: #​49600
  • Handle unstable_cache in pages: #​49624
  • Update cache method handling during build: #​49633
  • Fix fetchCache and no-store handling: #​49638
  • interception routes: fix rewrites order: #​49615
  • Ensure initialHeaders are normalized: #​49643
  • app-router: add support for parallel routes in useParams: #​49595
  • Add puppeteer to external packages list: #​49597
  • Add playwright to external package list: #​49649
  • actions: fill prefetchCache with revalidation payload: #​49576
  • Rename Turbopack/tasks crates to common prefixes: #​49446
  • chore(jest): Simplify isServer expression: #​48330
  • Add missing config vars into Webpack cache key: #​49663
  • misc: Apply PR comments from #​49206: #​49647
  • fix: Standalone node http server starts accepting requests before next handler is ready: #​49548
  • Update links from beta to stable docs.: #​49349
Documentation Changes
  • Fix error message about preconnect 📝: #​40360
  • [docs] Add iOS hydration mismatch details to error page: #​43584
  • Add note about custom distDir to standalone build docs: #​48592
  • Add --use-yarn flag to create-next-app: #​49407
Misc Changes
Credits

Huge thanks to @​shuding, @​ijjk, @​ForsakenHarmony, @​timneutkens, @​huozhi, @​sanjaiyan-dev, @​acdlite, @​feedthejim, @​styfle, @​leerob, @​koba04, @​g12i, @​cesarkohl, @​darshkpatel, @​josh, @​li-jia-nan, @​kwonoj, @​gabschne, @​alexkirsz, @​karlhorky, @​jridgewell, @​sokra, @​kdy1, @​akd-io, @​runjuu, @​jocarrd, @​nnnnoel, and @​ferdingler 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 | patch | [`13.4.1` -> `13.4.2`](https://renovatebot.com/diffs/npm/eslint-config-next/13.4.1/13.4.2) | | [next](https://nextjs.org) ([source](https://github.com/vercel/next.js)) | dependencies | patch | [`13.4.1` -> `13.4.2`](https://renovatebot.com/diffs/npm/next/13.4.1/13.4.2) | --- ### Release Notes <details> <summary>vercel/next.js</summary> ### [`v13.4.2`](https://github.com/vercel/next.js/releases/tag/v13.4.2) [Compare Source](https://github.com/vercel/next.js/compare/v13.4.1...v13.4.2) ##### Core Changes - make sure server component externals only apply to files resolvable by node: [#&#8203;49147](https://github.com/vercel/next.js/issues/49147) - Fix link not being GC'd sometimes: [#&#8203;49318](https://github.com/vercel/next.js/issues/49318) - Fix issue where nextP is not replaced in searchParams: [#&#8203;49315](https://github.com/vercel/next.js/issues/49315) - Add typescript version to next-info: [#&#8203;49346](https://github.com/vercel/next.js/issues/49346) - Upgrade React to 18.3.0-canary-16d053d59-20230506: [#&#8203;49402](https://github.com/vercel/next.js/issues/49402) - Remove empty config warning: [#&#8203;49435](https://github.com/vercel/next.js/issues/49435) - app-router: add startTransition call to revalidate dispatcher: [#&#8203;49453](https://github.com/vercel/next.js/issues/49453) - Inline static data buffer instead of using fs read: [#&#8203;49323](https://github.com/vercel/next.js/issues/49323) - Revert "Temporarily disable app dir export integration test": [#&#8203;49311](https://github.com/vercel/next.js/issues/49311) - Add link to Server Actions docs.: [#&#8203;49384](https://github.com/vercel/next.js/issues/49384) - Replace metadata clone with custom handler in dev: [#&#8203;49343](https://github.com/vercel/next.js/issues/49343) - Add request-async-storage to the shared layer: [#&#8203;49470](https://github.com/vercel/next.js/issues/49470) - Fix revalidate: false detection in app: [#&#8203;49473](https://github.com/vercel/next.js/issues/49473) - Fix metadata image route encoding: [#&#8203;49482](https://github.com/vercel/next.js/issues/49482) - Fix actions redirect handling: [#&#8203;49483](https://github.com/vercel/next.js/issues/49483) - Restrict `useOptimistic` and `useFormStatus` APIs on the server layer: [#&#8203;49331](https://github.com/vercel/next.js/issues/49331) - Fix external rewrite with body: [#&#8203;49487](https://github.com/vercel/next.js/issues/49487) - fix: better error message with an invalid assetPrefix: [#&#8203;49403](https://github.com/vercel/next.js/issues/49403) - Fix Node Crypto polyfill: [#&#8203;49288](https://github.com/vercel/next.js/issues/49288) - Fix: Router.query contains \_next when using middleware with dynamic routes: [#&#8203;48753](https://github.com/vercel/next.js/issues/48753) - type: update React.CSSProperties type to Record: [#&#8203;49186](https://github.com/vercel/next.js/issues/49186) - Fix server CSS imports and HMR not working properly in specific conditions: [#&#8203;49462](https://github.com/vercel/next.js/issues/49462) - Fix HMR support for server layer imported SASS and SCSS: [#&#8203;49534](https://github.com/vercel/next.js/issues/49534) - Support `.bind` syntax with Action functions: [#&#8203;49422](https://github.com/vercel/next.js/issues/49422) - ci(test): enable turbopack test: [#&#8203;49466](https://github.com/vercel/next.js/issues/49466) - feat(next-core): relay transform plugin: [#&#8203;48899](https://github.com/vercel/next.js/issues/48899) - Fix canonical url for dynamic routes: [#&#8203;49512](https://github.com/vercel/next.js/issues/49512) - Add experimental compile/generate handling: [#&#8203;49491](https://github.com/vercel/next.js/issues/49491) - chore: cross-platform `rm -rf` script: [#&#8203;49529](https://github.com/vercel/next.js/issues/49529) - refactor(next-core): remove ast cloning in custom transform: [#&#8203;49560](https://github.com/vercel/next.js/issues/49560) - fix: a11y issues in react-dev-overlay: [#&#8203;49460](https://github.com/vercel/next.js/issues/49460) - Add tests for HMR: [#&#8203;49206](https://github.com/vercel/next.js/issues/49206) - Add stub Route type for typedRoutes: [#&#8203;48099](https://github.com/vercel/next.js/issues/48099) - Add test for appdir referenced images: [#&#8203;49242](https://github.com/vercel/next.js/issues/49242) - feat: Allow trace-level logging for non-published release builds: [#&#8203;49564](https://github.com/vercel/next.js/issues/49564) - Fix unexpected object mutation while resolving Open Graph: [#&#8203;49514](https://github.com/vercel/next.js/issues/49514) - actions: forward fetch rejections to the action handler: [#&#8203;49577](https://github.com/vercel/next.js/issues/49577) - actions: make cookies.set revalidate: [#&#8203;49582](https://github.com/vercel/next.js/issues/49582) - interception route: fix route groups breaking the referrer computation: [#&#8203;49602](https://github.com/vercel/next.js/issues/49602) - Allow export decl with any init value in the actions compiler: [#&#8203;49600](https://github.com/vercel/next.js/issues/49600) - Handle unstable_cache in pages: [#&#8203;49624](https://github.com/vercel/next.js/issues/49624) - Update cache method handling during build: [#&#8203;49633](https://github.com/vercel/next.js/issues/49633) - Fix fetchCache and no-store handling: [#&#8203;49638](https://github.com/vercel/next.js/issues/49638) - interception routes: fix rewrites order: [#&#8203;49615](https://github.com/vercel/next.js/issues/49615) - Ensure initialHeaders are normalized: [#&#8203;49643](https://github.com/vercel/next.js/issues/49643) - app-router: add support for parallel routes in useParams: [#&#8203;49595](https://github.com/vercel/next.js/issues/49595) - Add puppeteer to external packages list: [#&#8203;49597](https://github.com/vercel/next.js/issues/49597) - Add playwright to external package list: [#&#8203;49649](https://github.com/vercel/next.js/issues/49649) - actions: fill prefetchCache with revalidation payload: [#&#8203;49576](https://github.com/vercel/next.js/issues/49576) - Rename Turbopack/tasks crates to common prefixes: [#&#8203;49446](https://github.com/vercel/next.js/issues/49446) - chore(jest): Simplify isServer expression: [#&#8203;48330](https://github.com/vercel/next.js/issues/48330) - Add missing config vars into Webpack cache key: [#&#8203;49663](https://github.com/vercel/next.js/issues/49663) - misc: Apply PR comments from [#&#8203;49206](https://github.com/vercel/next.js/issues/49206): [#&#8203;49647](https://github.com/vercel/next.js/issues/49647) - fix: Standalone node http server starts accepting requests before next handler is ready: [#&#8203;49548](https://github.com/vercel/next.js/issues/49548) - Update links from beta to stable docs.: [#&#8203;49349](https://github.com/vercel/next.js/issues/49349) ##### Documentation Changes - Fix error message about `preconnect` 📝: [#&#8203;40360](https://github.com/vercel/next.js/issues/40360) - \[docs] Add iOS hydration mismatch details to error page: [#&#8203;43584](https://github.com/vercel/next.js/issues/43584) - Add note about custom distDir to standalone build docs: [#&#8203;48592](https://github.com/vercel/next.js/issues/48592) - Add `--use-yarn` flag to `create-next-app`: [#&#8203;49407](https://github.com/vercel/next.js/issues/49407) ##### Misc Changes - Add test case for client sourcemaps: [#&#8203;49308](https://github.com/vercel/next.js/issues/49308) - Update start release workflow inputs: [#&#8203;49492](https://github.com/vercel/next.js/issues/49492) - Fix failing actions e2e deploy test: [#&#8203;49497](https://github.com/vercel/next.js/issues/49497) - Replace var with const: [#&#8203;49379](https://github.com/vercel/next.js/issues/49379) - test: pages react version with react hook in deployment: [#&#8203;48907](https://github.com/vercel/next.js/issues/48907) - Add test case for [#&#8203;49235](https://github.com/vercel/next.js/issues/49235): [#&#8203;49488](https://github.com/vercel/next.js/issues/49488) - chore: fix flaky middleware matcher test: [#&#8203;49555](https://github.com/vercel/next.js/issues/49555) - Avoid skipping the required Test Codemods job: [#&#8203;49589](https://github.com/vercel/next.js/issues/49589) - Update flakey app-actions deploy tests: [#&#8203;49667](https://github.com/vercel/next.js/issues/49667) ##### Credits Huge thanks to [@&#8203;shuding](https://github.com/shuding), [@&#8203;ijjk](https://github.com/ijjk), [@&#8203;ForsakenHarmony](https://github.com/ForsakenHarmony), [@&#8203;timneutkens](https://github.com/timneutkens), [@&#8203;huozhi](https://github.com/huozhi), [@&#8203;sanjaiyan-dev](https://github.com/sanjaiyan-dev), [@&#8203;acdlite](https://github.com/acdlite), [@&#8203;feedthejim](https://github.com/feedthejim), [@&#8203;styfle](https://github.com/styfle), [@&#8203;leerob](https://github.com/leerob), [@&#8203;koba04](https://github.com/koba04), [@&#8203;g12i](https://github.com/g12i), [@&#8203;cesarkohl](https://github.com/cesarkohl), [@&#8203;darshkpatel](https://github.com/darshkpatel), [@&#8203;josh](https://github.com/josh), [@&#8203;li-jia-nan](https://github.com/li-jia-nan), [@&#8203;kwonoj](https://github.com/kwonoj), [@&#8203;gabschne](https://github.com/gabschne), [@&#8203;alexkirsz](https://github.com/alexkirsz), [@&#8203;karlhorky](https://github.com/karlhorky), [@&#8203;jridgewell](https://github.com/jridgewell), [@&#8203;sokra](https://github.com/sokra), [@&#8203;kdy1](https://github.com/kdy1), [@&#8203;akd-io](https://github.com/akd-io), [@&#8203;runjuu](https://github.com/runjuu), [@&#8203;jocarrd](https://github.com/jocarrd), [@&#8203;nnnnoel](https://github.com/nnnnoel), and [@&#8203;ferdingler](https://github.com/ferdingler) 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:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNjAuMCIsInVwZGF0ZWRJblZlciI6IjM0LjE2MC4wIn0=-->
kjuulh force-pushed renovate/nextjs-monorepo from 759eba76d2 to 72126451ab 2023-05-12 02:17:58 +02:00 Compare
kjuulh changed title from Update dependency eslint-config-next to v13.4.2 to Update nextjs monorepo to v13.4.2 2023-05-12 02:17:58 +02:00
kjuulh merged commit 72126451ab into main 2023-05-12 02:42:42 +02: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#115
No description provided.