diff --git a/CHANGELOG.md b/CHANGELOG.md index 0545e6ef2..2ea4fb79d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/jmcdo29/ogma/compare/v0.3.1...v0.4.0) (2020-10-25) + +### Bug Fixes + +- **integration:** fix failing integration test location ([270dd0e](https://github.com/jmcdo29/ogma/commit/270dd0ee245f74e57f33efd3e736c8baa1416018)) + +### Features + +- **all:** allow to add extra metadata to logs ([f83904d](https://github.com/jmcdo29/ogma/commit/f83904d2e2038c9e09cae8f97a923ec12c4365a0)), closes [#215](https://github.com/jmcdo29/ogma/issues/215) [#228](https://github.com/jmcdo29/ogma/issues/228) [#297](https://github.com/jmcdo29/ogma/issues/297) + +### BREAKING CHANGES + +- **all:** log methods now take an object as the second parameter instead of having 3 extra optional parameters + ## [0.3.1](https://github.com/jmcdo29/ogma/compare/v0.3.0...v0.3.1) (2020-09-12) ### Features diff --git a/lerna.json b/lerna.json index 29268eb68..e539c15f5 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "packages": ["packages/*"], - "version": "0.3.1", + "version": "0.4.0", "npmClient": "yarn", "useWorkspaces": true, "command": { diff --git a/packages/logger/CHANGELOG.md b/packages/logger/CHANGELOG.md index 908b4207c..ff5178c50 100644 --- a/packages/logger/CHANGELOG.md +++ b/packages/logger/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/jmcdo29/ogma/compare/v0.3.1...v0.4.0) (2020-10-25) + +### Features + +- **all:** allow to add extra metadata to logs ([f83904d](https://github.com/jmcdo29/ogma/commit/f83904d2e2038c9e09cae8f97a923ec12c4365a0)), closes [#215](https://github.com/jmcdo29/ogma/issues/215) [#228](https://github.com/jmcdo29/ogma/issues/228) [#297](https://github.com/jmcdo29/ogma/issues/297) + +### BREAKING CHANGES + +- **all:** log methods now take an object as the second parameter instead of having 3 extra optional parameters + ## [0.3.1](https://github.com/jmcdo29/ogma/compare/v0.3.0...v0.3.1) (2020-09-12) ### Features diff --git a/packages/logger/package.json b/packages/logger/package.json index 74e6588ca..23be86ce4 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -1,6 +1,6 @@ { "name": "@ogma/logger", - "version": "0.3.1", + "version": "0.4.0", "description": "A simple, no-nonsense logging package for NodeJS", "keywords": [ "logging", diff --git a/packages/nestjs-module/CHANGELOG.md b/packages/nestjs-module/CHANGELOG.md index 00287be2a..7d5d08b51 100644 --- a/packages/nestjs-module/CHANGELOG.md +++ b/packages/nestjs-module/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/jmcdo29/ogma/compare/v0.3.1...v0.4.0) (2020-10-25) + +### Features + +- **all:** allow to add extra metadata to logs ([f83904d](https://github.com/jmcdo29/ogma/commit/f83904d2e2038c9e09cae8f97a923ec12c4365a0)), closes [#215](https://github.com/jmcdo29/ogma/issues/215) [#228](https://github.com/jmcdo29/ogma/issues/228) [#297](https://github.com/jmcdo29/ogma/issues/297) + +### BREAKING CHANGES + +- **all:** log methods now take an object as the second parameter instead of having 3 extra optional parameters + ## [0.3.1](https://github.com/jmcdo29/ogma/compare/v0.3.0...v0.3.1) (2020-09-12) ### Features diff --git a/packages/nestjs-module/package.json b/packages/nestjs-module/package.json index e6a8e78c9..f8ac977b6 100644 --- a/packages/nestjs-module/package.json +++ b/packages/nestjs-module/package.json @@ -1,6 +1,6 @@ { "name": "@ogma/nestjs-module", - "version": "0.3.1", + "version": "0.4.0", "description": "A NestJS module for the Ogma logger", "keywords": [ "nestjs", @@ -33,7 +33,7 @@ }, "dependencies": { "@golevelup/nestjs-modules": "0.4.1", - "@ogma/logger": "^0.3.1" + "@ogma/logger": "^0.4.0" }, "peerDependencies": { "@nestjs/common": "^7.0.0", diff --git a/packages/platform-express/CHANGELOG.md b/packages/platform-express/CHANGELOG.md index e59e3af52..cfc46e6a6 100644 --- a/packages/platform-express/CHANGELOG.md +++ b/packages/platform-express/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/jmcdo29/ogma/compare/v0.3.1...v0.4.0) (2020-10-25) + +### Features + +- **all:** allow to add extra metadata to logs ([f83904d](https://github.com/jmcdo29/ogma/commit/f83904d2e2038c9e09cae8f97a923ec12c4365a0)), closes [#215](https://github.com/jmcdo29/ogma/issues/215) [#228](https://github.com/jmcdo29/ogma/issues/228) [#297](https://github.com/jmcdo29/ogma/issues/297) + +### BREAKING CHANGES + +- **all:** log methods now take an object as the second parameter instead of having 3 extra optional parameters + ## [0.3.1](https://github.com/jmcdo29/ogma/compare/v0.3.0...v0.3.1) (2020-09-12) **Note:** Version bump only for package @ogma/platform-express diff --git a/packages/platform-express/package.json b/packages/platform-express/package.json index 804c32ebd..1e2f825f8 100644 --- a/packages/platform-express/package.json +++ b/packages/platform-express/package.json @@ -1,6 +1,6 @@ { "name": "@ogma/platform-express", - "version": "0.3.1", + "version": "0.4.0", "description": "A plugin for the OgmaInterceptor to properly handle HTTP requests from Express", "keywords": [ "express", @@ -44,7 +44,7 @@ "@nestjs/common": "^7.0.6", "@nestjs/core": "^7.0.6", "@nestjs/platform-express": "^7.0.6", - "@ogma/nestjs-module": "^0.3.1", + "@ogma/nestjs-module": "^0.4.0", "@types/express": "^4.17.3" } } diff --git a/packages/platform-fastify/CHANGELOG.md b/packages/platform-fastify/CHANGELOG.md index 41308588f..cb4926d19 100644 --- a/packages/platform-fastify/CHANGELOG.md +++ b/packages/platform-fastify/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/jmcdo29/ogma/compare/v0.3.1...v0.4.0) (2020-10-25) + +### Features + +- **all:** allow to add extra metadata to logs ([f83904d](https://github.com/jmcdo29/ogma/commit/f83904d2e2038c9e09cae8f97a923ec12c4365a0)), closes [#215](https://github.com/jmcdo29/ogma/issues/215) [#228](https://github.com/jmcdo29/ogma/issues/228) [#297](https://github.com/jmcdo29/ogma/issues/297) + +### BREAKING CHANGES + +- **all:** log methods now take an object as the second parameter instead of having 3 extra optional parameters + ## [0.3.1](https://github.com/jmcdo29/ogma/compare/v0.3.0...v0.3.1) (2020-09-12) **Note:** Version bump only for package @ogma/platform-fastify diff --git a/packages/platform-fastify/package.json b/packages/platform-fastify/package.json index ed2160d18..b6a4a9adc 100644 --- a/packages/platform-fastify/package.json +++ b/packages/platform-fastify/package.json @@ -1,6 +1,6 @@ { "name": "@ogma/platform-fastify", - "version": "0.3.1", + "version": "0.4.0", "description": "A plugin for the OgmaInterceptor to properly handle HTTP requests from Fastify", "keywords": [ "fastify", @@ -39,7 +39,7 @@ "@nestjs/common": "^7.0.6", "@nestjs/core": "^7.0.6", "@nestjs/platform-fastify": "7.4.4", - "@ogma/nestjs-module": "^0.3.1", + "@ogma/nestjs-module": "^0.4.0", "fastify": "^3.3.0", "rxjs": "^6.5.4" }, diff --git a/packages/platform-graphql-fastify/CHANGELOG.md b/packages/platform-graphql-fastify/CHANGELOG.md index 1d43c2f88..c58427161 100644 --- a/packages/platform-graphql-fastify/CHANGELOG.md +++ b/packages/platform-graphql-fastify/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/jmcdo29/ogma/compare/v0.3.1...v0.4.0) (2020-10-25) + +### Features + +- **all:** allow to add extra metadata to logs ([f83904d](https://github.com/jmcdo29/ogma/commit/f83904d2e2038c9e09cae8f97a923ec12c4365a0)), closes [#215](https://github.com/jmcdo29/ogma/issues/215) [#228](https://github.com/jmcdo29/ogma/issues/228) [#297](https://github.com/jmcdo29/ogma/issues/297) + +### BREAKING CHANGES + +- **all:** log methods now take an object as the second parameter instead of having 3 extra optional parameters + ## [0.3.1](https://github.com/jmcdo29/ogma/compare/v0.3.0...v0.3.1) (2020-09-12) **Note:** Version bump only for package @ogma/platform-graphql-fastify diff --git a/packages/platform-graphql-fastify/package.json b/packages/platform-graphql-fastify/package.json index 9f153be13..3b9cf59d2 100644 --- a/packages/platform-graphql-fastify/package.json +++ b/packages/platform-graphql-fastify/package.json @@ -1,6 +1,6 @@ { "name": "@ogma/platform-graphql-fastify", - "version": "0.3.1", + "version": "0.4.0", "description": "A plugin for the OgmaInterceptor to proplery handle GQL requests with an Fastify server", "keywords": [ "fastify", @@ -39,8 +39,8 @@ "@nestjs/common": "^7.0.6", "@nestjs/core": "^7.0.6", "@nestjs/graphql": "^7.0.6", - "@ogma/nestjs-module": "^0.3.1", - "@ogma/platform-fastify": "^0.3.1", + "@ogma/nestjs-module": "^0.4.0", + "@ogma/platform-fastify": "^0.4.0", "apollo-server-fastify": "^2.16.0", "graphql": "^15.3.0", "graphql-tools": "^6.0.14", diff --git a/packages/platform-graphql/CHANGELOG.md b/packages/platform-graphql/CHANGELOG.md index 531ab8439..d2dedbf80 100644 --- a/packages/platform-graphql/CHANGELOG.md +++ b/packages/platform-graphql/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/jmcdo29/ogma/compare/v0.3.1...v0.4.0) (2020-10-25) + +### Features + +- **all:** allow to add extra metadata to logs ([f83904d](https://github.com/jmcdo29/ogma/commit/f83904d2e2038c9e09cae8f97a923ec12c4365a0)), closes [#215](https://github.com/jmcdo29/ogma/issues/215) [#228](https://github.com/jmcdo29/ogma/issues/228) [#297](https://github.com/jmcdo29/ogma/issues/297) + +### BREAKING CHANGES + +- **all:** log methods now take an object as the second parameter instead of having 3 extra optional parameters + ## [0.3.1](https://github.com/jmcdo29/ogma/compare/v0.3.0...v0.3.1) (2020-09-12) **Note:** Version bump only for package @ogma/platform-graphql diff --git a/packages/platform-graphql/package.json b/packages/platform-graphql/package.json index 1285d11c9..22220b996 100644 --- a/packages/platform-graphql/package.json +++ b/packages/platform-graphql/package.json @@ -1,6 +1,6 @@ { "name": "@ogma/platform-graphql", - "version": "0.3.1", + "version": "0.4.0", "description": "A plugin for the OgmaInterceptor to proplery handle GQL requests with an Express server", "keywords": [ "GraphQL", @@ -38,8 +38,8 @@ "@nestjs/common": "^7.0.0", "@nestjs/core": "^7.0.0", "@nestjs/graphql": "^7.0.0", - "@ogma/nestjs-module": "^0.3.1", - "@ogma/platform-express": "^0.3.1", + "@ogma/nestjs-module": "^0.4.0", + "@ogma/platform-express": "^0.4.0", "apollo-server-express": "^2.0.0", "graphql": "^15.3.0", "graphql-tools": "^6.0.13", diff --git a/packages/platform-grpc/CHANGELOG.md b/packages/platform-grpc/CHANGELOG.md index 950ea3dfc..248551b26 100644 --- a/packages/platform-grpc/CHANGELOG.md +++ b/packages/platform-grpc/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/jmcdo29/ogma/compare/v0.3.1...v0.4.0) (2020-10-25) + +### Features + +- **all:** allow to add extra metadata to logs ([f83904d](https://github.com/jmcdo29/ogma/commit/f83904d2e2038c9e09cae8f97a923ec12c4365a0)), closes [#215](https://github.com/jmcdo29/ogma/issues/215) [#228](https://github.com/jmcdo29/ogma/issues/228) [#297](https://github.com/jmcdo29/ogma/issues/297) + +### BREAKING CHANGES + +- **all:** log methods now take an object as the second parameter instead of having 3 extra optional parameters + ## [0.3.1](https://github.com/jmcdo29/ogma/compare/v0.3.0...v0.3.1) (2020-09-12) **Note:** Version bump only for package @ogma/platform-grpc diff --git a/packages/platform-grpc/package.json b/packages/platform-grpc/package.json index 7e6a0d043..f56559a35 100644 --- a/packages/platform-grpc/package.json +++ b/packages/platform-grpc/package.json @@ -1,6 +1,6 @@ { "name": "@ogma/platform-grpc", - "version": "0.3.1", + "version": "0.4.0", "description": "A plugin for the OgmaInterceptor to properly handle microservice requests from grpc protocols", "keywords": [ "grpc", @@ -39,7 +39,7 @@ "devDependencies": { "@nestjs/common": "^7.0.6", "@nestjs/core": "^7.0.6", - "@ogma/nestjs-module": "^0.3.1", + "@ogma/nestjs-module": "^0.4.0", "rxjs": "^6.5.4" }, "peerDependencies": { diff --git a/packages/platform-kafka/CHANGELOG.md b/packages/platform-kafka/CHANGELOG.md index e36a50f64..e981ba7b5 100644 --- a/packages/platform-kafka/CHANGELOG.md +++ b/packages/platform-kafka/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/jmcdo29/ogma/compare/v0.3.1...v0.4.0) (2020-10-25) + +### Features + +- **all:** allow to add extra metadata to logs ([f83904d](https://github.com/jmcdo29/ogma/commit/f83904d2e2038c9e09cae8f97a923ec12c4365a0)), closes [#215](https://github.com/jmcdo29/ogma/issues/215) [#228](https://github.com/jmcdo29/ogma/issues/228) [#297](https://github.com/jmcdo29/ogma/issues/297) + +### BREAKING CHANGES + +- **all:** log methods now take an object as the second parameter instead of having 3 extra optional parameters + ## [0.3.1](https://github.com/jmcdo29/ogma/compare/v0.3.0...v0.3.1) (2020-09-12) **Note:** Version bump only for package @ogma/platform-kafka diff --git a/packages/platform-kafka/package.json b/packages/platform-kafka/package.json index 50711eaa2..db39bb8ee 100644 --- a/packages/platform-kafka/package.json +++ b/packages/platform-kafka/package.json @@ -1,6 +1,6 @@ { "name": "@ogma/platform-kafka", - "version": "0.3.1", + "version": "0.4.0", "description": "A plugin for the OgmaInterceptor to properly handle microservice requests from Kafka protocols", "keywords": [ "kafka", @@ -39,7 +39,7 @@ "devDependencies": { "@nestjs/common": "^7.0.6", "@nestjs/core": "^7.0.6", - "@ogma/nestjs-module": "^0.3.1", + "@ogma/nestjs-module": "^0.4.0", "rxjs": "^6.5.4" }, "peerDependencies": { diff --git a/packages/platform-mqtt/CHANGELOG.md b/packages/platform-mqtt/CHANGELOG.md index 4106bd07e..7adeac759 100644 --- a/packages/platform-mqtt/CHANGELOG.md +++ b/packages/platform-mqtt/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/jmcdo29/ogma/compare/v0.3.1...v0.4.0) (2020-10-25) + +### Features + +- **all:** allow to add extra metadata to logs ([f83904d](https://github.com/jmcdo29/ogma/commit/f83904d2e2038c9e09cae8f97a923ec12c4365a0)), closes [#215](https://github.com/jmcdo29/ogma/issues/215) [#228](https://github.com/jmcdo29/ogma/issues/228) [#297](https://github.com/jmcdo29/ogma/issues/297) + +### BREAKING CHANGES + +- **all:** log methods now take an object as the second parameter instead of having 3 extra optional parameters + ## [0.3.1](https://github.com/jmcdo29/ogma/compare/v0.3.0...v0.3.1) (2020-09-12) **Note:** Version bump only for package @ogma/platform-mqtt diff --git a/packages/platform-mqtt/package.json b/packages/platform-mqtt/package.json index 086689b98..4bb5a54f3 100644 --- a/packages/platform-mqtt/package.json +++ b/packages/platform-mqtt/package.json @@ -1,6 +1,6 @@ { "name": "@ogma/platform-mqtt", - "version": "0.3.1", + "version": "0.4.0", "description": "A plugin for the OgmaInterceptor to properly handle microservice requests from mqtt protocols", "keywords": [ "mqtt", @@ -39,7 +39,7 @@ "devDependencies": { "@nestjs/common": "^7.0.6", "@nestjs/core": "^7.0.6", - "@ogma/nestjs-module": "^0.3.1", + "@ogma/nestjs-module": "^0.4.0", "rxjs": "^6.5.4" }, "peerDependencies": { diff --git a/packages/platform-nats/CHANGELOG.md b/packages/platform-nats/CHANGELOG.md index 56b506aa1..761f25d0b 100644 --- a/packages/platform-nats/CHANGELOG.md +++ b/packages/platform-nats/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/jmcdo29/ogma/compare/v0.3.1...v0.4.0) (2020-10-25) + +### Features + +- **all:** allow to add extra metadata to logs ([f83904d](https://github.com/jmcdo29/ogma/commit/f83904d2e2038c9e09cae8f97a923ec12c4365a0)), closes [#215](https://github.com/jmcdo29/ogma/issues/215) [#228](https://github.com/jmcdo29/ogma/issues/228) [#297](https://github.com/jmcdo29/ogma/issues/297) + +### BREAKING CHANGES + +- **all:** log methods now take an object as the second parameter instead of having 3 extra optional parameters + ## [0.3.1](https://github.com/jmcdo29/ogma/compare/v0.3.0...v0.3.1) (2020-09-12) **Note:** Version bump only for package @ogma/platform-nats diff --git a/packages/platform-nats/package.json b/packages/platform-nats/package.json index 6c9f54827..efa64db31 100644 --- a/packages/platform-nats/package.json +++ b/packages/platform-nats/package.json @@ -1,6 +1,6 @@ { "name": "@ogma/platform-nats", - "version": "0.3.1", + "version": "0.4.0", "description": "A plugin for the OgmaInterceptor to properly handle microservice requests from nats protocols", "keywords": [ "nats", @@ -39,7 +39,7 @@ "devDependencies": { "@nestjs/common": "^7.0.6", "@nestjs/core": "^7.0.6", - "@ogma/nestjs-module": "^0.3.1", + "@ogma/nestjs-module": "^0.4.0", "rxjs": "^6.5.4" }, "peerDependencies": { diff --git a/packages/platform-rabbitmq/CHANGELOG.md b/packages/platform-rabbitmq/CHANGELOG.md index 0bcff02a3..4353ca654 100644 --- a/packages/platform-rabbitmq/CHANGELOG.md +++ b/packages/platform-rabbitmq/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/jmcdo29/ogma/compare/v0.3.1...v0.4.0) (2020-10-25) + +### Features + +- **all:** allow to add extra metadata to logs ([f83904d](https://github.com/jmcdo29/ogma/commit/f83904d2e2038c9e09cae8f97a923ec12c4365a0)), closes [#215](https://github.com/jmcdo29/ogma/issues/215) [#228](https://github.com/jmcdo29/ogma/issues/228) [#297](https://github.com/jmcdo29/ogma/issues/297) + +### BREAKING CHANGES + +- **all:** log methods now take an object as the second parameter instead of having 3 extra optional parameters + ## [0.3.1](https://github.com/jmcdo29/ogma/compare/v0.3.0...v0.3.1) (2020-09-12) **Note:** Version bump only for package @ogma/platform-rabbitmq diff --git a/packages/platform-rabbitmq/package.json b/packages/platform-rabbitmq/package.json index dc26ffcea..410ca827a 100644 --- a/packages/platform-rabbitmq/package.json +++ b/packages/platform-rabbitmq/package.json @@ -1,6 +1,6 @@ { "name": "@ogma/platform-rabbitmq", - "version": "0.3.1", + "version": "0.4.0", "description": "A plugin for the OgmaInterceptor to properly handle microservice requests from amqp protocols", "author": "Jay McDoniel ", "homepage": "https://github.com/jmcdo29/ogma#readme", @@ -31,7 +31,7 @@ "devDependencies": { "@nestjs/common": "^7.0.6", "@nestjs/core": "^7.0.6", - "@ogma/nestjs-module": "^0.3.1", + "@ogma/nestjs-module": "^0.4.0", "rxjs": "^6.5.4" }, "peerDependencies": { diff --git a/packages/platform-redis/CHANGELOG.md b/packages/platform-redis/CHANGELOG.md index 7e2e17cf6..031040f06 100644 --- a/packages/platform-redis/CHANGELOG.md +++ b/packages/platform-redis/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/jmcdo29/ogma/compare/v0.3.1...v0.4.0) (2020-10-25) + +### Features + +- **all:** allow to add extra metadata to logs ([f83904d](https://github.com/jmcdo29/ogma/commit/f83904d2e2038c9e09cae8f97a923ec12c4365a0)), closes [#215](https://github.com/jmcdo29/ogma/issues/215) [#228](https://github.com/jmcdo29/ogma/issues/228) [#297](https://github.com/jmcdo29/ogma/issues/297) + +### BREAKING CHANGES + +- **all:** log methods now take an object as the second parameter instead of having 3 extra optional parameters + ## [0.3.1](https://github.com/jmcdo29/ogma/compare/v0.3.0...v0.3.1) (2020-09-12) **Note:** Version bump only for package @ogma/platform-redis diff --git a/packages/platform-redis/package.json b/packages/platform-redis/package.json index 96e0d75d6..9c21e2439 100644 --- a/packages/platform-redis/package.json +++ b/packages/platform-redis/package.json @@ -1,6 +1,6 @@ { "name": "@ogma/platform-redis", - "version": "0.3.1", + "version": "0.4.0", "description": "A plugin for the OgmaInterceptor to properly handle microservice requests from redis protocols", "keywords": [ "redis", @@ -38,7 +38,7 @@ "devDependencies": { "@nestjs/common": "^7.0.6", "@nestjs/core": "^7.0.6", - "@ogma/nestjs-module": "^0.3.1", + "@ogma/nestjs-module": "^0.4.0", "rxjs": "^6.5.4" }, "peerDependencies": { diff --git a/packages/platform-socket.io/CHANGELOG.md b/packages/platform-socket.io/CHANGELOG.md index 47a7e7917..3f24b1e66 100644 --- a/packages/platform-socket.io/CHANGELOG.md +++ b/packages/platform-socket.io/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/jmcdo29/ogma/compare/v0.3.1...v0.4.0) (2020-10-25) + +### Features + +- **all:** allow to add extra metadata to logs ([f83904d](https://github.com/jmcdo29/ogma/commit/f83904d2e2038c9e09cae8f97a923ec12c4365a0)), closes [#215](https://github.com/jmcdo29/ogma/issues/215) [#228](https://github.com/jmcdo29/ogma/issues/228) [#297](https://github.com/jmcdo29/ogma/issues/297) + +### BREAKING CHANGES + +- **all:** log methods now take an object as the second parameter instead of having 3 extra optional parameters + ## [0.3.1](https://github.com/jmcdo29/ogma/compare/v0.3.0...v0.3.1) (2020-09-12) **Note:** Version bump only for package @ogma/platform-socket.io diff --git a/packages/platform-socket.io/package.json b/packages/platform-socket.io/package.json index b76df9596..3f1370816 100644 --- a/packages/platform-socket.io/package.json +++ b/packages/platform-socket.io/package.json @@ -1,6 +1,6 @@ { "name": "@ogma/platform-socket.io", - "version": "0.3.1", + "version": "0.4.0", "description": "A plugin for the OgmaInterceptor to properly handle websocket requests from socket.io", "keywords": [ "socket.io", @@ -40,7 +40,7 @@ "@nestjs/core": "^7.0.6", "@nestjs/platform-socket.io": "^7.0.0", "@nestjs/websockets": "^7.0.0", - "@ogma/nestjs-module": "^0.3.1", + "@ogma/nestjs-module": "^0.4.0", "@types/socket.io": "^2.1.8", "rxjs": "^6.5.4" }, diff --git a/packages/platform-tcp/CHANGELOG.md b/packages/platform-tcp/CHANGELOG.md index 75d18a71f..46b80f039 100644 --- a/packages/platform-tcp/CHANGELOG.md +++ b/packages/platform-tcp/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/jmcdo29/ogma/compare/v0.3.1...v0.4.0) (2020-10-25) + +### Features + +- **all:** allow to add extra metadata to logs ([f83904d](https://github.com/jmcdo29/ogma/commit/f83904d2e2038c9e09cae8f97a923ec12c4365a0)), closes [#215](https://github.com/jmcdo29/ogma/issues/215) [#228](https://github.com/jmcdo29/ogma/issues/228) [#297](https://github.com/jmcdo29/ogma/issues/297) + +### BREAKING CHANGES + +- **all:** log methods now take an object as the second parameter instead of having 3 extra optional parameters + ## [0.3.1](https://github.com/jmcdo29/ogma/compare/v0.3.0...v0.3.1) (2020-09-12) **Note:** Version bump only for package @ogma/platform-tcp diff --git a/packages/platform-tcp/package.json b/packages/platform-tcp/package.json index 8b587724e..3c3894bc1 100644 --- a/packages/platform-tcp/package.json +++ b/packages/platform-tcp/package.json @@ -1,6 +1,6 @@ { "name": "@ogma/platform-tcp", - "version": "0.3.1", + "version": "0.4.0", "description": "A plugin for the OgmaInterceptor to properly handle microservice requests from tcp protocols", "keywords": [ "tcp", @@ -38,7 +38,7 @@ "devDependencies": { "@nestjs/common": "^7.0.6", "@nestjs/core": "^7.0.6", - "@ogma/nestjs-module": "^0.3.1", + "@ogma/nestjs-module": "^0.4.0", "rxjs": "^6.5.4" }, "peerDependencies": { diff --git a/packages/platform-ws/CHANGELOG.md b/packages/platform-ws/CHANGELOG.md index aeb3d52c2..73a7339c8 100644 --- a/packages/platform-ws/CHANGELOG.md +++ b/packages/platform-ws/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/jmcdo29/ogma/compare/v0.3.1...v0.4.0) (2020-10-25) + +### Features + +- **all:** allow to add extra metadata to logs ([f83904d](https://github.com/jmcdo29/ogma/commit/f83904d2e2038c9e09cae8f97a923ec12c4365a0)), closes [#215](https://github.com/jmcdo29/ogma/issues/215) [#228](https://github.com/jmcdo29/ogma/issues/228) [#297](https://github.com/jmcdo29/ogma/issues/297) + +### BREAKING CHANGES + +- **all:** log methods now take an object as the second parameter instead of having 3 extra optional parameters + ## [0.3.1](https://github.com/jmcdo29/ogma/compare/v0.3.0...v0.3.1) (2020-09-12) **Note:** Version bump only for package @ogma/platform-ws diff --git a/packages/platform-ws/package.json b/packages/platform-ws/package.json index a6c6da620..12ea850cb 100644 --- a/packages/platform-ws/package.json +++ b/packages/platform-ws/package.json @@ -1,6 +1,6 @@ { "name": "@ogma/platform-ws", - "version": "0.3.1", + "version": "0.4.0", "description": "A plugin for the OgmaInterceptor to properly handle websocket requests from ws", "keywords": [ "ws", @@ -38,7 +38,7 @@ "devDependencies": { "@nestjs/common": "^7.0.6", "@nestjs/core": "^7.0.6", - "@ogma/nestjs-module": "^0.3.1", + "@ogma/nestjs-module": "^0.4.0", "rxjs": "^6.5.4" }, "peerDependencies": {