Skip to content

Commit

Permalink
chore: release v0.63.0 (#626)
Browse files Browse the repository at this point in the history
  • Loading branch information
rameshlohala committed Mar 22, 2024
1 parent d9ebb2e commit f8d5fb7
Show file tree
Hide file tree
Showing 13 changed files with 138 additions and 113 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# [0.63.0](https://github.com/dzangolab/fastify/compare/v0.62.4...v0.63.0) (2024-03-22)


### Features

* **config:** add multi-stream support for logger config ([#616](https://github.com/dzangolab/fastify/issues/616)) ([d9ebb2e](https://github.com/dzangolab/fastify/commit/d9ebb2efc4a5785d5e2b6519b4decb1014f6f1af))



## [0.62.4](https://github.com/dzangolab/fastify/compare/v0.62.3...v0.62.4) (2024-03-21)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dzangolab/fastify",
"version": "0.62.4",
"version": "0.63.0",
"private": true,
"repository": {
"type": "git",
Expand Down
12 changes: 7 additions & 5 deletions packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dzangolab/fastify-config",
"version": "0.62.4",
"version": "0.63.0",
"description": "Fastify config plugin",
"homepage": "https://github.com/dzangolab/fastify/tree/main/packages/config#readme",
"repository": {
Expand All @@ -19,7 +19,9 @@
"main": "./dist/dzangolab-fastify-config.umd.cjs",
"module": "./dist/dzangolab-fastify-config.js",
"types": "./dist/types/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly && mv dist/src dist/types",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
Expand All @@ -34,12 +36,12 @@
"@typescript-eslint/parser": "5.62.0",
"@vitest/coverage-istanbul": "0.32.2",
"eslint": "8.56.0",
"eslint-config-custom": "0.62.4",
"eslint-config-custom": "0.63.0",
"fastify": "4.10.2",
"fastify-plugin": "4.4.0",
"prettier": "2.8.8",
"pino": "8.8.0",
"tsconfig": "0.62.4",
"tsconfig": "0.63.0",
"typescript": "4.9.5",
"vite": "4.3.9",
"vitest": "0.32.0"
Expand All @@ -52,4 +54,4 @@
"node": ">=16",
"pnpm": ">=8"
}
}
}
24 changes: 13 additions & 11 deletions packages/firebase/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dzangolab/fastify-firebase",
"version": "0.62.4",
"version": "0.63.0",
"description": "Fastify firebase plugin",
"homepage": "https://github.com/dzangolab/fastify/tree/main/packages/firebase#readme",
"repository": {
Expand All @@ -19,7 +19,9 @@
"main": "./dist/dzangolab-fastify-firebase.umd.cjs",
"module": "./dist/dzangolab-fastify-firebase.js",
"types": "./dist/types/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly && mv dist/src dist/types",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
Expand All @@ -33,30 +35,30 @@
"zod": "3.22.4"
},
"devDependencies": {
"@dzangolab/fastify-config": "0.62.4",
"@dzangolab/fastify-mercurius": "0.62.4",
"@dzangolab/fastify-slonik": "0.62.4",
"@dzangolab/fastify-config": "0.63.0",
"@dzangolab/fastify-mercurius": "0.63.0",
"@dzangolab/fastify-slonik": "0.63.0",
"@types/node": "18.16.18",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitest/coverage-istanbul": "0.32.2",
"eslint": "8.56.0",
"eslint-config-custom": "0.62.4",
"eslint-config-custom": "0.63.0",
"fastify": "4.10.2",
"fastify-plugin": "4.4.0",
"mercurius": "12.2.0",
"prettier": "2.8.8",
"slonik": "37.2.0",
"supertokens-node": "14.1.3",
"tsconfig": "0.62.4",
"tsconfig": "0.63.0",
"typescript": "4.9.5",
"vite": "4.3.9",
"vitest": "0.32.0"
},
"peerDependencies": {
"@dzangolab/fastify-config": "0.62.4",
"@dzangolab/fastify-mercurius": "0.62.4",
"@dzangolab/fastify-slonik": "0.62.4",
"@dzangolab/fastify-config": "0.63.0",
"@dzangolab/fastify-mercurius": "0.63.0",
"@dzangolab/fastify-slonik": "0.63.0",
"fastify": ">=4.10.2",
"fastify-plugin": ">=4.4.0",
"firebase-admin": "12.0.0",
Expand All @@ -69,4 +71,4 @@
"node": ">=16",
"pnpm": ">=8"
}
}
}
16 changes: 9 additions & 7 deletions packages/mailer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dzangolab/fastify-mailer",
"version": "0.62.4",
"version": "0.63.0",
"description": "Fastify mailer plugin",
"homepage": "https://github.com/dzangolab/fastify/tree/main/packages/mailer#readme",
"repository": {
Expand All @@ -19,7 +19,9 @@
"main": "./dist/dzangolab-fastify-mailer.umd.cjs",
"module": "./dist/dzangolab-fastify-mailer.js",
"types": "./dist/types/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly && mv dist/src dist/types",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
Expand All @@ -37,7 +39,7 @@
"nodemailer-mjml": "1.2.24"
},
"devDependencies": {
"@dzangolab/fastify-config": "0.62.4",
"@dzangolab/fastify-config": "0.63.0",
"@types/mjml": "4.7.4",
"@types/node": "18.16.18",
"@types/nodemailer": "6.4.14",
Expand All @@ -46,18 +48,18 @@
"@typescript-eslint/parser": "5.62.0",
"@vitest/coverage-istanbul": "0.32.2",
"eslint": "8.56.0",
"eslint-config-custom": "0.62.4",
"eslint-config-custom": "0.63.0",
"fastify": "4.10.2",
"fastify-plugin": "4.4.0",
"mjml": "4.14.1",
"prettier": "2.8.8",
"tsconfig": "0.62.4",
"tsconfig": "0.63.0",
"typescript": "4.9.5",
"vite": "4.3.9",
"vitest": "0.32.2"
},
"peerDependencies": {
"@dzangolab/fastify-config": "0.62.4",
"@dzangolab/fastify-config": "0.63.0",
"fastify": ">=4.9.2",
"fastify-plugin": ">=4.3.0",
"mjml": ">=4.13.0"
Expand All @@ -66,4 +68,4 @@
"node": ">=16",
"pnpm": ">=8"
}
}
}
20 changes: 11 additions & 9 deletions packages/mercurius/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dzangolab/fastify-mercurius",
"version": "0.62.4",
"version": "0.63.0",
"description": "Fastify mercurius plugin",
"homepage": "https://github.com/dzangolab/fastify/tree/main/packages/mercurius#readme",
"repository": {
Expand All @@ -19,7 +19,9 @@
"main": "./dist/dzangolab-fastify-mercurius.umd.cjs",
"module": "./dist/dzangolab-fastify-mercurius.js",
"types": "./dist/types/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly && mv dist/src dist/types",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
Expand All @@ -29,28 +31,28 @@
"typecheck": "tsc --noEmit -p tsconfig.json --composite false"
},
"devDependencies": {
"@dzangolab/fastify-config": "0.62.4",
"@dzangolab/fastify-slonik": "0.62.4",
"@dzangolab/fastify-config": "0.63.0",
"@dzangolab/fastify-slonik": "0.63.0",
"@types/node": "18.16.18",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitest/coverage-istanbul": "0.32.2",
"eslint": "8.56.0",
"eslint-config-custom": "0.62.4",
"eslint-config-custom": "0.63.0",
"fastify": "4.10.2",
"fastify-plugin": "4.4.0",
"graphql": "16.6.0",
"mercurius": "12.2.0",
"prettier": "2.8.8",
"slonik": "37.2.0",
"tsconfig": "0.62.4",
"tsconfig": "0.63.0",
"typescript": "4.9.5",
"vite": "4.3.9",
"vitest": "0.32.2"
},
"peerDependencies": {
"@dzangolab/fastify-config": "0.62.4",
"@dzangolab/fastify-slonik": "0.62.4",
"@dzangolab/fastify-config": "0.63.0",
"@dzangolab/fastify-slonik": "0.63.0",
"fastify": ">=4.9.2",
"fastify-plugin": ">=4.3.0",
"graphql": ">=16.6.0",
Expand All @@ -61,4 +63,4 @@
"node": ">=16",
"pnpm": ">=8"
}
}
}
28 changes: 15 additions & 13 deletions packages/multi-tenant/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dzangolab/fastify-multi-tenant",
"version": "0.62.4",
"version": "0.63.0",
"description": "Fastify multi-tenant plugin",
"homepage": "https://github.com/dzangolab/fastify/tree/main/packages/multi-tenant#readme",
"repository": {
Expand All @@ -19,7 +19,9 @@
"main": "./dist/dzangolab-fastify-multi-tenant.umd.cjs",
"module": "./dist/dzangolab-fastify-multi-tenant.js",
"types": "./dist/types/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly && mv dist/src dist/types",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
Expand All @@ -35,10 +37,10 @@
"pg": "8.11.3"
},
"devDependencies": {
"@dzangolab/fastify-config": "0.62.4",
"@dzangolab/fastify-mercurius": "0.62.4",
"@dzangolab/fastify-slonik": "0.62.4",
"@dzangolab/fastify-user": "0.62.4",
"@dzangolab/fastify-config": "0.63.0",
"@dzangolab/fastify-mercurius": "0.63.0",
"@dzangolab/fastify-slonik": "0.63.0",
"@dzangolab/fastify-user": "0.63.0",
"@types/humps": "2.0.6",
"@types/lodash.merge": "4.6.9",
"@types/node": "18.16.18",
Expand All @@ -47,25 +49,25 @@
"@typescript-eslint/parser": "5.62.0",
"@vitest/coverage-istanbul": "0.32.2",
"eslint": "8.56.0",
"eslint-config-custom": "0.62.4",
"eslint-config-custom": "0.63.0",
"fastify": "4.10.2",
"fastify-plugin": "4.4.0",
"mercurius": "12.2.0",
"prettier": "2.8.8",
"slonik": "37.2.0",
"supertokens-node": "14.1.3",
"tsconfig": "0.62.4",
"tsconfig": "0.63.0",
"typescript": "4.9.5",
"vite": "4.3.9",
"vite-tsconfig-paths": "4.2.3",
"vitest": "0.32.2",
"zod": "3.22.4"
},
"peerDependencies": {
"@dzangolab/fastify-config": "0.62.4",
"@dzangolab/fastify-mercurius": "0.62.4",
"@dzangolab/fastify-slonik": "0.62.4",
"@dzangolab/fastify-user": "0.62.4",
"@dzangolab/fastify-config": "0.63.0",
"@dzangolab/fastify-mercurius": "0.63.0",
"@dzangolab/fastify-slonik": "0.63.0",
"@dzangolab/fastify-user": "0.63.0",
"fastify": ">=4.9.2",
"fastify-plugin": ">=4.3.0",
"mercurius": ">=12.2.0",
Expand All @@ -77,4 +79,4 @@
"node": ">=16",
"pnpm": ">=8"
}
}
}
24 changes: 13 additions & 11 deletions packages/s3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dzangolab/fastify-s3",
"version": "0.62.4",
"version": "0.63.0",
"description": "Fastify S3 plugin",
"homepage": "https://github.com/dzangolab/fastify/tree/main/packages/s3#readme",
"repository": {
Expand All @@ -19,7 +19,9 @@
"main": "./dist/dzangolab-fastify-s3.umd.cjs",
"module": "./dist/dzangolab-fastify-s3.js",
"types": "./dist/types/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly && mv dist/src dist/types",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
Expand All @@ -41,28 +43,28 @@
"zod": "3.22.4"
},
"devDependencies": {
"@dzangolab/fastify-config": "0.62.4",
"@dzangolab/fastify-mercurius": "0.62.4",
"@dzangolab/fastify-slonik": "0.62.4",
"@dzangolab/fastify-config": "0.63.0",
"@dzangolab/fastify-mercurius": "0.63.0",
"@dzangolab/fastify-slonik": "0.63.0",
"@types/node": "18.16.18",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitest/coverage-istanbul": "0.32.2",
"eslint": "8.56.0",
"eslint-config-custom": "0.62.4",
"eslint-config-custom": "0.63.0",
"fastify": "4.10.2",
"fastify-plugin": "4.4.0",
"prettier": "2.8.8",
"slonik": "37.2.0",
"tsconfig": "0.62.4",
"tsconfig": "0.63.0",
"typescript": "4.9.5",
"vite": "4.3.9",
"vitest": "0.32.2"
},
"peerDependencies": {
"@dzangolab/fastify-config": "0.62.4",
"@dzangolab/fastify-mercurius": "0.62.4",
"@dzangolab/fastify-slonik": "0.62.4",
"@dzangolab/fastify-config": "0.63.0",
"@dzangolab/fastify-mercurius": "0.63.0",
"@dzangolab/fastify-slonik": "0.63.0",
"fastify": ">=4.10.2",
"fastify-plugin": ">=4.4.0",
"slonik": ">=37.2.0",
Expand All @@ -72,4 +74,4 @@
"node": ">=16",
"pnpm": ">=8"
}
}
}
Loading

0 comments on commit f8d5fb7

Please sign in to comment.