Skip to content

Commit

Permalink
feat!: Bump deps and fastify to v5 (#190)
Browse files Browse the repository at this point in the history
* feat!: Bump deps and fastify to v5

* format prettier

* feat!: Change supported node versions to 20, 21 and 22

Node 18 support has been dropped as it is no longer supported by this project.
  • Loading branch information
Coobaha committed Oct 18, 2024
1 parent ccdc36e commit c70bec9
Show file tree
Hide file tree
Showing 8 changed files with 3,896 additions and 2,917 deletions.
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

version: 2
updates:
- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
- package-ecosystem: 'npm' # See documentation for possible values
directory: '/' # Location of package manifests
schedule:
interval: "weekly"
interval: 'weekly'
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 21]
node: [20, 21, 22]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 21]
node: [20, 21, 22]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
Expand Down
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,42 +8,42 @@
},
"dependencies": {
"@types/json-schema": "^7.0.15",
"chokidar": "3.6.0",
"chokidar": "4.0.1",
"crypto-js": "^4.2.0",
"glob": "^10.3.12",
"glob": "^11.0.0",
"json-schema-merge-allof": "^0.8.1",
"json-schema-traverse": "^1.0.0",
"std-env": "3.7.0",
"type-fest": "^4.14.0",
"typescript-json-schema": "^0.63.0",
"type-fest": "^4.26.1",
"typescript-json-schema": "^0.65.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"@fastify/swagger": "^9.2.0",
"@fastify/swagger-ui": "^5.1.0",
"@types/crypto-js": "^4.2.2",
"@types/glob": "^8.1.0",
"@types/json-schema-merge-allof": "^0.6.5",
"@types/lint-staged": "^13.3.0",
"@types/node": "^20.12.2",
"@types/node": "^22.7.6",
"@types/split2": "^4.2.3",
"@types/tap": "^15.0.11",
"@types/yargs": "^17.0.32",
"@types/tap": "^15.0.12",
"@types/yargs": "^17.0.33",
"ajv-formats": "3.0.1",
"ajv-keywords": "5.1.0",
"coveralls": "3.1.1",
"fastify": "^4.26.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"pino-pretty": "^11.0.0",
"fastify": "^5.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"pino-pretty": "^11.3.0",
"pinst": "^3.0.0",
"prettier": "^3.2.5",
"prettier": "^3.3.3",
"split2": "^4.2.0",
"syncpack": "^12.3.0",
"tap": "^18.7.2",
"syncpack": "^13.0.0",
"tap": "^21.0.1",
"ts-node-dev": "^2.0.0",
"tsd": "^0.31.0",
"typescript": "^5.4.3"
"tsd": "^0.31.2",
"typescript": "^5.6.3"
},
"directories": {
"test": "test/",
Expand All @@ -69,7 +69,7 @@
]
},
"main": "lib/index.js",
"packageManager": "pnpm@8.5.0",
"packageManager": "pnpm@9.12.2",
"peerDependencies": {
"fastify": "^4"
},
Expand Down
Loading

0 comments on commit c70bec9

Please sign in to comment.