Skip to content

Commit

Permalink
chore: bump fastify version
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolabovolato committed Sep 19, 2024
1 parent 2fbec9e commit d262ebd
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 37 deletions.
4 changes: 2 additions & 2 deletions packages/benchmarks/crud/basica-fastify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"@basica/fastify": "workspace:^0.0.4",
"@basica/kysely": "workspace:^",
"@basica/pg": "workspace:^",
"@fastify/type-provider-typebox": "^4.0.0",
"@fastify/type-provider-typebox": "^5.0.0",
"@sinclair/typebox": "^0.32.16",
"fastify": "^4.26.2",
"fastify": "^5.0.0",
"kysely": "^0.27.2",
"pg": "^8.11.3"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/benchmarks/crud/fastify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"lint": "tsc --noEmit && eslint \"{src,migrations}/**/*.ts\""
},
"dependencies": {
"@fastify/type-provider-typebox": "^4.0.0",
"fastify": "^4.26.2",
"@fastify/type-provider-typebox": "^5.0.0",
"fastify": "^5.0.0",
"kysely": "^0.27.2",
"pg": "^8.11.3"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/benchmarks/crud/fastify/src/routes.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { TodoService } from "./service";
import {
FastifyPluginAsyncTypebox,
Type,
} from "@fastify/type-provider-typebox";
import { TodoService } from "./service";

const todo = Type.Object({
id: Type.String({ format: "uuid" }),
Expand Down
2 changes: 1 addition & 1 deletion packages/benchmarks/http/basica-fastify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"dependencies": {
"@basica/core": "workspace:^0.0.4",
"@basica/fastify": "workspace:^0.0.4",
"fastify": "^4.26.2"
"fastify": "^5.0.0"
},
"devDependencies": {
"@basica/eslint-config": "workspace:^0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/benchmarks/http/fastify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lint": "tsc --noEmit && eslint \"src/**/*.ts\""
},
"dependencies": {
"fastify": "^4.26.2"
"fastify": "^5.0.0"
},
"devDependencies": {
"@basica/eslint-config": "workspace:^0.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/examples/crud/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"@basica/fastify": "workspace:^0.0.4",
"@basica/kysely": "workspace:^0.0.4",
"@basica/pg": "workspace:^0.0.4",
"@fastify/type-provider-typebox": "^4.0.0",
"@fastify/type-provider-typebox": "^5.0.0",
"@sinclair/typebox": "^0.32.16",
"fastify": "^4.26.2",
"fastify": "^5.0.0",
"kysely": "^0.27.2",
"pg": "^8.11.3"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/examples/telemetry/svc1/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"scripts": {
"start": "node --require ./dist/instrumentation.js dist/index.js",
"dev": "HTTP_PORT=8080 SVC2_URL=http://127.0.0.0:8081 tsx watch --require ./src/instrumentation.ts --inspect src/index.ts | pino-pretty -c -t",
"dev": "HTTP_PORT=8080 SVC2_URL=http://127.0.0.0:8081 tsx watch --require tsx/cjs --require ./src/instrumentation.mts --inspect src/index.ts | pino-pretty -c -t",
"build": "tsup-node src/index.ts src/instrumentation.ts",
"lint": "tsc --noEmit && eslint \"src/**/*.ts\""
},
Expand All @@ -22,7 +22,7 @@
"@opentelemetry/exporter-prometheus": "^0.49.1",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.49.1",
"@sinclair/typebox": "^0.32.16",
"fastify": "^4.26.2",
"fastify": "^5.0.0",
"opentelemetry-instrumentation-fetch-node": "^1.1.2"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/examples/telemetry/svc2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"scripts": {
"start": "node --require ./dist/instrumentation.js dist/index.js",
"dev": "HTTP_PORT=8081 tsx watch --require ./src/instrumentation.ts --inspect src/index.ts | pino-pretty -c -t",
"dev": "HTTP_PORT=8081 tsx watch --require tsx/cjs --require ./src/instrumentation.ts --inspect src/index.ts | pino-pretty -c -t",
"build": "tsup-node src/index.ts src/instrumentation.ts",
"lint": "tsc --noEmit && eslint \"src/**/*.ts\""
},
Expand All @@ -22,7 +22,7 @@
"@opentelemetry/exporter-prometheus": "^0.49.1",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.49.1",
"@sinclair/typebox": "^0.32.16",
"fastify": "^4.26.2"
"fastify": "^5.0.0"
},
"devDependencies": {
"@basica/eslint-config": "workspace:^0.0.0",
Expand Down
48 changes: 24 additions & 24 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d262ebd

Please sign in to comment.