Skip to content

fix(async-hooks): mixing async and callback style in preHandler option now returns an error#5069

Merged
Eomm merged 11 commits into
fastify:mainfrom
giuliowaitforitdavide:fix/#5068
Oct 3, 2023
Merged

fix(async-hooks): mixing async and callback style in preHandler option now returns an error#5069
Eomm merged 11 commits into
fastify:mainfrom
giuliowaitforitdavide:fix/#5068

Conversation

@giuliowaitforitdavide

Copy link
Copy Markdown
Contributor

Closes #5068

Checklist

@giuliowaitforitdavide

giuliowaitforitdavide commented Oct 2, 2023

Copy link
Copy Markdown
Contributor Author

@Eomm the main thing I did was to add this check besides the already present checks. What do you think about adding them all inside the route.js too? Would it be more complete and less error prone?

@mcollina mcollina left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

lgtm

Comment thread lib/route.js Outdated
throw new FST_ERR_HOOK_INVALID_HANDLER(hook, Object.prototype.toString.call(func))
}

if (func.constructor.name === 'AsyncFunction' && func.length === 3) {

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

not all hooks have the same parameters:

'onTimeout' - 3
'onRequest' - 3
'preParsing' - 4
'preValidation' - 3
'preSerialization' - 4
'preHandler' - 3
'onSend' - 4
'onResponse' - 3
'onError' - 4
'onRequestAbort - 2

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

Following your suggestion and the check done here I came up with a small refactor. Do you think it's worth it or should I revert it?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

it does make sense 👍🏼
but I think we should not rewrite too much the code as the additional functions and datastructure may slowdown the start time

Comment thread test/hooks-async.test.js Outdated
…hanged following already present validation and @Eomm suggestions
Comment thread lib/validation.js Outdated
Comment thread lib/validation.js Outdated
Co-authored-by: James Sumners <321201+jsumners@users.noreply.github.com>
@giuliowaitforitdavide

giuliowaitforitdavide commented Oct 2, 2023

Copy link
Copy Markdown
Contributor Author

I need your help: I don't understand why the pipeline is failing

@jsumners

jsumners commented Oct 2, 2023

Copy link
Copy Markdown
Member

I need your help: I don't understand why the pipeline is failing

Review https://github.com/fastify/fastify/actions/runs/6381041796/job/17316704069?pr=5069

Comment thread lib/validation.js Outdated
})
}

function validateAsyncHooks (name, fn) {

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

I would keep the old code.
It may seem ugly, but it is fast and with a low memory footprint

https://backend.cafe/the-secrets-behind-high-performance-with-nodejs#heading-silly-code-is-not-so-silly

@Eomm Eomm added the bugfix Issue or PR that should land as semver patch label Oct 2, 2023
@mcollina

mcollina commented Oct 3, 2023

Copy link
Copy Markdown
Member

cc @Eomm

@Uzlopak

Uzlopak commented Oct 3, 2023

Copy link
Copy Markdown
Contributor

We actually should consider exporting the information regarding the available hooks(preSerializer, onReady...), their type(application hook or LifecycleHook) and their argument count, and maybe if they have payload.

We had so many times the issue, that we implemented in plugins code which needed this info.

@Eomm Eomm merged commit 16859bb into fastify:main Oct 3, 2023
@Eomm

Eomm commented Oct 3, 2023

Copy link
Copy Markdown
Member

We had so many times the issue, that we implemented in plugins code which needed this info.

I'm still PRO to this - will open a issue for that

@giuliowaitforitdavide giuliowaitforitdavide deleted the fix/#5068 branch October 3, 2023 15:07
renovate Bot referenced this pull request in tomacheese/telcheck Oct 11, 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.dev/)
([source](https://togithub.com/fastify/fastify)) | [`4.23.2` ->
`4.24.0`](https://renovatebot.com/diffs/npm/fastify/4.23.2/4.24.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/fastify/4.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/fastify/4.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/fastify/4.23.2/4.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/fastify/4.23.2/4.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

[Compare
Source](https://togithub.com/fastify/fastify/compare/v4.23.2...v4.24.0)

#### What's Changed

- docs: Add blank line before onclose hook heading by
[@&#8203;kadoshita](https://togithub.com/kadoshita) in
[https://github.com/fastify/fastify/pull/5042](https://togithub.com/fastify/fastify/pull/5042)
- build(dependabot): ignore tap major updates by
[@&#8203;Fdawgs](https://togithub.com/Fdawgs) in
[https://github.com/fastify/fastify/pull/5047](https://togithub.com/fastify/fastify/pull/5047)
- chore: Bump actions/checkout from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/fastify/fastify/pull/5048](https://togithub.com/fastify/fastify/pull/5048)
- chore: more perf by [@&#8203;Eomm](https://togithub.com/Eomm) in
[https://github.com/fastify/fastify/pull/5016](https://togithub.com/fastify/fastify/pull/5016)
- docs(ecosystem): add fastify-prisma by
[@&#8203;zrosenbauer](https://togithub.com/zrosenbauer) in
[https://github.com/fastify/fastify/pull/5041](https://togithub.com/fastify/fastify/pull/5041)
- test: fix ci due yup breaking by
[@&#8203;Eomm](https://togithub.com/Eomm) in
[https://github.com/fastify/fastify/pull/5058](https://togithub.com/fastify/fastify/pull/5058)
- perf: optimize split params by
[@&#8203;Connormiha](https://togithub.com/Connormiha) in
[https://github.com/fastify/fastify/pull/5057](https://togithub.com/fastify/fastify/pull/5057)
- chore: implicitly infer SchemaCompiler as readonly by
[@&#8203;DemonHa](https://togithub.com/DemonHa) in
[https://github.com/fastify/fastify/pull/5060](https://togithub.com/fastify/fastify/pull/5060)
- test(logger): splitting existing tests to avoid pipeline failing for
timeout by
[@&#8203;giuliowaitforitdavide](https://togithub.com/giuliowaitforitdavide)
in
[https://github.com/fastify/fastify/pull/5064](https://togithub.com/fastify/fastify/pull/5064)
- fix(async-hooks): mixing async and callback style in preHandler option
now returns an error by
[@&#8203;giuliowaitforitdavide](https://togithub.com/giuliowaitforitdavide)
in
[https://github.com/fastify/fastify/pull/5069](https://togithub.com/fastify/fastify/pull/5069)
- fix: enhance 100 and 200 or 204 handling by
[@&#8203;Iamshankhadeep](https://togithub.com/Iamshankhadeep) in
[https://github.com/fastify/fastify/pull/5056](https://togithub.com/fastify/fastify/pull/5056)
- docs: add fastify-cloudflare-turnstile to ecosystem by
[@&#8203;112RG](https://togithub.com/112RG) in
[https://github.com/fastify/fastify/pull/5067](https://togithub.com/fastify/fastify/pull/5067)
- docs: Fixing a couple typos by
[@&#8203;Cadienvan](https://togithub.com/Cadienvan) in
[https://github.com/fastify/fastify/pull/5079](https://togithub.com/fastify/fastify/pull/5079)
- feat: Add `Symbol.asyncDispose` to improve DX in short lived servers.
by [@&#8203;arthurfiorette](https://togithub.com/arthurfiorette) in
[https://github.com/fastify/fastify/pull/5082](https://togithub.com/fastify/fastify/pull/5082)
- docs: Documentation changes requested at
[#&#8203;5082](https://togithub.com/fastify/fastify/issues/5082) by
[@&#8203;arthurfiorette](https://togithub.com/arthurfiorette) in
[https://github.com/fastify/fastify/pull/5083](https://togithub.com/fastify/fastify/pull/5083)
- docs: remove thenable promisesaplus spec references by
[@&#8203;dancastillo](https://togithub.com/dancastillo) in
[https://github.com/fastify/fastify/pull/5081](https://togithub.com/fastify/fastify/pull/5081)
- docs(ecosystem): add fastify-event-bus by
[@&#8203;Shiva127](https://togithub.com/Shiva127) in
[https://github.com/fastify/fastify/pull/5085](https://togithub.com/fastify/fastify/pull/5085)
- docs: update docs for FastifyPlugin by
[@&#8203;dancastillo](https://togithub.com/dancastillo) in
[https://github.com/fastify/fastify/pull/5070](https://togithub.com/fastify/fastify/pull/5070)
- docs: Update for .hijack heading by
[@&#8203;jackbatzner](https://togithub.com/jackbatzner) in
[https://github.com/fastify/fastify/pull/5088](https://togithub.com/fastify/fastify/pull/5088)
- fix(warnings): fixed warning when accessing context property from
Request and Reply objects by
[@&#8203;giuliowaitforitdavide](https://togithub.com/giuliowaitforitdavide)
in
[https://github.com/fastify/fastify/pull/5084](https://togithub.com/fastify/fastify/pull/5084)
- fix: HEAD route search by
[@&#8203;ivan-tymoshenko](https://togithub.com/ivan-tymoshenko) in
[https://github.com/fastify/fastify/pull/5078](https://togithub.com/fastify/fastify/pull/5078)

#### New Contributors

- [@&#8203;kadoshita](https://togithub.com/kadoshita) made their first
contribution in
[https://github.com/fastify/fastify/pull/5042](https://togithub.com/fastify/fastify/pull/5042)
- [@&#8203;Connormiha](https://togithub.com/Connormiha) made their first
contribution in
[https://github.com/fastify/fastify/pull/5057](https://togithub.com/fastify/fastify/pull/5057)
- [@&#8203;DemonHa](https://togithub.com/DemonHa) made their first
contribution in
[https://github.com/fastify/fastify/pull/5060](https://togithub.com/fastify/fastify/pull/5060)
- [@&#8203;Iamshankhadeep](https://togithub.com/Iamshankhadeep) made
their first contribution in
[https://github.com/fastify/fastify/pull/5056](https://togithub.com/fastify/fastify/pull/5056)
- [@&#8203;Cadienvan](https://togithub.com/Cadienvan) made their first
contribution in
[https://github.com/fastify/fastify/pull/5079](https://togithub.com/fastify/fastify/pull/5079)
- [@&#8203;arthurfiorette](https://togithub.com/arthurfiorette) made
their first contribution in
[https://github.com/fastify/fastify/pull/5082](https://togithub.com/fastify/fastify/pull/5082)
- [@&#8203;jackbatzner](https://togithub.com/jackbatzner) made their
first contribution in
[https://github.com/fastify/fastify/pull/5088](https://togithub.com/fastify/fastify/pull/5088)

**Full Changelog**:
fastify/fastify@v4.23.2...v4.24.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:eyJjcmVhdGVkSW5WZXIiOiIzNy44LjEiLCJ1cGRhdGVkSW5WZXIiOiIzNy44LjEiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
jtoar referenced this pull request in redwoodjs/graphql Nov 15, 2023
[![Mend Renovate logo
banner](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.dev/)
([source](https://togithub.com/fastify/fastify)) | [`4.23.2` ->
`4.24.3`](https://renovatebot.com/diffs/npm/fastify/4.23.2/4.24.3) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/fastify/4.24.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/fastify/4.24.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/fastify/4.23.2/4.24.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/fastify/4.23.2/4.24.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

[Compare
Source](https://togithub.com/fastify/fastify/compare/v4.24.2...v4.24.3)

#### What's Changed

- fix: timeout on citgm tests by
[@&#8203;simone-sanfratello](https://togithub.com/simone-sanfratello) in
[https://github.com/fastify/fastify/pull/5101](https://togithub.com/fastify/fastify/pull/5101)
- chore: add missing `use strict` directives by
[@&#8203;Fdawgs](https://togithub.com/Fdawgs) in
[https://github.com/fastify/fastify/pull/5106](https://togithub.com/fastify/fastify/pull/5106)

**Full Changelog**:
fastify/fastify@v4.24.2...v4.24.3

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

[Compare
Source](https://togithub.com/fastify/fastify/compare/v4.24.1...v4.24.2)

#### What's Changed

- fix: build problems when `Symbol.asyncDispose` type is not available.
by [@&#8203;arthurfiorette](https://togithub.com/arthurfiorette) in
[https://github.com/fastify/fastify/pull/5096](https://togithub.com/fastify/fastify/pull/5096)

**Full Changelog**:
fastify/fastify@v4.24.1...v4.24.2

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

[Compare
Source](https://togithub.com/fastify/fastify/compare/v4.24.0...v4.24.1)

#### What's Changed

- fix: citgm by
[@&#8203;simone-sanfratello](https://togithub.com/simone-sanfratello) in
[https://github.com/fastify/fastify/pull/5075](https://togithub.com/fastify/fastify/pull/5075)
- fix: HEAD route reseting by
[@&#8203;ivan-tymoshenko](https://togithub.com/ivan-tymoshenko) in
[https://github.com/fastify/fastify/pull/5090](https://togithub.com/fastify/fastify/pull/5090)

**Full Changelog**:
fastify/fastify@v4.24.0...v4.24.1

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

[Compare
Source](https://togithub.com/fastify/fastify/compare/v4.23.2...v4.24.0)

#### What's Changed

- docs: Add blank line before onclose hook heading by
[@&#8203;kadoshita](https://togithub.com/kadoshita) in
[https://github.com/fastify/fastify/pull/5042](https://togithub.com/fastify/fastify/pull/5042)
- build(dependabot): ignore tap major updates by
[@&#8203;Fdawgs](https://togithub.com/Fdawgs) in
[https://github.com/fastify/fastify/pull/5047](https://togithub.com/fastify/fastify/pull/5047)
- chore: Bump actions/checkout from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/fastify/fastify/pull/5048](https://togithub.com/fastify/fastify/pull/5048)
- chore: more perf by [@&#8203;Eomm](https://togithub.com/Eomm) in
[https://github.com/fastify/fastify/pull/5016](https://togithub.com/fastify/fastify/pull/5016)
- docs(ecosystem): add fastify-prisma by
[@&#8203;zrosenbauer](https://togithub.com/zrosenbauer) in
[https://github.com/fastify/fastify/pull/5041](https://togithub.com/fastify/fastify/pull/5041)
- test: fix ci due yup breaking by
[@&#8203;Eomm](https://togithub.com/Eomm) in
[https://github.com/fastify/fastify/pull/5058](https://togithub.com/fastify/fastify/pull/5058)
- perf: optimize split params by
[@&#8203;Connormiha](https://togithub.com/Connormiha) in
[https://github.com/fastify/fastify/pull/5057](https://togithub.com/fastify/fastify/pull/5057)
- chore: implicitly infer SchemaCompiler as readonly by
[@&#8203;DemonHa](https://togithub.com/DemonHa) in
[https://github.com/fastify/fastify/pull/5060](https://togithub.com/fastify/fastify/pull/5060)
- test(logger): splitting existing tests to avoid pipeline failing for
timeout by
[@&#8203;giuliowaitforitdavide](https://togithub.com/giuliowaitforitdavide)
in
[https://github.com/fastify/fastify/pull/5064](https://togithub.com/fastify/fastify/pull/5064)
- fix(async-hooks): mixing async and callback style in preHandler option
now returns an error by
[@&#8203;giuliowaitforitdavide](https://togithub.com/giuliowaitforitdavide)
in
[https://github.com/fastify/fastify/pull/5069](https://togithub.com/fastify/fastify/pull/5069)
- fix: enhance 100 and 200 or 204 handling by
[@&#8203;Iamshankhadeep](https://togithub.com/Iamshankhadeep) in
[https://github.com/fastify/fastify/pull/5056](https://togithub.com/fastify/fastify/pull/5056)
- docs: add fastify-cloudflare-turnstile to ecosystem by
[@&#8203;112RG](https://togithub.com/112RG) in
[https://github.com/fastify/fastify/pull/5067](https://togithub.com/fastify/fastify/pull/5067)
- docs: Fixing a couple typos by
[@&#8203;Cadienvan](https://togithub.com/Cadienvan) in
[https://github.com/fastify/fastify/pull/5079](https://togithub.com/fastify/fastify/pull/5079)
- feat: Add `Symbol.asyncDispose` to improve DX in short lived servers.
by [@&#8203;arthurfiorette](https://togithub.com/arthurfiorette) in
[https://github.com/fastify/fastify/pull/5082](https://togithub.com/fastify/fastify/pull/5082)
- docs: Documentation changes requested at
[#&#8203;5082](https://togithub.com/fastify/fastify/issues/5082) by
[@&#8203;arthurfiorette](https://togithub.com/arthurfiorette) in
[https://github.com/fastify/fastify/pull/5083](https://togithub.com/fastify/fastify/pull/5083)
- docs: remove thenable promisesaplus spec references by
[@&#8203;dancastillo](https://togithub.com/dancastillo) in
[https://github.com/fastify/fastify/pull/5081](https://togithub.com/fastify/fastify/pull/5081)
- docs(ecosystem): add fastify-event-bus by
[@&#8203;Shiva127](https://togithub.com/Shiva127) in
[https://github.com/fastify/fastify/pull/5085](https://togithub.com/fastify/fastify/pull/5085)
- docs: update docs for FastifyPlugin by
[@&#8203;dancastillo](https://togithub.com/dancastillo) in
[https://github.com/fastify/fastify/pull/5070](https://togithub.com/fastify/fastify/pull/5070)
- docs: Update for .hijack heading by
[@&#8203;jackbatzner](https://togithub.com/jackbatzner) in
[https://github.com/fastify/fastify/pull/5088](https://togithub.com/fastify/fastify/pull/5088)
- fix(warnings): fixed warning when accessing context property from
Request and Reply objects by
[@&#8203;giuliowaitforitdavide](https://togithub.com/giuliowaitforitdavide)
in
[https://github.com/fastify/fastify/pull/5084](https://togithub.com/fastify/fastify/pull/5084)
- fix: HEAD route search by
[@&#8203;ivan-tymoshenko](https://togithub.com/ivan-tymoshenko) in
[https://github.com/fastify/fastify/pull/5078](https://togithub.com/fastify/fastify/pull/5078)

#### New Contributors

- [@&#8203;kadoshita](https://togithub.com/kadoshita) made their first
contribution in
[https://github.com/fastify/fastify/pull/5042](https://togithub.com/fastify/fastify/pull/5042)
- [@&#8203;Connormiha](https://togithub.com/Connormiha) made their first
contribution in
[https://github.com/fastify/fastify/pull/5057](https://togithub.com/fastify/fastify/pull/5057)
- [@&#8203;DemonHa](https://togithub.com/DemonHa) made their first
contribution in
[https://github.com/fastify/fastify/pull/5060](https://togithub.com/fastify/fastify/pull/5060)
- [@&#8203;Iamshankhadeep](https://togithub.com/Iamshankhadeep) made
their first contribution in
[https://github.com/fastify/fastify/pull/5056](https://togithub.com/fastify/fastify/pull/5056)
- [@&#8203;Cadienvan](https://togithub.com/Cadienvan) made their first
contribution in
[https://github.com/fastify/fastify/pull/5079](https://togithub.com/fastify/fastify/pull/5079)
- [@&#8203;arthurfiorette](https://togithub.com/arthurfiorette) made
their first contribution in
[https://github.com/fastify/fastify/pull/5082](https://togithub.com/fastify/fastify/pull/5082)
- [@&#8203;jackbatzner](https://togithub.com/jackbatzner) made their
first contribution in
[https://github.com/fastify/fastify/pull/5088](https://togithub.com/fastify/fastify/pull/5088)

**Full Changelog**:
fastify/fastify@v4.23.2...v4.24.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:eyJjcmVhdGVkSW5WZXIiOiIzNy40Ni4wIiwidXBkYXRlZEluVmVyIjoiMzcuNDYuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
jtoar referenced this pull request in redwoodjs/graphql Nov 16, 2023
[![Mend Renovate logo
banner](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.dev/)
([source](https://togithub.com/fastify/fastify)) | [`4.23.2` ->
`4.24.3`](https://renovatebot.com/diffs/npm/fastify/4.23.2/4.24.3) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/fastify/4.24.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/fastify/4.24.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/fastify/4.23.2/4.24.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/fastify/4.23.2/4.24.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

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

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

[Compare
Source](https://togithub.com/fastify/fastify/compare/v4.24.2...v4.24.3)

- fix: timeout on citgm tests by
[@&#8203;simone-sanfratello](https://togithub.com/simone-sanfratello) in
[https://github.com/fastify/fastify/pull/5101](https://togithub.com/fastify/fastify/pull/5101)
- chore: add missing `use strict` directives by
[@&#8203;Fdawgs](https://togithub.com/Fdawgs) in
[https://github.com/fastify/fastify/pull/5106](https://togithub.com/fastify/fastify/pull/5106)

**Full Changelog**:
fastify/fastify@v4.24.2...v4.24.3

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

[Compare
Source](https://togithub.com/fastify/fastify/compare/v4.24.1...v4.24.2)

- fix: build problems when `Symbol.asyncDispose` type is not available.
by [@&#8203;arthurfiorette](https://togithub.com/arthurfiorette) in
[https://github.com/fastify/fastify/pull/5096](https://togithub.com/fastify/fastify/pull/5096)

**Full Changelog**:
fastify/fastify@v4.24.1...v4.24.2

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

[Compare
Source](https://togithub.com/fastify/fastify/compare/v4.24.0...v4.24.1)

- fix: citgm by
[@&#8203;simone-sanfratello](https://togithub.com/simone-sanfratello) in
[https://github.com/fastify/fastify/pull/5075](https://togithub.com/fastify/fastify/pull/5075)
- fix: HEAD route reseting by
[@&#8203;ivan-tymoshenko](https://togithub.com/ivan-tymoshenko) in
[https://github.com/fastify/fastify/pull/5090](https://togithub.com/fastify/fastify/pull/5090)

**Full Changelog**:
fastify/fastify@v4.24.0...v4.24.1

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

[Compare
Source](https://togithub.com/fastify/fastify/compare/v4.23.2...v4.24.0)

- docs: Add blank line before onclose hook heading by
[@&#8203;kadoshita](https://togithub.com/kadoshita) in
[https://github.com/fastify/fastify/pull/5042](https://togithub.com/fastify/fastify/pull/5042)
- build(dependabot): ignore tap major updates by
[@&#8203;Fdawgs](https://togithub.com/Fdawgs) in
[https://github.com/fastify/fastify/pull/5047](https://togithub.com/fastify/fastify/pull/5047)
- chore: Bump actions/checkout from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/fastify/fastify/pull/5048](https://togithub.com/fastify/fastify/pull/5048)
- chore: more perf by [@&#8203;Eomm](https://togithub.com/Eomm) in
[https://github.com/fastify/fastify/pull/5016](https://togithub.com/fastify/fastify/pull/5016)
- docs(ecosystem): add fastify-prisma by
[@&#8203;zrosenbauer](https://togithub.com/zrosenbauer) in
[https://github.com/fastify/fastify/pull/5041](https://togithub.com/fastify/fastify/pull/5041)
- test: fix ci due yup breaking by
[@&#8203;Eomm](https://togithub.com/Eomm) in
[https://github.com/fastify/fastify/pull/5058](https://togithub.com/fastify/fastify/pull/5058)
- perf: optimize split params by
[@&#8203;Connormiha](https://togithub.com/Connormiha) in
[https://github.com/fastify/fastify/pull/5057](https://togithub.com/fastify/fastify/pull/5057)
- chore: implicitly infer SchemaCompiler as readonly by
[@&#8203;DemonHa](https://togithub.com/DemonHa) in
[https://github.com/fastify/fastify/pull/5060](https://togithub.com/fastify/fastify/pull/5060)
- test(logger): splitting existing tests to avoid pipeline failing for
timeout by
[@&#8203;giuliowaitforitdavide](https://togithub.com/giuliowaitforitdavide)
in
[https://github.com/fastify/fastify/pull/5064](https://togithub.com/fastify/fastify/pull/5064)
- fix(async-hooks): mixing async and callback style in preHandler option
now returns an error by
[@&#8203;giuliowaitforitdavide](https://togithub.com/giuliowaitforitdavide)
in
[https://github.com/fastify/fastify/pull/5069](https://togithub.com/fastify/fastify/pull/5069)
- fix: enhance 100 and 200 or 204 handling by
[@&#8203;Iamshankhadeep](https://togithub.com/Iamshankhadeep) in
[https://github.com/fastify/fastify/pull/5056](https://togithub.com/fastify/fastify/pull/5056)
- docs: add fastify-cloudflare-turnstile to ecosystem by
[@&#8203;112RG](https://togithub.com/112RG) in
[https://github.com/fastify/fastify/pull/5067](https://togithub.com/fastify/fastify/pull/5067)
- docs: Fixing a couple typos by
[@&#8203;Cadienvan](https://togithub.com/Cadienvan) in
[https://github.com/fastify/fastify/pull/5079](https://togithub.com/fastify/fastify/pull/5079)
- feat: Add `Symbol.asyncDispose` to improve DX in short lived servers.
by [@&#8203;arthurfiorette](https://togithub.com/arthurfiorette) in
[https://github.com/fastify/fastify/pull/5082](https://togithub.com/fastify/fastify/pull/5082)
- docs: Documentation changes requested at
[#&#8203;5082](https://togithub.com/fastify/fastify/issues/5082) by
[@&#8203;arthurfiorette](https://togithub.com/arthurfiorette) in
[https://github.com/fastify/fastify/pull/5083](https://togithub.com/fastify/fastify/pull/5083)
- docs: remove thenable promisesaplus spec references by
[@&#8203;dancastillo](https://togithub.com/dancastillo) in
[https://github.com/fastify/fastify/pull/5081](https://togithub.com/fastify/fastify/pull/5081)
- docs(ecosystem): add fastify-event-bus by
[@&#8203;Shiva127](https://togithub.com/Shiva127) in
[https://github.com/fastify/fastify/pull/5085](https://togithub.com/fastify/fastify/pull/5085)
- docs: update docs for FastifyPlugin by
[@&#8203;dancastillo](https://togithub.com/dancastillo) in
[https://github.com/fastify/fastify/pull/5070](https://togithub.com/fastify/fastify/pull/5070)
- docs: Update for .hijack heading by
[@&#8203;jackbatzner](https://togithub.com/jackbatzner) in
[https://github.com/fastify/fastify/pull/5088](https://togithub.com/fastify/fastify/pull/5088)
- fix(warnings): fixed warning when accessing context property from
Request and Reply objects by
[@&#8203;giuliowaitforitdavide](https://togithub.com/giuliowaitforitdavide)
in
[https://github.com/fastify/fastify/pull/5084](https://togithub.com/fastify/fastify/pull/5084)
- fix: HEAD route search by
[@&#8203;ivan-tymoshenko](https://togithub.com/ivan-tymoshenko) in
[https://github.com/fastify/fastify/pull/5078](https://togithub.com/fastify/fastify/pull/5078)

- [@&#8203;kadoshita](https://togithub.com/kadoshita) made their first
contribution in
[https://github.com/fastify/fastify/pull/5042](https://togithub.com/fastify/fastify/pull/5042)
- [@&#8203;Connormiha](https://togithub.com/Connormiha) made their first
contribution in
[https://github.com/fastify/fastify/pull/5057](https://togithub.com/fastify/fastify/pull/5057)
- [@&#8203;DemonHa](https://togithub.com/DemonHa) made their first
contribution in
[https://github.com/fastify/fastify/pull/5060](https://togithub.com/fastify/fastify/pull/5060)
- [@&#8203;Iamshankhadeep](https://togithub.com/Iamshankhadeep) made
their first contribution in
[https://github.com/fastify/fastify/pull/5056](https://togithub.com/fastify/fastify/pull/5056)
- [@&#8203;Cadienvan](https://togithub.com/Cadienvan) made their first
contribution in
[https://github.com/fastify/fastify/pull/5079](https://togithub.com/fastify/fastify/pull/5079)
- [@&#8203;arthurfiorette](https://togithub.com/arthurfiorette) made
their first contribution in
[https://github.com/fastify/fastify/pull/5082](https://togithub.com/fastify/fastify/pull/5082)
- [@&#8203;jackbatzner](https://togithub.com/jackbatzner) made their
first contribution in
[https://github.com/fastify/fastify/pull/5088](https://togithub.com/fastify/fastify/pull/5088)

**Full Changelog**:
fastify/fastify@v4.23.2...v4.24.0

</details>

---

📅 **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:eyJjcmVhdGVkSW5WZXIiOiIzNy40Ni4wIiwidXBkYXRlZEluVmVyIjoiMzcuNDYuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

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

github-actions Bot commented Oct 4, 2024

Copy link
Copy Markdown

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 Oct 4, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

bugfix Issue or PR that should land as semver patch

Projects

None yet

Development

Successfully merging this pull request may close these issues.

bug: FST_ERR_HOOK_INVALID_ASYNC_HANDLER not thrown

6 participants