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

docs(client-aborted): remove deprecated function #4898

Merged
merged 1 commit into from Jul 14, 2023

Conversation

JekRock
Copy link
Contributor

@JekRock JekRock commented Jul 13, 2023

request.aborted has been deprecated since node 16.
It seems like request.destroyed should be used instead

Checklist

[request.aborted](https://nodejs.org/docs/latest-v16.x/api/http.html#requestaborted)
has been deprecated since node 16.
It seems like [request.destroyed](https://nodejs.org/docs/latest-v16.x/api/http.html#requestdestroyed)
should be used instead
@github-actions github-actions bot added the documentation Improvements or additions to documentation label Jul 13, 2023
@metcoder95 metcoder95 changed the title update client aborted detection guide docs: Update client aborted detection guide Jul 13, 2023
Copy link
Member

@metcoder95 metcoder95 left a comment

Choose a reason for hiding this comment

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

Thanks for the contribution!

Although this is valid, I'm not so sure if we should make such a change to the documentation, as fastify can support v14 range as well.
Maybe we can document its alternative depending on the version instead?

cc: @mcollina @Fdawgs

@JekRock
Copy link
Contributor Author

JekRock commented Jul 13, 2023

@metcoder95 that makes sense. Thank you for the recommendation!

I'll update the page accordingly tomorrow.

@Fdawgs Fdawgs changed the title docs: Update client aborted detection guide docs(client-aborted): remove deprecated function Jul 14, 2023
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 , this is ok

Copy link
Member

@metcoder95 metcoder95 left a comment

Choose a reason for hiding this comment

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

@metcoder95 that makes sense. Thank you for the recommendation!

Thanks for the understanding, but as highlighted by @mcollina, this looks good as is 🙂

@Fdawgs Fdawgs merged commit cc347d7 into fastify:main Jul 14, 2023
4 checks passed
@@ -55,7 +55,7 @@ const app = Fastify({

app.addHook('onRequest', async (request, reply) => {
request.raw.on('close', () => {
if (request.raw.aborted) {
if (request.raw.destroyed) {
Copy link
Member

Choose a reason for hiding this comment

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

I bit late for the comment, but destroyed is not identical to aborted.
destoryed should always true when calling request.destroy(). However, it doesn't indicate the request is aborted (meaning readableEnded is not true or complete is not true.)

https://github.com/nodejs/node/blob/f9737b1b8c96e43cedfff764634524df62cf3109/lib/_http_incoming.js#L222-225

Copy link
Member

Choose a reason for hiding this comment

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

It seems is deprecated but still we use it for the onRequestAbort hook (ref)

Maybe we should change the docs to onRequestAbort as best-effort?

Copy link
Member

Choose a reason for hiding this comment

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

It seems is deprecated but still we use it for the onRequestAbort hook

Yes, it is deprecated and we are still using.
But I assume it would never been able to remove.

Maybe we should change the docs to onRequestAbort as best-effort?

The guide is explaining request abort in detail. I would keep it since the function is reference this document for further explanation.

climba03003 added a commit that referenced this pull request Jul 14, 2023
renovate bot added a commit to tomacheese/telcheck that referenced this pull request Jul 17, 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 |
|---|---|---|---|---|---|
| [fastify](https://www.fastify.io/)
([source](https://togithub.com/fastify/fastify)) | [`4.19.2` ->
`4.20.0`](https://renovatebot.com/diffs/npm/fastify/4.19.2/4.20.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/fastify/4.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/fastify/4.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/fastify/4.19.2/4.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/fastify/4.19.2/4.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>fastify/fastify (fastify)</summary>

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

[Compare
Source](https://togithub.com/fastify/fastify/compare/v4.19.2...v4.20.0)

#### What's Changed

- build(deps-dev): Bump
[@&#8203;sinclair/typebox](https://togithub.com/sinclair/typebox) from
0.28.20 to 0.29.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[fastify/fastify#4877
- Update Prototype-Poisoning.md by
[@&#8203;ed-henrique](https://togithub.com/ed-henrique) in
[fastify/fastify#4879
- docs: adjust line for linter by
[@&#8203;metcoder95](https://togithub.com/metcoder95) in
[fastify/fastify#4882
- Fixed type inference on .code().send() by
[@&#8203;aadito123](https://togithub.com/aadito123) in
[fastify/fastify#4880
- chore: refactor Error-typings and tests by
[@&#8203;svrnwnsch](https://togithub.com/svrnwnsch) in
[fastify/fastify#4824
- test: add missing assertion for a test by
[@&#8203;kibertoad](https://togithub.com/kibertoad) in
[fastify/fastify#4701
- chore: tests for genReqIdFactory and minor changes by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4783
- Added type definition for allowUnsafeRegex by
[@&#8203;xijdk](https://togithub.com/xijdk) in
[fastify/fastify#4792
- docs(security): update policy on ci/cd reports by
[@&#8203;jsumners](https://togithub.com/jsumners) in
[fastify/fastify#4890
- improve hooks.validate by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4804
- ci: enable caching; split jobs by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4889
- docs(plugins): note side-effect when using `await` in
`fastify.register()` by
[@&#8203;hateablestream](https://togithub.com/hateablestream) in
[fastify/fastify#4846
- \[hooks] Refine hook runners by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4805
- docs: fix wrong header size for FST_ERR_ASYNC_CONSTRAINT in Errors.md
by [@&#8203;graphiteisaac](https://togithub.com/graphiteisaac) in
[fastify/fastify#4893
- fix: rework FastifyErrors, ensure documentation completeness by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4892
- feat: add childLoggerFactory config by
[@&#8203;brettwillis](https://togithub.com/brettwillis) in
[fastify/fastify#4760
- Fix setNotFoundHandler handler type by
[@&#8203;Ethan-Arrowood](https://togithub.com/Ethan-Arrowood) in
[fastify/fastify#4897
- restore code coverage by
[@&#8203;mcollina](https://togithub.com/mcollina) in
[fastify/fastify#4841
- fix: handle abort signal before server is ready by
[@&#8203;shayff](https://togithub.com/shayff) in
[fastify/fastify#4886
- docs(client-aborted): remove deprecated function by
[@&#8203;JekRock](https://togithub.com/JekRock) in
[fastify/fastify#4898
- Revert "docs(client-aborted): remove deprecated function
([#&#8203;4898](https://togithub.com/fastify/fastify/issues/4898))" by
[@&#8203;climba03003](https://togithub.com/climba03003) in
[fastify/fastify#4901
- docs(logging): fix typo by
[@&#8203;yamanidev](https://togithub.com/yamanidev) in
[fastify/fastify#4905
- Support IPv6 ::1 in listeningOrigin by
[@&#8203;mcollina](https://togithub.com/mcollina) in
[fastify/fastify#4902
- fix: extend isCustomValidatorCompiler from parent controller by
[@&#8203;tinchoz49](https://togithub.com/tinchoz49) in
[fastify/fastify#4903
- fix: allow uppercase requestdHeader by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4906

#### New Contributors

- [@&#8203;ed-henrique](https://togithub.com/ed-henrique) made their
first contribution in
[fastify/fastify#4879
- [@&#8203;svrnwnsch](https://togithub.com/svrnwnsch) made their first
contribution in
[fastify/fastify#4824
- [@&#8203;xijdk](https://togithub.com/xijdk) made their first
contribution in
[fastify/fastify#4792
- [@&#8203;hateablestream](https://togithub.com/hateablestream) made
their first contribution in
[fastify/fastify#4846
- [@&#8203;graphiteisaac](https://togithub.com/graphiteisaac) made their
first contribution in
[fastify/fastify#4893
- [@&#8203;shayff](https://togithub.com/shayff) made their first
contribution in
[fastify/fastify#4886
- [@&#8203;JekRock](https://togithub.com/JekRock) made their first
contribution in
[fastify/fastify#4898
- [@&#8203;yamanidev](https://togithub.com/yamanidev) made their first
contribution in
[fastify/fastify#4905
- [@&#8203;tinchoz49](https://togithub.com/tinchoz49) made their first
contribution in
[fastify/fastify#4903

**Full Changelog**:
fastify/fastify@v4.19.2...v4.20.0

</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 this update
again.

---

- [ ] <!-- 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://developer.mend.io/github/tomacheese/telcheck).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44LjExIiwidXBkYXRlZEluVmVyIjoiMzYuOC4xMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to redwoodjs/redwood that referenced this pull request Jul 18, 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 |
|---|---|---|---|---|---|
| [fastify](https://www.fastify.io/)
([source](https://togithub.com/fastify/fastify)) | [`4.19.2` ->
`4.20.0`](https://renovatebot.com/diffs/npm/fastify/4.19.2/4.20.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/fastify/4.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/fastify/4.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/fastify/4.19.2/4.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/fastify/4.19.2/4.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>fastify/fastify (fastify)</summary>

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

[Compare
Source](https://togithub.com/fastify/fastify/compare/v4.19.2...v4.20.0)

#### What's Changed

- build(deps-dev): Bump
[@&#8203;sinclair/typebox](https://togithub.com/sinclair/typebox) from
0.28.20 to 0.29.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[fastify/fastify#4877
- Update Prototype-Poisoning.md by
[@&#8203;ed-henrique](https://togithub.com/ed-henrique) in
[fastify/fastify#4879
- docs: adjust line for linter by
[@&#8203;metcoder95](https://togithub.com/metcoder95) in
[fastify/fastify#4882
- Fixed type inference on .code().send() by
[@&#8203;aadito123](https://togithub.com/aadito123) in
[fastify/fastify#4880
- chore: refactor Error-typings and tests by
[@&#8203;svrnwnsch](https://togithub.com/svrnwnsch) in
[fastify/fastify#4824
- test: add missing assertion for a test by
[@&#8203;kibertoad](https://togithub.com/kibertoad) in
[fastify/fastify#4701
- chore: tests for genReqIdFactory and minor changes by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4783
- Added type definition for allowUnsafeRegex by
[@&#8203;xijdk](https://togithub.com/xijdk) in
[fastify/fastify#4792
- docs(security): update policy on ci/cd reports by
[@&#8203;jsumners](https://togithub.com/jsumners) in
[fastify/fastify#4890
- improve hooks.validate by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4804
- ci: enable caching; split jobs by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4889
- docs(plugins): note side-effect when using `await` in
`fastify.register()` by
[@&#8203;hateablestream](https://togithub.com/hateablestream) in
[fastify/fastify#4846
- \[hooks] Refine hook runners by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4805
- docs: fix wrong header size for FST_ERR_ASYNC_CONSTRAINT in Errors.md
by [@&#8203;graphiteisaac](https://togithub.com/graphiteisaac) in
[fastify/fastify#4893
- fix: rework FastifyErrors, ensure documentation completeness by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4892
- feat: add childLoggerFactory config by
[@&#8203;brettwillis](https://togithub.com/brettwillis) in
[fastify/fastify#4760
- Fix setNotFoundHandler handler type by
[@&#8203;Ethan-Arrowood](https://togithub.com/Ethan-Arrowood) in
[fastify/fastify#4897
- restore code coverage by
[@&#8203;mcollina](https://togithub.com/mcollina) in
[fastify/fastify#4841
- fix: handle abort signal before server is ready by
[@&#8203;shayff](https://togithub.com/shayff) in
[fastify/fastify#4886
- docs(client-aborted): remove deprecated function by
[@&#8203;JekRock](https://togithub.com/JekRock) in
[fastify/fastify#4898
- Revert "docs(client-aborted): remove deprecated function
([#&#8203;4898](https://togithub.com/fastify/fastify/issues/4898))" by
[@&#8203;climba03003](https://togithub.com/climba03003) in
[fastify/fastify#4901
- docs(logging): fix typo by
[@&#8203;yamanidev](https://togithub.com/yamanidev) in
[fastify/fastify#4905
- Support IPv6 ::1 in listeningOrigin by
[@&#8203;mcollina](https://togithub.com/mcollina) in
[fastify/fastify#4902
- fix: extend isCustomValidatorCompiler from parent controller by
[@&#8203;tinchoz49](https://togithub.com/tinchoz49) in
[fastify/fastify#4903
- fix: allow uppercase requestdHeader by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4906

#### New Contributors

- [@&#8203;ed-henrique](https://togithub.com/ed-henrique) made their
first contribution in
[fastify/fastify#4879
- [@&#8203;svrnwnsch](https://togithub.com/svrnwnsch) made their first
contribution in
[fastify/fastify#4824
- [@&#8203;xijdk](https://togithub.com/xijdk) made their first
contribution in
[fastify/fastify#4792
- [@&#8203;hateablestream](https://togithub.com/hateablestream) made
their first contribution in
[fastify/fastify#4846
- [@&#8203;graphiteisaac](https://togithub.com/graphiteisaac) made their
first contribution in
[fastify/fastify#4893
- [@&#8203;shayff](https://togithub.com/shayff) made their first
contribution in
[fastify/fastify#4886
- [@&#8203;JekRock](https://togithub.com/JekRock) made their first
contribution in
[fastify/fastify#4898
- [@&#8203;yamanidev](https://togithub.com/yamanidev) made their first
contribution in
[fastify/fastify#4905
- [@&#8203;tinchoz49](https://togithub.com/tinchoz49) made their first
contribution in
[fastify/fastify#4903

**Full Changelog**:
fastify/fastify@v4.19.2...v4.20.0

</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 this update
again.

---

- [ ] <!-- 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://developer.mend.io/github/redwoodjs/redwood).

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
jtoar pushed a commit to redwoodjs/redwood that referenced this pull request Jul 19, 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 |
|---|---|---|---|---|---|
| [fastify](https://www.fastify.io/)
([source](https://togithub.com/fastify/fastify)) | [`4.19.2` ->
`4.20.0`](https://renovatebot.com/diffs/npm/fastify/4.19.2/4.20.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/fastify/4.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/fastify/4.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/fastify/4.19.2/4.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/fastify/4.19.2/4.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>fastify/fastify (fastify)</summary>

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

[Compare
Source](https://togithub.com/fastify/fastify/compare/v4.19.2...v4.20.0)

#### What's Changed

- build(deps-dev): Bump
[@&#8203;sinclair/typebox](https://togithub.com/sinclair/typebox) from
0.28.20 to 0.29.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[fastify/fastify#4877
- Update Prototype-Poisoning.md by
[@&#8203;ed-henrique](https://togithub.com/ed-henrique) in
[fastify/fastify#4879
- docs: adjust line for linter by
[@&#8203;metcoder95](https://togithub.com/metcoder95) in
[fastify/fastify#4882
- Fixed type inference on .code().send() by
[@&#8203;aadito123](https://togithub.com/aadito123) in
[fastify/fastify#4880
- chore: refactor Error-typings and tests by
[@&#8203;svrnwnsch](https://togithub.com/svrnwnsch) in
[fastify/fastify#4824
- test: add missing assertion for a test by
[@&#8203;kibertoad](https://togithub.com/kibertoad) in
[fastify/fastify#4701
- chore: tests for genReqIdFactory and minor changes by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4783
- Added type definition for allowUnsafeRegex by
[@&#8203;xijdk](https://togithub.com/xijdk) in
[fastify/fastify#4792
- docs(security): update policy on ci/cd reports by
[@&#8203;jsumners](https://togithub.com/jsumners) in
[fastify/fastify#4890
- improve hooks.validate by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4804
- ci: enable caching; split jobs by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4889
- docs(plugins): note side-effect when using `await` in
`fastify.register()` by
[@&#8203;hateablestream](https://togithub.com/hateablestream) in
[fastify/fastify#4846
- \[hooks] Refine hook runners by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4805
- docs: fix wrong header size for FST_ERR_ASYNC_CONSTRAINT in Errors.md
by [@&#8203;graphiteisaac](https://togithub.com/graphiteisaac) in
[fastify/fastify#4893
- fix: rework FastifyErrors, ensure documentation completeness by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4892
- feat: add childLoggerFactory config by
[@&#8203;brettwillis](https://togithub.com/brettwillis) in
[fastify/fastify#4760
- Fix setNotFoundHandler handler type by
[@&#8203;Ethan-Arrowood](https://togithub.com/Ethan-Arrowood) in
[fastify/fastify#4897
- restore code coverage by
[@&#8203;mcollina](https://togithub.com/mcollina) in
[fastify/fastify#4841
- fix: handle abort signal before server is ready by
[@&#8203;shayff](https://togithub.com/shayff) in
[fastify/fastify#4886
- docs(client-aborted): remove deprecated function by
[@&#8203;JekRock](https://togithub.com/JekRock) in
[fastify/fastify#4898
- Revert "docs(client-aborted): remove deprecated function
([#&#8203;4898](https://togithub.com/fastify/fastify/issues/4898))" by
[@&#8203;climba03003](https://togithub.com/climba03003) in
[fastify/fastify#4901
- docs(logging): fix typo by
[@&#8203;yamanidev](https://togithub.com/yamanidev) in
[fastify/fastify#4905
- Support IPv6 ::1 in listeningOrigin by
[@&#8203;mcollina](https://togithub.com/mcollina) in
[fastify/fastify#4902
- fix: extend isCustomValidatorCompiler from parent controller by
[@&#8203;tinchoz49](https://togithub.com/tinchoz49) in
[fastify/fastify#4903
- fix: allow uppercase requestdHeader by
[@&#8203;Uzlopak](https://togithub.com/Uzlopak) in
[fastify/fastify#4906

#### New Contributors

- [@&#8203;ed-henrique](https://togithub.com/ed-henrique) made their
first contribution in
[fastify/fastify#4879
- [@&#8203;svrnwnsch](https://togithub.com/svrnwnsch) made their first
contribution in
[fastify/fastify#4824
- [@&#8203;xijdk](https://togithub.com/xijdk) made their first
contribution in
[fastify/fastify#4792
- [@&#8203;hateablestream](https://togithub.com/hateablestream) made
their first contribution in
[fastify/fastify#4846
- [@&#8203;graphiteisaac](https://togithub.com/graphiteisaac) made their
first contribution in
[fastify/fastify#4893
- [@&#8203;shayff](https://togithub.com/shayff) made their first
contribution in
[fastify/fastify#4886
- [@&#8203;JekRock](https://togithub.com/JekRock) made their first
contribution in
[fastify/fastify#4898
- [@&#8203;yamanidev](https://togithub.com/yamanidev) made their first
contribution in
[fastify/fastify#4905
- [@&#8203;tinchoz49](https://togithub.com/tinchoz49) made their first
contribution in
[fastify/fastify#4903

**Full Changelog**:
fastify/fastify@v4.19.2...v4.20.0

</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 this update
again.

---

- [ ] <!-- 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://developer.mend.io/github/redwoodjs/redwood).

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants