Skip to content
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

refactor: cleanup duplicated symbols #4612

Merged
merged 5 commits into from Mar 6, 2023
Merged

Conversation

metcoder95
Copy link
Member

@metcoder95 metcoder95 commented Mar 5, 2023

This PR just attempts to remove the duplicated Symbol as a result of #4608.

I'm trying to see if there's a way to avoid this from happening in the future, as I'm quite surprised I missed this and the linter didn't notify about the property being undefined within the Symbol exported object (though it might have some sense due to the scope of the lint rule).

I started thinking about testing the symbols against a JSON schema with AVJ to verify all the essential properties exist. Though not sure is the right approach nor the value that can add.

Looking forward to your thoughts and ideas about it 🙂

Checklist

lib/symbols.js Outdated
kRequestPayloadStream: Symbol('fastify.RequestPayloadStream'),
kRequestAcceptVersion: Symbol('fastify.RequestAcceptVersion'),
kRequestValidateWeakMap: Symbol('fastify.request.cache.validators'),
kRequestValidateWeakMap: Symbol('fastify.request.cache.validateFns'),
Copy link
Contributor

Choose a reason for hiding this comment

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

Can we rename it?

Suggested change
kRequestValidateWeakMap: Symbol('fastify.request.cache.validateFns'),
kRequestCacheValidateFns: Symbol('fastify.request.cache.validateFns'),

Of course also need to fix the imports if we rename it.

Copy link
Member Author

@metcoder95 metcoder95 Mar 5, 2023

Choose a reason for hiding this comment

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

Good one, I rename both ones to be named consistent 👍

Check:

@Uzlopak
Copy link
Contributor

Uzlopak commented Mar 5, 2023

I guess what we need is a test which checks in a handler if request (and request.raw?) and reply have some keys named 'undefined' or 'null'.

@metcoder95
Copy link
Member Author

I guess what we need is a test which checks in a handler if request (and request.raw?) and reply have some keys named 'undefined' or 'null'.

Sounds good 🤔
Didn't check yet, but here it will depend on what the symbol does and how it is assigned. As is possible that certain symbols are ok to be nullish at the start, but later on assigned to a certain value given specific scenarios.
It is possible that we rely more on null rather than undefined, we can easily do a quick check treating through the Symbols on tests and validate that they are just not undefined, as this can give the understanding that something is missed.

Let me draft a PoC to start iterating over it 🙂

@Uzlopak
Copy link
Contributor

Uzlopak commented Mar 5, 2023

@metcoder95
I think you misunderstood me. Its not about the values but keys.

If a symbol does not exist, than it will be undefined.
So request[kNotexistingSymbol] = null results in request[undefined] = null.

So we have to check if the following keys are not existing.

request.undefined
reply.undefined

@Uzlopak
Copy link
Contributor

Uzlopak commented Mar 5, 2023

So something like

t.not('undefined' in request)
t.not('undefined' in reply)

Copy link
Member

@mcollina mcollina left a comment

Choose a reason for hiding this comment

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

lgtm

@metcoder95
Copy link
Member Author

@Uzlopak oh, ok ok got you, see what you mean now. Yeah, it is a pragmatic way of testing them. SGTM, let me add it 👍

@metcoder95 metcoder95 requested a review from Uzlopak March 5, 2023 22:29
})

try {
await app.inject('/')
Copy link
Contributor

Choose a reason for hiding this comment

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

Do we really need the try catch block?

Other than that LGTM

@Eomm Eomm merged commit 1c9bfbf into fastify:main Mar 6, 2023
@metcoder95 metcoder95 deleted the refactor/4608 branch March 7, 2023 08:53
ddadaal pushed a commit to PKUHPC/SCOW that referenced this pull request Mar 13, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence | Type |
Update |
|---|---|---|---|---|---|---|---|
| [@codemirror/view](https://togithub.com/codemirror/view) | [`6.9.1` ->
`6.9.2`](https://renovatebot.com/diffs/npm/@codemirror%2fview/6.9.1/6.9.2)
|
[![age](https://badges.renovateapi.com/packages/npm/@codemirror%2fview/6.9.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@codemirror%2fview/6.9.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@codemirror%2fview/6.9.2/compatibility-slim/6.9.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@codemirror%2fview/6.9.2/confidence-slim/6.9.1)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| @​ddadaal/tsgrpc-server | [`0.18.2` ->
`0.19.0`](https://renovatebot.com/diffs/npm/@ddadaal%2ftsgrpc-server/0.18.2/0.19.0)
|
[![age](https://badges.renovateapi.com/packages/npm/@ddadaal%2ftsgrpc-server/0.19.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@ddadaal%2ftsgrpc-server/0.19.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@ddadaal%2ftsgrpc-server/0.19.0/compatibility-slim/0.18.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@ddadaal%2ftsgrpc-server/0.19.0/confidence-slim/0.18.2)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [@grpc/grpc-js](https://grpc.io/)
([source](https://togithub.com/grpc/grpc-node)) | [`1.8.11` ->
`1.8.12`](https://renovatebot.com/diffs/npm/@grpc%2fgrpc-js/1.8.11/1.8.12)
|
[![age](https://badges.renovateapi.com/packages/npm/@grpc%2fgrpc-js/1.8.12/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@grpc%2fgrpc-js/1.8.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@grpc%2fgrpc-js/1.8.12/compatibility-slim/1.8.11)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@grpc%2fgrpc-js/1.8.12/confidence-slim/1.8.11)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [@mikro-orm/cli](https://mikro-orm.io)
([source](https://togithub.com/mikro-orm/mikro-orm)) | [`5.6.13` ->
`5.6.14`](https://renovatebot.com/diffs/npm/@mikro-orm%2fcli/5.6.13/5.6.14)
|
[![age](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fcli/5.6.14/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fcli/5.6.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fcli/5.6.14/compatibility-slim/5.6.13)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fcli/5.6.14/confidence-slim/5.6.13)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [@mikro-orm/core](https://mikro-orm.io)
([source](https://togithub.com/mikro-orm/mikro-orm)) | [`5.6.13` ->
`5.6.14`](https://renovatebot.com/diffs/npm/@mikro-orm%2fcore/5.6.13/5.6.14)
|
[![age](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fcore/5.6.14/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fcore/5.6.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fcore/5.6.14/compatibility-slim/5.6.13)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fcore/5.6.14/confidence-slim/5.6.13)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [@mikro-orm/mariadb](https://mikro-orm.io)
([source](https://togithub.com/mikro-orm/mikro-orm)) | [`5.6.13` ->
`5.6.14`](https://renovatebot.com/diffs/npm/@mikro-orm%2fmariadb/5.6.13/5.6.14)
|
[![age](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmariadb/5.6.14/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmariadb/5.6.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmariadb/5.6.14/compatibility-slim/5.6.13)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmariadb/5.6.14/confidence-slim/5.6.13)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [@mikro-orm/migrations](https://mikro-orm.io)
([source](https://togithub.com/mikro-orm/mikro-orm)) | [`5.6.13` ->
`5.6.14`](https://renovatebot.com/diffs/npm/@mikro-orm%2fmigrations/5.6.13/5.6.14)
|
[![age](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmigrations/5.6.14/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmigrations/5.6.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmigrations/5.6.14/compatibility-slim/5.6.13)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmigrations/5.6.14/confidence-slim/5.6.13)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [@mikro-orm/mysql](https://mikro-orm.io)
([source](https://togithub.com/mikro-orm/mikro-orm)) | [`5.6.13` ->
`5.6.14`](https://renovatebot.com/diffs/npm/@mikro-orm%2fmysql/5.6.13/5.6.14)
|
[![age](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmysql/5.6.14/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmysql/5.6.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmysql/5.6.14/compatibility-slim/5.6.13)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmysql/5.6.14/confidence-slim/5.6.13)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [@mikro-orm/seeder](https://mikro-orm.io)
([source](https://togithub.com/mikro-orm/mikro-orm)) | [`5.6.13` ->
`5.6.14`](https://renovatebot.com/diffs/npm/@mikro-orm%2fseeder/5.6.13/5.6.14)
|
[![age](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fseeder/5.6.14/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fseeder/5.6.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fseeder/5.6.14/compatibility-slim/5.6.13)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fseeder/5.6.14/confidence-slim/5.6.13)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [@next/bundle-analyzer](https://togithub.com/vercel/next.js) |
[`13.2.3` ->
`13.2.4`](https://renovatebot.com/diffs/npm/@next%2fbundle-analyzer/13.2.3/13.2.4)
|
[![age](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.2.4/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.2.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.2.4/compatibility-slim/13.2.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.2.4/confidence-slim/13.2.3)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
| [@tsconfig/docusaurus](https://togithub.com/tsconfig/bases) | [`1.0.6`
->
`1.0.7`](https://renovatebot.com/diffs/npm/@tsconfig%2fdocusaurus/1.0.6/1.0.7)
|
[![age](https://badges.renovateapi.com/packages/npm/@tsconfig%2fdocusaurus/1.0.7/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@tsconfig%2fdocusaurus/1.0.7/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@tsconfig%2fdocusaurus/1.0.7/compatibility-slim/1.0.6)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@tsconfig%2fdocusaurus/1.0.7/confidence-slim/1.0.6)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
|
[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) |
[`18.14.6` ->
`18.15.1`](https://renovatebot.com/diffs/npm/@types%2fnode/18.14.6/18.15.1)
|
[![age](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.15.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.15.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.15.1/compatibility-slim/18.14.6)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.15.1/confidence-slim/18.14.6)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
|
[@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint)
| [`5.54.0` ->
`5.54.1`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/5.54.0/5.54.1)
|
[![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.54.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.54.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.54.1/compatibility-slim/5.54.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.54.1/confidence-slim/5.54.0)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
|
[@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint)
| [`5.54.0` ->
`5.54.1`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/5.54.0/5.54.1)
|
[![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.54.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.54.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.54.1/compatibility-slim/5.54.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.54.1/confidence-slim/5.54.0)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
| [dotenv-cli](https://togithub.com/entropitor/dotenv-cli) | [`7.0.0` ->
`7.1.0`](https://renovatebot.com/diffs/npm/dotenv-cli/7.0.0/7.1.0) |
[![age](https://badges.renovateapi.com/packages/npm/dotenv-cli/7.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/dotenv-cli/7.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/dotenv-cli/7.1.0/compatibility-slim/7.0.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/dotenv-cli/7.1.0/confidence-slim/7.0.0)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| [eslint](https://eslint.org)
([source](https://togithub.com/eslint/eslint)) | [`8.35.0` ->
`8.36.0`](https://renovatebot.com/diffs/npm/eslint/8.35.0/8.36.0) |
[![age](https://badges.renovateapi.com/packages/npm/eslint/8.36.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/eslint/8.36.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/eslint/8.36.0/compatibility-slim/8.35.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/eslint/8.36.0/confidence-slim/8.35.0)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| [fastify](https://www.fastify.io/)
([source](https://togithub.com/fastify/fastify)) | [`4.14.0` ->
`4.14.1`](https://renovatebot.com/diffs/npm/fastify/4.14.0/4.14.1) |
[![age](https://badges.renovateapi.com/packages/npm/fastify/4.14.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/fastify/4.14.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/fastify/4.14.1/compatibility-slim/4.14.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/fastify/4.14.1/confidence-slim/4.14.0)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [jest](https://jestjs.io/)
([source](https://togithub.com/facebook/jest)) | [`29.4.3` ->
`29.5.0`](https://renovatebot.com/diffs/npm/jest/29.4.3/29.5.0) |
[![age](https://badges.renovateapi.com/packages/npm/jest/29.5.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/jest/29.5.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/jest/29.5.0/compatibility-slim/29.4.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/jest/29.5.0/confidence-slim/29.4.3)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| [jest-environment-jsdom](https://togithub.com/facebook/jest) |
[`29.4.3` ->
`29.5.0`](https://renovatebot.com/diffs/npm/jest-environment-jsdom/29.4.3/29.5.0)
|
[![age](https://badges.renovateapi.com/packages/npm/jest-environment-jsdom/29.5.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/jest-environment-jsdom/29.5.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/jest-environment-jsdom/29.5.0/compatibility-slim/29.4.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/jest-environment-jsdom/29.5.0/confidence-slim/29.4.3)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| [next](https://nextjs.org)
([source](https://togithub.com/vercel/next.js)) | [`13.2.3` ->
`13.2.4`](https://renovatebot.com/diffs/npm/next/13.2.3/13.2.4) |
[![age](https://badges.renovateapi.com/packages/npm/next/13.2.4/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/next/13.2.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/next/13.2.4/compatibility-slim/13.2.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/next/13.2.4/confidence-slim/13.2.3)](https://docs.renovatebot.com/merge-confidence/)
| peerDependencies | patch |
| [next](https://nextjs.org)
([source](https://togithub.com/vercel/next.js)) | [`13.2.3` ->
`13.2.4`](https://renovatebot.com/diffs/npm/next/13.2.3/13.2.4) |
[![age](https://badges.renovateapi.com/packages/npm/next/13.2.4/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/next/13.2.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/next/13.2.4/compatibility-slim/13.2.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/next/13.2.4/confidence-slim/13.2.3)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
| [next](https://nextjs.org)
([source](https://togithub.com/vercel/next.js)) | [`13.2.3` ->
`13.2.4`](https://renovatebot.com/diffs/npm/next/13.2.3/13.2.4) |
[![age](https://badges.renovateapi.com/packages/npm/next/13.2.4/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/next/13.2.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/next/13.2.4/compatibility-slim/13.2.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/next/13.2.4/confidence-slim/13.2.3)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |
| [node](https://togithub.com/nodejs/node) | [`18.14.2` ->
`18.15.0`](https://renovatebot.com/diffs/npm/node/18.14.2/v18.15.0) |
[![age](https://badges.renovateapi.com/packages/github-tags/node/v18.15.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/github-tags/node/v18.15.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/github-tags/node/v18.15.0/compatibility-slim/18.14.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/github-tags/node/v18.15.0/confidence-slim/18.14.2)](https://docs.renovatebot.com/merge-confidence/)
| volta | minor |
| [pkg](https://togithub.com/vercel/pkg) | [`5.8.0` ->
`5.8.1`](https://renovatebot.com/diffs/npm/pkg/5.8.0/5.8.1) |
[![age](https://badges.renovateapi.com/packages/npm/pkg/5.8.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/pkg/5.8.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/pkg/5.8.1/compatibility-slim/5.8.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/pkg/5.8.1/confidence-slim/5.8.0)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
| [pnpm](https://pnpm.io) ([source](https://togithub.com/pnpm/pnpm)) |
[`7.29.0` ->
`7.29.1`](https://renovatebot.com/diffs/npm/pnpm/7.29.0/7.29.1) |
[![age](https://badges.renovateapi.com/packages/npm/pnpm/7.29.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/pnpm/7.29.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/pnpm/7.29.1/compatibility-slim/7.29.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/pnpm/7.29.1/confidence-slim/7.29.0)](https://docs.renovatebot.com/merge-confidence/)
| packageManager | patch |
| [rimraf](https://togithub.com/isaacs/rimraf) | [`4.3.0` ->
`4.4.0`](https://renovatebot.com/diffs/npm/rimraf/4.3.0/4.4.0) |
[![age](https://badges.renovateapi.com/packages/npm/rimraf/4.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/rimraf/4.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/rimraf/4.4.0/compatibility-slim/4.3.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/rimraf/4.4.0/confidence-slim/4.3.0)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| [tsc-alias](https://togithub.com/justkey007/tsc-alias.git)
([source](https://togithub.com/justkey007/tsc-alias)) | [`1.8.2` ->
`1.8.3`](https://renovatebot.com/diffs/npm/tsc-alias/1.8.2/1.8.3) |
[![age](https://badges.renovateapi.com/packages/npm/tsc-alias/1.8.3/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/tsc-alias/1.8.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/tsc-alias/1.8.3/compatibility-slim/1.8.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/tsc-alias/1.8.3/confidence-slim/1.8.2)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | patch |
| [webpack](https://togithub.com/webpack/webpack) | [`5.75.0` ->
`5.76.1`](https://renovatebot.com/diffs/npm/webpack/5.75.0/5.76.1) |
[![age](https://badges.renovateapi.com/packages/npm/webpack/5.76.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/webpack/5.76.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/webpack/5.76.1/compatibility-slim/5.75.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/webpack/5.76.1/confidence-slim/5.75.0)](https://docs.renovatebot.com/merge-confidence/)
| devDependencies | minor |
| [ws](https://togithub.com/websockets/ws) | [`8.12.1` ->
`8.13.0`](https://renovatebot.com/diffs/npm/ws/8.12.1/8.13.0) |
[![age](https://badges.renovateapi.com/packages/npm/ws/8.13.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/ws/8.13.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/ws/8.13.0/compatibility-slim/8.12.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/ws/8.13.0/confidence-slim/8.12.1)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | minor |
| [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod))
| [`3.21.2` ->
`3.21.4`](https://renovatebot.com/diffs/npm/zod/3.21.2/3.21.4) |
[![age](https://badges.renovateapi.com/packages/npm/zod/3.21.4/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/zod/3.21.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/zod/3.21.4/compatibility-slim/3.21.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/zod/3.21.4/confidence-slim/3.21.2)](https://docs.renovatebot.com/merge-confidence/)
| dependencies | patch |

---

### Release Notes

<details>
<summary>codemirror/view</summary>

###
[`v6.9.2`](https://togithub.com/codemirror/view/blob/HEAD/CHANGELOG.md#&#8203;692-2023-03-08)

[Compare
Source](https://togithub.com/codemirror/view/compare/6.9.1...6.9.2)

##### Bug fixes

Work around a Firefox CSS bug that caused cursors to stop blinking in a
scrolled editor.

Fix an issue in `drawSelection` where the selection extended into the
editor's padding.

Fix pasting of links copied from iOS share sheet.

</details>

<details>
<summary>grpc/grpc-node</summary>

###
[`v1.8.12`](https://togithub.com/grpc/grpc-node/releases/tag/%40grpc/grpc-js%401.8.12)

[Compare
Source](https://togithub.com/grpc/grpc-node/compare/@grpc/grpc-js@1.8.11...@grpc/grpc-js@1.8.12)

- Fix an occasional type error when receiving DNS updates
([#&#8203;2380](https://togithub.com/grpc/grpc-node/issues/2380))
- Fix ordering of events when handing requests on the server
([#&#8203;2376](https://togithub.com/grpc/grpc-node/issues/2376)
contributed by [@&#8203;phoenix741](https://togithub.com/phoenix741))

</details>

<details>
<summary>mikro-orm/mikro-orm</summary>

###
[`v5.6.14`](https://togithub.com/mikro-orm/mikro-orm/blob/HEAD/CHANGELOG.md#&#8203;5614-httpsgithubcommikro-ormmikro-ormcomparev5613v5614-2023-03-12)

[Compare
Source](https://togithub.com/mikro-orm/mikro-orm/compare/v5.6.13...v5.6.14)

##### Bug Fixes

- **core:** allow comparing `{}` with `Object.create(null)`
([955895e](https://togithub.com/mikro-orm/mikro-orm/commit/955895ec9b29caf4172852efd3da90cef8d7d0f5)),
closes
[#&#8203;4109](https://togithub.com/mikro-orm/mikro-orm/issues/4109)
- **core:** assigning to reference properties inside embeddables
([ede04e6](https://togithub.com/mikro-orm/mikro-orm/commit/ede04e6d9c77f064268eb94937a64bfd4666e42c)),
closes
[#&#8203;4106](https://togithub.com/mikro-orm/mikro-orm/issues/4106)
- **core:** discover pivot entities automatically when specified by
reference
([3ea4776](https://togithub.com/mikro-orm/mikro-orm/commit/3ea47760faa1bb1092be374105fe85f0ffb2408d))
- **core:** ensure `populate: true` supports nested relations inside M:N
([b42f0f3](https://togithub.com/mikro-orm/mikro-orm/commit/b42f0f3a54cb3e3f7146584caf4d34f200ccc195))
- **core:** extra update on a reference with 1:1 self-reference
([f2fa2bd](https://togithub.com/mikro-orm/mikro-orm/commit/f2fa2bd5c30d70f511009a8cbc20966587be46c5)),
closes
[#&#8203;4121](https://togithub.com/mikro-orm/mikro-orm/issues/4121)
- **core:** fix nested object merging in JSON properties
([694ef28](https://togithub.com/mikro-orm/mikro-orm/commit/694ef281abf970434f42c7b620bfb81b1c794815)),
closes
[#&#8203;4101](https://togithub.com/mikro-orm/mikro-orm/issues/4101)
- **core:** improve handling of complex pivot table entities
([45449c4](https://togithub.com/mikro-orm/mikro-orm/commit/45449c4fd263198fb6220267ab1070a38ca3ef03)),
closes
[#&#8203;4083](https://togithub.com/mikro-orm/mikro-orm/issues/4083)
- **postgres:** use explicit schema in table identifier when altering
comments
([#&#8203;4123](https://togithub.com/mikro-orm/mikro-orm/issues/4123))
([60d96de](https://togithub.com/mikro-orm/mikro-orm/commit/60d96de64de7f01a4d9baab485046c7f7f43ee7c)),
closes
[#&#8203;4108](https://togithub.com/mikro-orm/mikro-orm/issues/4108)
- **query-builder:** ensure inner paginate query selects sub-queries
used in orderBy
([22b7146](https://togithub.com/mikro-orm/mikro-orm/commit/22b7146cae14a3e153ed4d144f18de1fb6b8cc45)),
closes
[#&#8203;4104](https://togithub.com/mikro-orm/mikro-orm/issues/4104)
- **query-builder:** fix update query with auto-join of 1:1 owner
([0a053fe](https://togithub.com/mikro-orm/mikro-orm/commit/0a053fe8854a088be8262291f51697749e89cd05)),
closes
[#&#8203;4122](https://togithub.com/mikro-orm/mikro-orm/issues/4122)

##### Features

- **core:** allow skipping `convertToDatabaseValue` during hydration
([d1ce240](https://togithub.com/mikro-orm/mikro-orm/commit/d1ce2408306a9bdd805077ef1a3f9c561eefe982)),
closes
[#&#8203;4120](https://togithub.com/mikro-orm/mikro-orm/issues/4120)
- **migrations:** add `params` to the `Migration.execute` method
([f280e6d](https://togithub.com/mikro-orm/mikro-orm/commit/f280e6d0d39dcd5a087497c7d533bec79b32f7cb)),
closes
[#&#8203;4099](https://togithub.com/mikro-orm/mikro-orm/issues/4099)

</details>

<details>
<summary>vercel/next.js</summary>

###
[`v13.2.4`](https://togithub.com/vercel/next.js/releases/tag/v13.2.4)

[Compare
Source](https://togithub.com/vercel/next.js/compare/v13.2.3...v13.2.4)

##### Core Changes

- Check if server error already had its message updated:
[#&#8203;46367](https://togithub.com/vercel/next.js/issues/46367)
- \[next/jest] Support path aliases from `tsconfig`/`jsconfig`:
[#&#8203;45815](https://togithub.com/vercel/next.js/issues/45815)
- List unsupported Turbopack config keys:
[#&#8203;46582](https://togithub.com/vercel/next.js/issues/46582)
- Support named exports for server references:
[#&#8203;46558](https://togithub.com/vercel/next.js/issues/46558)
- Fix(typedRoutes): fixed StaticRoutes and DynamicRoutes being empty
causing invalid syntax:
[#&#8203;46620](https://togithub.com/vercel/next.js/issues/46620)
- Fix IntelliSense for generateMetadata:
[#&#8203;46624](https://togithub.com/vercel/next.js/issues/46624)
- Update vendored React packages to next-41110021f:
[#&#8203;46636](https://togithub.com/vercel/next.js/issues/46636)
- Add request callback in Flight client:
[#&#8203;46650](https://togithub.com/vercel/next.js/issues/46650)
- fix: distDir in verifyTypeScriptSetup for nextLint:
[#&#8203;46630](https://togithub.com/vercel/next.js/issues/46630)
- Updates `next/image` eslint message to denote that costs may be
incurred.:
[#&#8203;46640](https://togithub.com/vercel/next.js/issues/46640)
- Ensure default config passes schema checks:
[#&#8203;46656](https://togithub.com/vercel/next.js/issues/46656)
- Use separate workers for webpackBuildWorker:
[#&#8203;46666](https://togithub.com/vercel/next.js/issues/46666)
- Fix static to dynamic on revalidate:
[#&#8203;46668](https://togithub.com/vercel/next.js/issues/46668)
- Fix the Next.js router in Turbopack when there are no middlewares:
[#&#8203;46681](https://togithub.com/vercel/next.js/issues/46681)
- build(cargo): update turbopack:
[#&#8203;46685](https://togithub.com/vercel/next.js/issues/46685)
- Add build worker exit tracking and enable tests:
[#&#8203;46698](https://togithub.com/vercel/next.js/issues/46698)
- Support `force-static` on App Routes:
[#&#8203;46693](https://togithub.com/vercel/next.js/issues/46693)
- Add viewport field userScalable:
[#&#8203;46696](https://togithub.com/vercel/next.js/issues/46696)
- Update static build workers:
[#&#8203;46705](https://togithub.com/vercel/next.js/issues/46705)
- Refactor build context for better plugin state sharing:
[#&#8203;46706](https://togithub.com/vercel/next.js/issues/46706)
- Support multi title for alternates:
[#&#8203;46700](https://togithub.com/vercel/next.js/issues/46700)
- Ensure test-unit includes package unit tests:
[#&#8203;46707](https://togithub.com/vercel/next.js/issues/46707)
- Disallow wildcard export in server entries:
[#&#8203;46710](https://togithub.com/vercel/next.js/issues/46710)
- Add test for router.refresh preserving unaffected segments:
[#&#8203;46687](https://togithub.com/vercel/next.js/issues/46687)
- Failing test for SWC `shakeExports` and JSX:
[#&#8203;35735](https://togithub.com/vercel/next.js/issues/35735)
- Fix originalRequest not available for edge requests:
[#&#8203;46741](https://togithub.com/vercel/next.js/issues/46741)
- Fix require cache conflict between app and pages:
[#&#8203;46736](https://togithub.com/vercel/next.js/issues/46736)
- Fix Web app manifests docs:
[#&#8203;46617](https://togithub.com/vercel/next.js/issues/46617)
- Update client router filter to separate redirects handling:
[#&#8203;46752](https://togithub.com/vercel/next.js/issues/46752)
- Add support for `output: export` config:
[#&#8203;46744](https://togithub.com/vercel/next.js/issues/46744)
- Pass through original matcher source in manifest:
[#&#8203;46753](https://togithub.com/vercel/next.js/issues/46753)
- Use browser navigation when RSC payload fails to fetch:
[#&#8203;46674](https://togithub.com/vercel/next.js/issues/46674)
- Use set to track CSS imports:
[#&#8203;46772](https://togithub.com/vercel/next.js/issues/46772)
- Fix middleware notFound: true handling:
[#&#8203;46759](https://togithub.com/vercel/next.js/issues/46759)
- Only check app/ for no-head-element-rule:
[#&#8203;46773](https://togithub.com/vercel/next.js/issues/46773)
- Fix redundant TS plugin warning:
[#&#8203;46769](https://togithub.com/vercel/next.js/issues/46769)
- Correct server reference manifest in prod build:
[#&#8203;46683](https://togithub.com/vercel/next.js/issues/46683)
- add argon2 to serverComponentsExternalPackages auto-optOut list:
[#&#8203;46779](https://togithub.com/vercel/next.js/issues/46779)
- Refactor SWC transform to support named default export:
[#&#8203;46778](https://togithub.com/vercel/next.js/issues/46778)
- Remove `experimental.runtime` and emit warning when used:
[#&#8203;46631](https://togithub.com/vercel/next.js/issues/46631)
- Fix(typedRoutes): fixed type Route resolving to type any:
[#&#8203;46679](https://togithub.com/vercel/next.js/issues/46679)
- Improve the readability of full page refresh error in dev mode:
[#&#8203;46634](https://togithub.com/vercel/next.js/issues/46634)
- Port error overlay hydration error to pages directory:
[#&#8203;46677](https://togithub.com/vercel/next.js/issues/46677)
- eslint rule for script strategy should work properly in `app/`:
[#&#8203;46609](https://togithub.com/vercel/next.js/issues/46609)
- fix: Add NODE_OPTIONS for debugging in next-dev:
[#&#8203;46757](https://togithub.com/vercel/next.js/issues/46757)

##### Documentation Changes

- Documentation: Update link-no-children error page for new link:
[#&#8203;46514](https://togithub.com/vercel/next.js/issues/46514)
- chore(docs): add snippets for common image loaders:
[#&#8203;46647](https://togithub.com/vercel/next.js/issues/46647)
- Fix the doc on how to use the turbo loader in option-less format:
[#&#8203;46665](https://togithub.com/vercel/next.js/issues/46665)
- Fix custom server error handling in the docs:
[#&#8203;46671](https://togithub.com/vercel/next.js/issues/46671)
- docs: clarified the wording:
[#&#8203;46691](https://togithub.com/vercel/next.js/issues/46691)
- Update script.md:
[#&#8203;46680](https://togithub.com/vercel/next.js/issues/46680)
- next/font refactoring and additional unit tests:
[#&#8203;46731](https://togithub.com/vercel/next.js/issues/46731)

##### Example Changes

- Add [@&#8203;types/mdx](https://togithub.com/types/mdx) to app-dir-mdx
example:
[#&#8203;46523](https://togithub.com/vercel/next.js/issues/46523)

##### Misc Changes

- test(utils): support turbopack-based overlay error text lookup
[#&#8203;46589](https://togithub.com/vercel/next.js/issues/46589)
- chore: improve repo templates:
[#&#8203;46629](https://togithub.com/vercel/next.js/issues/46629)
- Update app-static test page
[#&#8203;46645](https://togithub.com/vercel/next.js/issues/46645)
- test: add preconnect tests and move error tests:
[#&#8203;46652](https://togithub.com/vercel/next.js/issues/46652)
- Refactor and add more tests to next/font/local:
[#&#8203;46627](https://togithub.com/vercel/next.js/issues/46627)
- Add script to automate updating vendored React version:
[#&#8203;46663](https://togithub.com/vercel/next.js/issues/46663)
- Refactor next/font/google and add additional comments:
[#&#8203;46692](https://togithub.com/vercel/next.js/issues/46692)
- Ensure app chunk URLs are encoded properly
[#&#8203;46749](https://togithub.com/vercel/next.js/issues/46749)
- Adjust API route loader
[#&#8203;46726](https://togithub.com/vercel/next.js/issues/46726)
- test: refactor metadata tests to test multi matches easier:
[#&#8203;46746](https://togithub.com/vercel/next.js/issues/46746)
- Support mdx-components file in src directory:
[#&#8203;46763](https://togithub.com/vercel/next.js/issues/46763)
- Fix middleware 404 prefetch case:
[#&#8203;46782](https://togithub.com/vercel/next.js/issues/46782)
- Update view-source.tsx:
[#&#8203;46790](https://togithub.com/vercel/next.js/issues/46790)
- chore: add jsdoc to `output` in next.config.js:
[#&#8203;46804](https://togithub.com/vercel/next.js/issues/46804)
- next/font tests: support Turbopack css module format:
[#&#8203;46658](https://togithub.com/vercel/next.js/issues/46658)
- update dynamic-import.md example:
[#&#8203;46787](https://togithub.com/vercel/next.js/issues/46787)
- Change [@&#8203;next/font](https://togithub.com/next/font) to
next/font in examples:
[#&#8203;46836](https://togithub.com/vercel/next.js/issues/46836)
- Update vendored React:
[#&#8203;46826](https://togithub.com/vercel/next.js/issues/46826)
- Revert "Update vendored React":
[#&#8203;46861](https://togithub.com/vercel/next.js/issues/46861)
- Update fetch cache handling with POST requests:
[#&#8203;46856](https://togithub.com/vercel/next.js/issues/46856)
- Remove extra exports from filter utils:
[#&#8203;46860](https://togithub.com/vercel/next.js/issues/46860)
- test(unit): add cases for cssnano simple:
[#&#8203;46862](https://togithub.com/vercel/next.js/issues/46862)
- Ensure chained middleware rewrites work properly:
[#&#8203;46866](https://togithub.com/vercel/next.js/issues/46866)
- chore: improve PR labeling, fix, sort, add new team member:
[#&#8203;46675](https://togithub.com/vercel/next.js/issues/46675)
- chore: add App Router template to bug report:
[#&#8203;46872](https://togithub.com/vercel/next.js/issues/46872)
- Add a timeout to next/font/google in dev:
[#&#8203;46834](https://togithub.com/vercel/next.js/issues/46834)
- Support unnamed default export expression
[#&#8203;46888](https://togithub.com/vercel/next.js/issues/46888)
- Only run toSource in next/font codemod if there are changes:
[#&#8203;46877](https://togithub.com/vercel/next.js/issues/46877)
- Add more JSDoc to types:
[#&#8203;46897](https://togithub.com/vercel/next.js/issues/46897)
- Fix TS plugin showing warning for error file's `reset` prop:
[#&#8203;46898](https://togithub.com/vercel/next.js/issues/46898)
- Fix conflict dev entry key between app and pages:
[#&#8203;46832](https://togithub.com/vercel/next.js/issues/46832)
- Update app-static e2e test:
[#&#8203;46900](https://togithub.com/vercel/next.js/issues/46900)
- Revert "Revert "Update vendored React"":
[#&#8203;46881](https://togithub.com/vercel/next.js/issues/46881)
- Add retry to the hmr acceptance test:
[#&#8203;46902](https://togithub.com/vercel/next.js/issues/46902)
- Fix `with-jest` and `with-jest-babel` example test snapshot failure:
[#&#8203;46885](https://togithub.com/vercel/next.js/issues/46885)
- Update generateStaticParams handling with fetch cache:
[#&#8203;46906](https://togithub.com/vercel/next.js/issues/46906)
- Fix unexpected hoist meta tags by react in app dir:
[#&#8203;46917](https://togithub.com/vercel/next.js/issues/46917)
- Update turbopack to `230308.1`:
[#&#8203;46909](https://togithub.com/vercel/next.js/issues/46909)
- Support default export expression for variables:
[#&#8203;46896](https://togithub.com/vercel/next.js/issues/46896)
- Reduce the number of hydration error tests:
[#&#8203;46930](https://togithub.com/vercel/next.js/issues/46930)
- Update Turbopack to 230308.3:
[#&#8203;46935](https://togithub.com/vercel/next.js/issues/46935)
- Use https_proxy environment variable in next/font/google:
[#&#8203;46822](https://togithub.com/vercel/next.js/issues/46822)
- Validate `req.url` in renderer:
[#&#8203;46923](https://togithub.com/vercel/next.js/issues/46923)
- Validate the router state header on the server:
[#&#8203;46925](https://togithub.com/vercel/next.js/issues/46925)
- Rename FontLoaderManifest to NextFontManifest and add better comments:
[#&#8203;46922](https://togithub.com/vercel/next.js/issues/46922)
- Revalidate generateStaticParams/Paths in background in dev:
[#&#8203;46940](https://togithub.com/vercel/next.js/issues/46940)
- Support re-exporting unnamed function expression:
[#&#8203;46936](https://togithub.com/vercel/next.js/issues/46936)
- Support static file robots.txt and sitemap.xml as metadata route:
[#&#8203;46963](https://togithub.com/vercel/next.js/issues/46963)
- Update vendored react:
[#&#8203;46970](https://togithub.com/vercel/next.js/issues/46970)
- Move error overlay recovery tests to new file:
[#&#8203;46965](https://togithub.com/vercel/next.js/issues/46965)
- Improve RSC compiler error in external module:
[#&#8203;46953](https://togithub.com/vercel/next.js/issues/46953)
- Update Turbopack to 230309.2:
[#&#8203;46971](https://togithub.com/vercel/next.js/issues/46971)
- Use turbo remote cache for build-native-test:
[#&#8203;46975](https://togithub.com/vercel/next.js/issues/46975)
- Do not re-assign `process.env`:
[#&#8203;46914](https://togithub.com/vercel/next.js/issues/46914)

##### Credits

Huge thanks to [@&#8203;hanneslund](https://togithub.com/hanneslund),
[@&#8203;ijjk](https://togithub.com/ijjk),
[@&#8203;JohnDaly](https://togithub.com/JohnDaly),
[@&#8203;jridgewell](https://togithub.com/jridgewell),
[@&#8203;divslinger](https://togithub.com/divslinger),
[@&#8203;shuding](https://togithub.com/shuding),
[@&#8203;DuCanhGH](https://togithub.com/DuCanhGH),
[@&#8203;balazsorban44](https://togithub.com/balazsorban44),
[@&#8203;acdlite](https://togithub.com/acdlite),
[@&#8203;teobler](https://togithub.com/teobler),
[@&#8203;styfle](https://togithub.com/styfle),
[@&#8203;manovotny](https://togithub.com/manovotny),
[@&#8203;huozhi](https://togithub.com/huozhi),
[@&#8203;smorimoto](https://togithub.com/smorimoto),
[@&#8203;Dannymx](https://togithub.com/Dannymx),
[@&#8203;Janpot](https://togithub.com/Janpot),
[@&#8203;alexkirsz](https://togithub.com/alexkirsz),
[@&#8203;nohr](https://togithub.com/nohr),
[@&#8203;Humboorgir](https://togithub.com/Humboorgir),
[@&#8203;wyattjoh](https://togithub.com/wyattjoh),
[@&#8203;timneutkens](https://togithub.com/timneutkens),
[@&#8203;overlookmotel](https://togithub.com/overlookmotel),
[@&#8203;HaNdTriX](https://togithub.com/HaNdTriX),
[@&#8203;proustibat](https://togithub.com/proustibat),
[@&#8203;fedeya](https://togithub.com/fedeya),
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith),
[@&#8203;irekrog](https://togithub.com/irekrog),
[@&#8203;JanKaifer](https://togithub.com/JanKaifer),
[@&#8203;SukkaW](https://togithub.com/SukkaW),
[@&#8203;rayrw](https://togithub.com/rayrw),
[@&#8203;kdy1](https://togithub.com/kdy1),
[@&#8203;seiry](https://togithub.com/seiry), and
[@&#8203;unflxw](https://togithub.com/unflxw) for helping!

</details>

<details>
<summary>typescript-eslint/typescript-eslint
(@&#8203;typescript-eslint/eslint-plugin)</summary>

###
[`v5.54.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#&#8203;5541-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5540v5541-2023-03-06)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.54.0...v5.54.1)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

</details>

<details>
<summary>typescript-eslint/typescript-eslint
(@&#8203;typescript-eslint/parser)</summary>

###
[`v5.54.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#&#8203;5541-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5540v5541-2023-03-06)

[Compare
Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.54.0...v5.54.1)

**Note:** Version bump only for package
[@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

</details>

<details>
<summary>entropitor/dotenv-cli</summary>

###
[`v7.1.0`](https://togithub.com/entropitor/dotenv-cli/releases/tag/v7.1.0):
Allow --no-expand

[Compare
Source](https://togithub.com/entropitor/dotenv-cli/compare/v7.0.0...v7.1.0)


[https://github.com/entropitor/dotenv-cli/pull/86](https://togithub.com/entropitor/dotenv-cli/pull/86)

</details>

<details>
<summary>eslint/eslint</summary>

### [`v8.36.0`](https://togithub.com/eslint/eslint/releases/tag/v8.36.0)

[Compare
Source](https://togithub.com/eslint/eslint/compare/v8.35.0...v8.36.0)

##### Features

-
[`c89a485`](https://togithub.com/eslint/eslint/commit/c89a485c49450532ee3db74f2638429f1f37d0dd)
feat: Add `checkJSDoc` option to multiline-comment-style
([#&#8203;16807](https://togithub.com/eslint/eslint/issues/16807))
(Laurent Cozic)
-
[`f5f5e11`](https://togithub.com/eslint/eslint/commit/f5f5e11bd5fd3daab9ccae41e270739c836c305e)
feat: Serialize parsers/processors in flat config
([#&#8203;16944](https://togithub.com/eslint/eslint/issues/16944))
(Nicholas C. Zakas)
-
[`4799297`](https://togithub.com/eslint/eslint/commit/4799297ea582c81fd1e5623d32a7ddf7a7f3a126)
feat: use
[@&#8203;eslint-community](https://togithub.com/eslint-community)
dependencies
([#&#8203;16784](https://togithub.com/eslint/eslint/issues/16784))
(Michaël De Boey)

##### Bug Fixes

-
[`92c1943`](https://togithub.com/eslint/eslint/commit/92c1943ba73ea01e87086236e8736539b0eed558)
fix: correctly iterate files matched by glob patterns
([#&#8203;16831](https://togithub.com/eslint/eslint/issues/16831))
(Nitin Kumar)

##### Documentation

-
[`b98fdd4`](https://togithub.com/eslint/eslint/commit/b98fdd413a3b07b262bfce6f704c1c1bb8582770)
docs: Update README (GitHub Actions Bot)
-
[`caf08ce`](https://togithub.com/eslint/eslint/commit/caf08ce0cc74917f7c0eec92d25fd784dc33ac4d)
docs: fix estree link in custom formatters docs
([#&#8203;16967](https://togithub.com/eslint/eslint/issues/16967))
(Milos Djermanovic)
-
[`3398431`](https://togithub.com/eslint/eslint/commit/3398431574b903757bc78b08c8ed36b7b9fce8eb)
docs: Custom Parsers cleanup/expansion
([#&#8203;16887](https://togithub.com/eslint/eslint/issues/16887)) (Ben
Perlmutter)
-
[`19d3531`](https://togithub.com/eslint/eslint/commit/19d3531d9b54e1004318d28f9a6e18305c5bcc18)
docs: Update README (GitHub Actions Bot)
-
[`b09a512`](https://togithub.com/eslint/eslint/commit/b09a512107249a4eb19ef5a37b0bd672266eafdb)
docs: detect and fix broken links
([#&#8203;16837](https://togithub.com/eslint/eslint/issues/16837))
(Nitin Kumar)

##### Chores

-
[`602b111`](https://togithub.com/eslint/eslint/commit/602b11121910a97ab2bc4a95a46dd0ccd0a89309)
chore: upgrade
[@&#8203;eslint/js](https://togithub.com/eslint/js)[@&#8203;8](https://togithub.com/8).36.0
([#&#8203;16978](https://togithub.com/eslint/eslint/issues/16978))
(Milos Djermanovic)
-
[`43c2345`](https://togithub.com/eslint/eslint/commit/43c2345c27024aeab6127e6bbfd55c8b70bd317e)
chore: package.json update for
[@&#8203;eslint/js](https://togithub.com/eslint/js) release (ESLint
Jenkins)
-
[`00afb84`](https://togithub.com/eslint/eslint/commit/00afb84e5039874c8745a45c953fceaf0c71c454)
chore: upgrade
[@&#8203;eslint/eslintrc](https://togithub.com/eslint/eslintrc)[@&#8203;2](https://togithub.com/2).0.1
([#&#8203;16977](https://togithub.com/eslint/eslint/issues/16977))
(Milos Djermanovic)
-
[`698c5aa`](https://togithub.com/eslint/eslint/commit/698c5aad50e628ff00281dbc786e42de79834035)
chore: upgrade espree@9.5.0
([#&#8203;16976](https://togithub.com/eslint/eslint/issues/16976))
(Milos Djermanovic)
-
[`75acdd2`](https://togithub.com/eslint/eslint/commit/75acdd21c5ce7024252e9d41ed77d2f30587caac)
chore: lint more js files in docs
([#&#8203;16964](https://togithub.com/eslint/eslint/issues/16964))
(Milos Djermanovic)
-
[`89d9844`](https://togithub.com/eslint/eslint/commit/89d9844b3151f09b5b21b6eeeda671009ec301e9)
ci: bump actions/add-to-project from 0.4.0 to 0.4.1
([#&#8203;16943](https://togithub.com/eslint/eslint/issues/16943))
(dependabot\[bot])

</details>

<details>
<summary>fastify/fastify</summary>

###
[`v4.14.1`](https://togithub.com/fastify/fastify/releases/tag/v4.14.1)

[Compare
Source](https://togithub.com/fastify/fastify/compare/v4.14.0...v4.14.1)

##### What's Changed

- chore(.gitignore): add bun lockfile by
[@&#8203;Fdawgs](https://togithub.com/Fdawgs) in
[https://github.com/fastify/fastify/pull/4609](https://togithub.com/fastify/fastify/pull/4609)
- docs: consistency fix on note and example for frameworkErrors by
[@&#8203;nadhifikbarw](https://togithub.com/nadhifikbarw) in
[https://github.com/fastify/fastify/pull/4610](https://togithub.com/fastify/fastify/pull/4610)
- fix: onRequestAbort hook request pending by
[@&#8203;Eomm](https://togithub.com/Eomm) in
[https://github.com/fastify/fastify/pull/4611](https://togithub.com/fastify/fastify/pull/4611)
- refactor: cleanup duplicated symbols by
[@&#8203;metcoder95](https://togithub.com/metcoder95) in
[https://github.com/fastify/fastify/pull/4612](https://togithub.com/fastify/fastify/pull/4612)

##### New Contributors

- [@&#8203;nadhifikbarw](https://togithub.com/nadhifikbarw) made their
first contribution in
[https://github.com/fastify/fastify/pull/4610](https://togithub.com/fastify/fastify/pull/4610)

**Full Changelog**:
https://github.com/fastify/fastify/compare/v4.14.0...v4.14.1

</details>

<details>
<summary>facebook/jest</summary>

###
[`v29.5.0`](https://togithub.com/facebook/jest/blob/HEAD/CHANGELOG.md#&#8203;2950)

[Compare
Source](https://togithub.com/facebook/jest/compare/v29.4.3...v29.5.0)

##### Features

- `[jest-changed-files]` Support Sapling
([#&#8203;13941](https://togithub.com/facebook/jest/pull/13941))
- `[jest-circus, @&#8203;jest/cli, jest-config]` Add feature to
randomize order of tests via CLI flag or through the config
file([#&#8203;12922](https://togithub.com/facebook/jest/pull/12922))
- `[jest-cli, jest-config, @&#8203;jest/core, jest-haste-map,
@&#8203;jest/reporters, jest-runner, jest-runtime, @&#8203;jest/types]`
Add `workerThreads` configuration option to allow using [worker
threads](https://nodejs.org/dist/latest/docs/api/worker_threads.html)
for parallelization
([#&#8203;13939](https://togithub.com/facebook/jest/pull/13939))
- `[jest-cli]` Export `yargsOptions`
([#&#8203;13970](https://togithub.com/facebook/jest/pull/13970))
- `[jest-config]` Add `openHandlesTimeout` option to configure possible
open handles warning.
([#&#8203;13875](https://togithub.com/facebook/jest/pull/13875))
- `[@jest/create-cache-key-function]` Allow passing `length` argument to
`createCacheKey()` function and set its default value to `16` on Windows
([#&#8203;13827](https://togithub.com/facebook/jest/pull/13827))
- `[jest-message-util]` Add support for
[AggregateError](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError)
([#&#8203;13946](https://togithub.com/facebook/jest/pull/13946) &
[#&#8203;13947](https://togithub.com/facebook/jest/pull/13947))
- `[jest-message-util]` Add support for [Error
causes](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/cause)
in `test` and `it`
([#&#8203;13935](https://togithub.com/facebook/jest/pull/13935) &
[#&#8203;13966](https://togithub.com/facebook/jest/pull/13966))
- `[jest-reporters]` Add `summaryThreshold` option to summary reporter
to allow overriding the internal threshold that is used to print the
summary of all failed tests when the number of test suites surpasses it
([#&#8203;13895](https://togithub.com/facebook/jest/pull/13895))
- `[jest-runtime]` Expose `@sinonjs/fake-timers` async APIs functions
`advanceTimersByTimeAsync(msToRun)` (`tickAsync(msToRun)`),
`advanceTimersToNextTimerAsync(steps)` (`nextAsync`),
`runAllTimersAsync` (`runAllAsync`), and `runOnlyPendingTimersAsync`
(`runToLastAsync`)
([#&#8203;13981](https://togithub.com/facebook/jest/pull/13981))
- `[jest-runtime, @&#8203;jest/transform]` Allow V8 coverage provider to
collect coverage from files which were not loaded explicitly
([#&#8203;13974](https://togithub.com/facebook/jest/pull/13974))
- `[jest-snapshot]` Add support to `cts` and `mts` TypeScript files to
inline snapshots
([#&#8203;13975](https://togithub.com/facebook/jest/pull/13975))
- `[jest-worker]` Add `start` method to worker farms
([#&#8203;13937](https://togithub.com/facebook/jest/pull/13937))
- `[jest-worker]` Support passing a URL as path to worker
([#&#8203;13982](https://togithub.com/facebook/jest/pull/13982))

##### Fixes

- `[babel-plugin-jest-hoist]` Fix unwanted hoisting of nested `jest`
usages ([#&#8203;13952](https://togithub.com/facebook/jest/pull/13952))
- `[jest-circus]` Send test case results for `todo` tests
([#&#8203;13915](https://togithub.com/facebook/jest/pull/13915))
- `[jest-circus]` Update message printed on test timeout
([#&#8203;13830](https://togithub.com/facebook/jest/pull/13830))
- `[jest-circus]` Avoid creating the word "testfalse" when
`takesDoneCallback` is `false` in the message printed on test timeout
AND updated timeouts test
([#&#8203;13954](https://togithub.com/facebook/jest/pull/13954))
- `[jest-environment-jsdom]` Stop setting `document` to `null` on
teardown
([#&#8203;13972](https://togithub.com/facebook/jest/pull/13972))
- `[@jest/expect-utils]` Update `toStrictEqual()` to be able to check
`jest.fn().mock.calls`
([#&#8203;13960](https://togithub.com/facebook/jest/pull/13960))
- `[@jest/test-result]` Allow `TestResultsProcessor` type to return a
Promise ([#&#8203;13950](https://togithub.com/facebook/jest/pull/13950))

##### Chore & Maintenance

- `[jest-snapshot]` Remove dependency on `jest-haste-map`
([#&#8203;13977](https://togithub.com/facebook/jest/pull/13977))

</details>

<details>
<summary>nodejs/node</summary>

###
[`v18.15.0`](https://togithub.com/nodejs/node/releases/tag/v18.15.0):
2023-03-07, Version 18.15.0 &#x27;Hydrogen&#x27; (LTS),
@&#8203;BethGriggs prepared by @&#8203;juanarbol

[Compare
Source](https://togithub.com/nodejs/node/compare/v18.14.2...v18.15.0)

##### Notable Changes

- \[[`63563f8a7a`](https://togithub.com/nodejs/node/commit/63563f8a7a)]
- **doc,lib,src,test**: rename --test-coverage (Colin Ihrig)
[#&#8203;46017](https://togithub.com/nodejs/node/pull/46017)
- \[[`28a775b32f`](https://togithub.com/nodejs/node/commit/28a775b32f)]
- **test_runner**: add initial code coverage support (Colin Ihrig)
[#&#8203;46017](https://togithub.com/nodejs/node/pull/46017)
- \[[`4d50db14b3`](https://togithub.com/nodejs/node/commit/4d50db14b3)]
- **(SEMVER-MINOR)** **test_runner**: add reporters (Moshe Atlow)
[#&#8203;45712](https://togithub.com/nodejs/node/pull/45712)
- \[[`643545ab79`](https://togithub.com/nodejs/node/commit/643545ab79)]
- **(SEMVER-MINOR)** **fs**: add statfs() functions (Colin Ihrig)
[#&#8203;46358](https://togithub.com/nodejs/node/pull/46358)
- \[[`110ead9abb`](https://togithub.com/nodejs/node/commit/110ead9abb)]
- **(SEMVER-MINOR)** **vm**: expose cachedDataRejected for
vm.compileFunction (Anna Henningsen)
[#&#8203;46320](https://togithub.com/nodejs/node/pull/46320)
- \[[`02632b42cf`](https://togithub.com/nodejs/node/commit/02632b42cf)]
- **(SEMVER-MINOR)** **v8**: support gc profile (theanarkh)
[#&#8203;46255](https://togithub.com/nodejs/node/pull/46255)
- \[[`f09b838408`](https://togithub.com/nodejs/node/commit/f09b838408)]
- **(SEMVER-MINOR)** **src,lib**: add constrainedMemory API for process
(theanarkh) [#&#8203;46218](https://togithub.com/nodejs/node/pull/46218)
- \[[`cb5bb12422`](https://togithub.com/nodejs/node/commit/cb5bb12422)]
- **(SEMVER-MINOR)** **buffer**: add isAscii method (Yagiz Nizipli)
[#&#8203;46046](https://togithub.com/nodejs/node/pull/46046)

##### Commits

- \[[`6f91c8e2ae`](https://togithub.com/nodejs/node/commit/6f91c8e2ae)]
- **benchmark**: add trailing commas (Antoine du Hamel)
[#&#8203;46370](https://togithub.com/nodejs/node/pull/46370)
- \[[`d0b9be21eb`](https://togithub.com/nodejs/node/commit/d0b9be21eb)]
- **benchmark**: remove buffer benchmarks redundancy (Brian White)
[#&#8203;45735](https://togithub.com/nodejs/node/pull/45735)
- \[[`6468f30d0d`](https://togithub.com/nodejs/node/commit/6468f30d0d)]
- **benchmark**: introduce benchmark combination filtering (Brian White)
[#&#8203;45735](https://togithub.com/nodejs/node/pull/45735)
- \[[`cb5bb12422`](https://togithub.com/nodejs/node/commit/cb5bb12422)]
- **(SEMVER-MINOR)** **buffer**: add isAscii method (Yagiz Nizipli)
[#&#8203;46046](https://togithub.com/nodejs/node/pull/46046)
- \[[`ec61bb04c0`](https://togithub.com/nodejs/node/commit/ec61bb04c0)]
- **build**: export more OpenSSL symbols on Windows (Mohamed Akram)
[#&#8203;45486](https://togithub.com/nodejs/node/pull/45486)
- \[[`7bae4333ce`](https://togithub.com/nodejs/node/commit/7bae4333ce)]
- **build**: fix MSVC 2022 Release compilation (Vladimir Morozov
(REDMOND)) [#&#8203;46228](https://togithub.com/nodejs/node/pull/46228)
- \[[`0f5f2d4470`](https://togithub.com/nodejs/node/commit/0f5f2d4470)]
- **crypto**: include `hmac.h` in `crypto_util.h` (Adam Langley)
[#&#8203;46279](https://togithub.com/nodejs/node/pull/46279)
- \[[`91ece4161b`](https://togithub.com/nodejs/node/commit/91ece4161b)]
- **crypto**: avoid hang when no algorithm available (Richard Lau)
[#&#8203;46237](https://togithub.com/nodejs/node/pull/46237)
- \[[`492fc95bdf`](https://togithub.com/nodejs/node/commit/492fc95bdf)]
- **deps**: V8: cherry-pick
[`90be99f`](https://togithub.com/nodejs/node/commit/90be99fab31c)
(Michaël Zasso)
[#&#8203;46646](https://togithub.com/nodejs/node/pull/46646)
- \[[`732c77e3d9`](https://togithub.com/nodejs/node/commit/732c77e3d9)]
- **deps**: update acorn to 8.8.2 (Node.js GitHub Bot)
[#&#8203;46363](https://togithub.com/nodejs/node/pull/46363)
- \[[`8582f99ffb`](https://togithub.com/nodejs/node/commit/8582f99ffb)]
- **deps**: update to uvwasi 0.0.15 (Colin Ihrig)
[#&#8203;46253](https://togithub.com/nodejs/node/pull/46253)
- \[[`5453cd9940`](https://togithub.com/nodejs/node/commit/5453cd9940)]
- **deps**: V8: cherry-pick
[`bf0bd48`](https://togithub.com/nodejs/node/commit/bf0bd4868dde)
(Michaël Zasso)
[#&#8203;45908](https://togithub.com/nodejs/node/pull/45908)
- \[[`3ea53c5dc8`](https://togithub.com/nodejs/node/commit/3ea53c5dc8)]
- **deps**: V8: cherry-pick
[`c875e86`](https://togithub.com/nodejs/node/commit/c875e86df1d7)
(sepehrst) [#&#8203;46501](https://togithub.com/nodejs/node/pull/46501)
- \[[`c04808de4b`](https://togithub.com/nodejs/node/commit/c04808de4b)]
- **doc**: correct the `sed` command for macOS in release process docs
(Juan José) [#&#8203;46397](https://togithub.com/nodejs/node/pull/46397)
- \[[`8113220690`](https://togithub.com/nodejs/node/commit/8113220690)]
- **doc**: pass string to `textEncoder.encode` as input (Deokjin Kim)
[#&#8203;46421](https://togithub.com/nodejs/node/pull/46421)
- \[[`129dccf5d2`](https://togithub.com/nodejs/node/commit/129dccf5d2)]
- **doc**: add tip for session.post function (theanarkh)
[#&#8203;46354](https://togithub.com/nodejs/node/pull/46354)
- \[[`919e581732`](https://togithub.com/nodejs/node/commit/919e581732)]
- **doc**: add documentation for socket.destroySoon() (Luigi Pinca)
[#&#8203;46337](https://togithub.com/nodejs/node/pull/46337)
- \[[`fc15ac95a5`](https://togithub.com/nodejs/node/commit/fc15ac95a5)]
- **doc**: fix commit message using test instead of deps (Tony Gorez)
[#&#8203;46313](https://togithub.com/nod

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - At
any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

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

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/PKUHPC/SCOW).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNjAuMCIsInVwZGF0ZWRJblZlciI6IjM0LjE2MC4wIn0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Copy link

github-actions bot commented Mar 7, 2024

This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Mar 7, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants