Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions .tav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -420,12 +420,13 @@ restify:
# - #1086 suggests [email protected] was a broken release, skip it.
# - [email protected] is broken: https://github.com/fastify/fastify/issues/3998#issuecomment-1153662513
# - [email protected] - 4.16.2 (inclusive) are broken releases
# - [email protected] bumped to `pino@^9.0.0` which is using `tracingChannel` API. Breaking support for nodejs <18.19.0
# - Do not run "test/sanitize-field-names/fastify.test.js" for older fastify,
# because the test file uses '@fastify/formbody', which only has versions
# for fastify >=3.
fastify:
- versions: '1.0.0 || 1.14.6' # subset of '1.x'
node: '>=6 <12'
node: '<15'
commands:
- node test/instrumentation/modules/fastify/fastify.test.js
- node test/instrumentation/modules/fastify/async-await.test.js
Expand All @@ -448,7 +449,7 @@ fastify:
- node test/sanitize-field-names/fastify.test.js
- versions:
mode: max-7
include: '>=4 <5'
include: '>=4 <4.26.2'
exclude: '4.0.1 || >=4.16.0 <=4.16.2'
peerDependencies: '@fastify/formbody@^7'
node: '>=14.6.0'
Expand All @@ -457,6 +458,16 @@ fastify:
- node test/instrumentation/modules/fastify/async-await.test.js
- node test/instrumentation/modules/fastify/set-framework.test.js
- node test/sanitize-field-names/fastify.test.js
- versions:
mode: max-7
include: '>=4.26.2 <5'
peerDependencies: '@fastify/formbody@^7'
node: '>=18.19.0'
commands:
- node test/instrumentation/modules/fastify/fastify.test.js
- node test/instrumentation/modules/fastify/async-await.test.js
- node test/instrumentation/modules/fastify/set-framework.test.js
- node test/sanitize-field-names/fastify.test.js
- versions:
mode: max-7
include: '>=5 <6'
Expand Down
Loading