Skip to content

build(deps-dev): bump fastify from 4.28.1 to 5.0.0 #4

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

Merged
merged 2 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
chore: update min fastify version
  • Loading branch information
Kit-p committed Sep 25, 2024
commit dd7eb80a55cf5be9f393da2f7178e8256a2ba2fa
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async function fastifyTasks (fastify) {
}

module.exports = fp(fastifyTasks, {
fastify: '4.x',
fastify: '5.x',
name: pluginName
})
module.exports.default = fastifyTasks
Expand Down
4 changes: 2 additions & 2 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ test('fastify.tasks.add and fastify.tasks.remove works with an unnamed task', t
t.plan(4)
const logger = new Logger()
const fastify = Fastify({
logger,
loggerInstance: logger,
disableRequestLogging: true
})

Expand Down Expand Up @@ -108,7 +108,7 @@ test('fastify.tasks.add and fastify.tasks.remove works with a named task', t =>
t.plan(5)
const logger = new Logger()
const fastify = Fastify({
logger,
loggerInstance: logger,
disableRequestLogging: true
})

Expand Down
Loading