Skip to content

Commit

Permalink
v3.16.0
Browse files Browse the repository at this point in the history
 ### Added

 - Fastify v5 support
  • Loading branch information
L2jLiga committed Sep 17, 2024
1 parent b91808e commit 7e26b2f
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 3.16.0

### Added

- Fastify v5 support

## 3.15.1

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion examples/async-initializer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"fastify": "^3.18.1",
"fastify-decorators": "^3.15.0",
"fastify-decorators": "^3.16.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion examples/aws-lambda/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"aws-lambda-fastify": "^1.7.1",
"fastify": "^3.18.1",
"fastify-decorators": "^3.15.0",
"fastify-decorators": "^3.16.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion examples/controllers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"fastify": "^3.18.1",
"fastify-decorators": "^3.15.0",
"fastify-decorators": "^3.16.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion examples/esm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"dependencies": {
"fastify": "^3.18.1",
"fastify-decorators": "^3.15.0",
"fastify-decorators": "^3.16.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion examples/fastify-v4/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"fastify": "^4.0.2",
"fastify-decorators": "^3.15.0",
"fastify-decorators": "^3.16.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion examples/fastify-v5/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"fastify": "^5.0.0",
"fastify-decorators": "^3.15.0",
"fastify-decorators": "^3.16.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion examples/injecting-requests-in-services/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"fastify": "^3.18.1",
"fastify-decorators": "^3.15.0"
"fastify-decorators": "^3.16.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/request-handlers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"fastify": "^3.18.1",
"fastify-decorators": "^3.15.0"
"fastify-decorators": "^3.16.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/swagger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"@sinclair/typebox": "^0.20.1",
"fastify": "^3.18.1",
"fastify-decorators": "^3.15.0",
"fastify-decorators": "^3.16.0",
"fastify-oas": "^3.0.8"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion examples/typeorm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"fastify": "^3.18.1",
"fastify-decorators": "^3.15.0",
"fastify-decorators": "^3.16.0",
"fastify-oas": "^3.0.8",
"reflect-metadata": "^0.1.13",
"sql.js": "^1.5.0",
Expand Down
2 changes: 1 addition & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fastify-decorators",
"version": "3.15.1",
"version": "3.16.0",
"description": "Framework aimed to provide useful TypeScript decorators to implement controllers, services and request handlers, built with Fastify.",
"type": "module",
"main": "index.cjs",
Expand Down

0 comments on commit 7e26b2f

Please sign in to comment.