Skip to content

Commit

Permalink
chore: Release v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ktutnik committed Jul 5, 2021
1 parent 90e2ab7 commit 15f9ee5
Show file tree
Hide file tree
Showing 14 changed files with 85 additions and 11 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.4](https://github.com/plumier/plumier/compare/v1.0.3...v1.0.4) (2021-07-05)


### Bug Fixes

* Fixed issue Open API tag applied on custom generic controller creating multiple tags ([#992](https://github.com/plumier/plumier/issues/992)) ([dc54af9](https://github.com/plumier/plumier/commit/dc54af982b53f0a1a6119b3ca34928a73b773eac))
* **swagger:** Add spacing between policy names and expand/collapse icon on Swagger UI ([#1002](https://github.com/plumier/plumier/issues/1002)) ([90e2ab7](https://github.com/plumier/plumier/commit/90e2ab789a4f513efc04cceb6ca86bc0779ae843))
* **swagger:** Fixed multiple Open API tags not being applied correctly on First Class Entity and Nested First Class Entity ([#996](https://github.com/plumier/plumier/issues/996)) ([65d1cfd](https://github.com/plumier/plumier/commit/65d1cfdbb3b46d42c312b7b48ede7a822ca53437))
* **typeorm:** Fix array relation insert issue on nested generic controller ([#999](https://github.com/plumier/plumier/issues/999)) ([9b9354f](https://github.com/plumier/plumier/commit/9b9354fb135dbbfa95604cceca284f73feca16b5))
* **typeorm:** Give proper error message when nested generic controller used on array relation without inverse property ([#1000](https://github.com/plumier/plumier/issues/1000)) ([e4ee57f](https://github.com/plumier/plumier/commit/e4ee57f1cbef9ce61be18a8f54b8c2e9ef26e3b7))





## [1.0.3](https://github.com/plumier/plumier/compare/v1.0.2...v1.0.3) (2021-06-28)


Expand Down
8 changes: 8 additions & 0 deletions docs/docusaurus/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.4](https://github.com/plumier/plumier/compare/v1.0.3...v1.0.4) (2021-07-05)

**Note:** Version bump only for package plumier-docs





## [1.0.2](https://github.com/plumier/plumier/compare/v1.0.0...v1.0.2) (2021-06-06)

**Note:** Version bump only for package plumier-docs
Expand Down
2 changes: 1 addition & 1 deletion docs/docusaurus/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plumier-docs",
"version": "1.0.2",
"version": "1.0.4",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"packages/*"
],
"useWorkspaces": true,
"version": "1.0.3",
"version": "1.0.4",
"command": {
"publish": {
"conventionalCommits": true,
Expand Down
12 changes: 12 additions & 0 deletions packages/generic-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.4](https://github.com/plumier/plumier/compare/v1.0.3...v1.0.4) (2021-07-05)


### Bug Fixes

* Fixed issue Open API tag applied on custom generic controller creating multiple tags ([#992](https://github.com/plumier/plumier/issues/992)) ([dc54af9](https://github.com/plumier/plumier/commit/dc54af982b53f0a1a6119b3ca34928a73b773eac))
* **swagger:** Fixed multiple Open API tags not being applied correctly on First Class Entity and Nested First Class Entity ([#996](https://github.com/plumier/plumier/issues/996)) ([65d1cfd](https://github.com/plumier/plumier/commit/65d1cfdbb3b46d42c312b7b48ede7a822ca53437))





## [1.0.3](https://github.com/plumier/plumier/compare/v1.0.2...v1.0.3) (2021-06-28)


Expand Down
2 changes: 1 addition & 1 deletion packages/generic-controller/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plumier/generic-controller",
"version": "1.0.3",
"version": "1.0.4",
"description": "Plumier generic controller implementation",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/mongoose/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.4](https://github.com/plumier/plumier/compare/v1.0.3...v1.0.4) (2021-07-05)

**Note:** Version bump only for package @plumier/mongoose





## [1.0.3](https://github.com/plumier/plumier/compare/v1.0.2...v1.0.3) (2021-06-28)


Expand Down
4 changes: 2 additions & 2 deletions packages/mongoose/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plumier/mongoose",
"version": "1.0.3",
"version": "1.0.4",
"description": "Mongoose with decorator based configuration",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -16,7 +16,7 @@
"license": "MIT",
"dependencies": {
"@plumier/core": "^1.0.3",
"@plumier/generic-controller": "^1.0.3",
"@plumier/generic-controller": "^1.0.4",
"@types/pluralize": "^0.0.29",
"chalk": "^4.1.1",
"mongoose": "^5.12.12",
Expand Down
8 changes: 8 additions & 0 deletions packages/plumier/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.4](https://github.com/plumier/plumier/compare/v1.0.3...v1.0.4) (2021-07-05)

**Note:** Version bump only for package plumier





## [1.0.3](https://github.com/plumier/plumier/compare/v1.0.2...v1.0.3) (2021-06-28)

**Note:** Version bump only for package plumier
Expand Down
4 changes: 2 additions & 2 deletions packages/plumier/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plumier",
"version": "1.0.3",
"version": "1.0.4",
"description": "Delightful Node.js Rest Framework",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -20,7 +20,7 @@
"dependencies": {
"@koa/cors": "^3.1.0",
"@plumier/core": "^1.0.3",
"@plumier/generic-controller": "^1.0.3",
"@plumier/generic-controller": "^1.0.4",
"@types/bytes": "^3.1.0",
"@types/koa": "^2.13.3",
"@types/koa__cors": "^3.0.2",
Expand Down
11 changes: 11 additions & 0 deletions packages/swagger/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.4](https://github.com/plumier/plumier/compare/v1.0.3...v1.0.4) (2021-07-05)


### Bug Fixes

* **swagger:** Add spacing between policy names and expand/collapse icon on Swagger UI ([#1002](https://github.com/plumier/plumier/issues/1002)) ([90e2ab7](https://github.com/plumier/plumier/commit/90e2ab789a4f513efc04cceb6ca86bc0779ae843))





## [1.0.3](https://github.com/plumier/plumier/compare/v1.0.2...v1.0.3) (2021-06-28)


Expand Down
4 changes: 2 additions & 2 deletions packages/swagger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plumier/swagger",
"version": "1.0.3",
"version": "1.0.4",
"description": "Swagger and Open API 3 module for Plumier",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -13,7 +13,7 @@
"license": "MIT",
"dependencies": {
"@plumier/core": "^1.0.3",
"@plumier/generic-controller": "^1.0.3",
"@plumier/generic-controller": "^1.0.4",
"@plumier/serve-static": "^1.0.3",
"@types/ejs": "^3.0.6",
"@types/swagger-ui-dist": "^3.30.0",
Expand Down
12 changes: 12 additions & 0 deletions packages/typeorm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.4](https://github.com/plumier/plumier/compare/v1.0.3...v1.0.4) (2021-07-05)


### Bug Fixes

* **typeorm:** Fix array relation insert issue on nested generic controller ([#999](https://github.com/plumier/plumier/issues/999)) ([9b9354f](https://github.com/plumier/plumier/commit/9b9354fb135dbbfa95604cceca284f73feca16b5))
* **typeorm:** Give proper error message when nested generic controller used on array relation without inverse property ([#1000](https://github.com/plumier/plumier/issues/1000)) ([e4ee57f](https://github.com/plumier/plumier/commit/e4ee57f1cbef9ce61be18a8f54b8c2e9ef26e3b7))





## [1.0.3](https://github.com/plumier/plumier/compare/v1.0.2...v1.0.3) (2021-06-28)


Expand Down
4 changes: 2 additions & 2 deletions packages/typeorm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plumier/typeorm",
"version": "1.0.3",
"version": "1.0.4",
"description": "TypeOrm helper for Plumier",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -16,7 +16,7 @@
"license": "MIT",
"dependencies": {
"@plumier/core": "^1.0.3",
"@plumier/generic-controller": "^1.0.3",
"@plumier/generic-controller": "^1.0.4",
"@types/pluralize": "^0.0.29",
"pluralize": "^8.0.0",
"typeorm": "^0.2.32"
Expand Down

0 comments on commit 15f9ee5

Please sign in to comment.