Skip to content

Commit

Permalink
v3.14.1
Browse files Browse the repository at this point in the history
 ### Fixed
 - Do not mutate parent controller methods in case of inheritance
  • Loading branch information
L2jLiga committed Oct 10, 2022
1 parent a7c341a commit 9182749
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 9 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.14.1

### Fixed

- Do not mutate parent controller methods in case of inheritance

## 3.14.0

### Added
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.14.0",
"fastify-decorators": "^3.14.1",
"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.14.0",
"fastify-decorators": "^3.14.1",
"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.14.0",
"fastify-decorators": "^3.14.1",
"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.14.0",
"fastify-decorators": "^3.14.1",
"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 @@ -13,7 +13,7 @@
},
"dependencies": {
"fastify": "^3.18.1",
"fastify-decorators": "^3.14.0"
"fastify-decorators": "^3.14.1"
},
"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.14.0"
"fastify-decorators": "^3.14.1"
},
"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.14.0",
"fastify-decorators": "^3.14.1",
"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.14.0",
"fastify-decorators": "^3.14.1",
"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.14.0",
"version": "3.14.1",
"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 9182749

Please sign in to comment.