Skip to content

Commit

Permalink
chore: Release v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ktutnik committed Mar 10, 2023
1 parent 0fac589 commit 548e038
Show file tree
Hide file tree
Showing 26 changed files with 144 additions and 32 deletions.
12 changes: 12 additions & 0 deletions 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.1.3](https://github.com/plumier/plumier/compare/v1.1.2...v1.1.3) (2023-03-10)


### Bug Fixes

* **reflect:** Fix issue on pure JavaScript class with private field ([#1050](https://github.com/plumier/plumier/issues/1050)) ([2f07d85](https://github.com/plumier/plumier/commit/2f07d859d310ae36c017e8719555f56a28035c63)), closes [#1049](https://github.com/plumier/plumier/issues/1049)
* **reflect:** Missing tslib package error ([#1052](https://github.com/plumier/plumier/issues/1052)) ([0fac589](https://github.com/plumier/plumier/commit/0fac58948eae4cd5c03138b1d2ca414deade229b))





## [1.1.2](https://github.com/plumier/plumier/compare/v1.1.1...v1.1.2) (2023-01-20)


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.1.2",
"version": "1.1.3",
"command": {
"publish": {
"conventionalCommits": true,
Expand Down
8 changes: 8 additions & 0 deletions packages/core/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.1.3](https://github.com/plumier/plumier/compare/v1.1.2...v1.1.3) (2023-03-10)

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





## [1.1.2](https://github.com/plumier/plumier/compare/v1.1.1...v1.1.2) (2023-01-20)

**Note:** Version bump only for package @plumier/core
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plumier/core",
"version": "1.1.2",
"version": "1.1.3",
"description": "Delightful Node.js Rest Framework",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -20,8 +20,8 @@
"author": "Ketut Sandiarsa",
"license": "MIT",
"dependencies": {
"@plumier/reflect": "^1.1.2",
"@plumier/validator": "^1.1.2",
"@plumier/reflect": "^1.1.3",
"@plumier/validator": "^1.1.3",
"@types/debug": "^4.1.7",
"@types/glob": "^7.2.0",
"chalk": "^4.1.2",
Expand Down
8 changes: 8 additions & 0 deletions packages/generic-controller/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.1.3](https://github.com/plumier/plumier/compare/v1.1.2...v1.1.3) (2023-03-10)

**Note:** Version bump only for package @plumier/generic-controller





## [1.1.2](https://github.com/plumier/plumier/compare/v1.1.1...v1.1.2) (2023-01-20)

**Note:** Version bump only for package @plumier/generic-controller
Expand Down
6 changes: 3 additions & 3 deletions 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.1.2",
"version": "1.1.3",
"description": "Plumier generic controller implementation",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -20,8 +20,8 @@
"author": "Ketut Sandiarsa",
"license": "MIT",
"dependencies": {
"@plumier/core": "^1.1.2",
"@plumier/query-parser": "^1.1.2"
"@plumier/core": "^1.1.3",
"@plumier/query-parser": "^1.1.3"
},
"devDependencies": {
"cpy-cli": "^3.1.1"
Expand Down
8 changes: 8 additions & 0 deletions packages/jwt/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.1.3](https://github.com/plumier/plumier/compare/v1.1.2...v1.1.3) (2023-03-10)

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





## [1.1.2](https://github.com/plumier/plumier/compare/v1.1.1...v1.1.2) (2023-01-20)

**Note:** Version bump only for package @plumier/jwt
Expand Down
6 changes: 3 additions & 3 deletions packages/jwt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plumier/jwt",
"version": "1.1.2",
"version": "1.1.3",
"description": "Plumier authorization module using JWT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -11,8 +11,8 @@
"author": "Ketut Sandiarsa",
"license": "MIT",
"dependencies": {
"@plumier/core": "^1.1.2",
"@plumier/query-parser": "^1.1.2",
"@plumier/core": "^1.1.3",
"@plumier/query-parser": "^1.1.3",
"koa-jwt": "^4.0.3"
},
"devDependencies": {
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.1.3](https://github.com/plumier/plumier/compare/v1.1.2...v1.1.3) (2023-03-10)

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





## [1.1.2](https://github.com/plumier/plumier/compare/v1.1.1...v1.1.2) (2023-01-20)

**Note:** Version bump only for package @plumier/mongoose
Expand Down
6 changes: 3 additions & 3 deletions packages/mongoose/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plumier/mongoose",
"version": "1.1.2",
"version": "1.1.3",
"description": "Mongoose with decorator based configuration",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -15,8 +15,8 @@
"author": "Ketut Sandiarsa",
"license": "MIT",
"dependencies": {
"@plumier/core": "^1.1.2",
"@plumier/generic-controller": "^1.1.2",
"@plumier/core": "^1.1.3",
"@plumier/generic-controller": "^1.1.3",
"@types/pluralize": "^0.0.29",
"chalk": "^4.1.2",
"mongoose": "^5.13.15",
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.1.3](https://github.com/plumier/plumier/compare/v1.1.2...v1.1.3) (2023-03-10)

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





## [1.1.2](https://github.com/plumier/plumier/compare/v1.1.1...v1.1.2) (2023-01-20)

**Note:** Version bump only for package plumier
Expand Down
6 changes: 3 additions & 3 deletions packages/plumier/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plumier",
"version": "1.1.2",
"version": "1.1.3",
"description": "Delightful Node.js Rest Framework",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -19,8 +19,8 @@
"license": "MIT",
"dependencies": {
"@koa/cors": "^3.4.3",
"@plumier/core": "^1.1.2",
"@plumier/generic-controller": "^1.1.2",
"@plumier/core": "^1.1.3",
"@plumier/generic-controller": "^1.1.3",
"@types/bytes": "^3.1.1",
"@types/koa": "^2.13.5",
"@types/koa__cors": "^3.3.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/query-parser/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.1.3](https://github.com/plumier/plumier/compare/v1.1.2...v1.1.3) (2023-03-10)

**Note:** Version bump only for package @plumier/query-parser





## [1.1.2](https://github.com/plumier/plumier/compare/v1.1.1...v1.1.2) (2023-01-20)

**Note:** Version bump only for package @plumier/query-parser
Expand Down
4 changes: 2 additions & 2 deletions packages/query-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plumier/query-parser",
"version": "1.1.2",
"version": "1.1.3",
"description": "Plumier testing modules",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -21,7 +21,7 @@
"author": "Ketut Sandiarsa",
"license": "MIT",
"dependencies": {
"@plumier/core": "^1.1.2",
"@plumier/core": "^1.1.3",
"@types/nearley": "^2.11.2",
"nearley": "^2.20.1"
},
Expand Down
12 changes: 12 additions & 0 deletions packages/reflect/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.1.3](https://github.com/plumier/plumier/compare/v1.1.2...v1.1.3) (2023-03-10)


### Bug Fixes

* **reflect:** Fix issue on pure JavaScript class with private field ([#1050](https://github.com/plumier/plumier/issues/1050)) ([2f07d85](https://github.com/plumier/plumier/commit/2f07d859d310ae36c017e8719555f56a28035c63)), closes [#1049](https://github.com/plumier/plumier/issues/1049)
* **reflect:** Missing tslib package error ([#1052](https://github.com/plumier/plumier/issues/1052)) ([0fac589](https://github.com/plumier/plumier/commit/0fac58948eae4cd5c03138b1d2ca414deade229b))





## [1.1.2](https://github.com/plumier/plumier/compare/v1.1.1...v1.1.2) (2023-01-20)


Expand Down
2 changes: 1 addition & 1 deletion packages/reflect/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plumier/reflect",
"version": "1.1.2",
"version": "1.1.3",
"description": "Plumier reflection module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/serve-static/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.1.3](https://github.com/plumier/plumier/compare/v1.1.2...v1.1.3) (2023-03-10)

**Note:** Version bump only for package @plumier/serve-static





## [1.1.2](https://github.com/plumier/plumier/compare/v1.1.1...v1.1.2) (2023-01-20)

**Note:** Version bump only for package @plumier/serve-static
Expand Down
4 changes: 2 additions & 2 deletions packages/serve-static/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plumier/serve-static",
"version": "1.1.2",
"version": "1.1.3",
"description": "Serve static file for Plumier",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -14,7 +14,7 @@
"author": "Ketut Sandiarsa",
"license": "MIT",
"dependencies": {
"@plumier/core": "^1.1.2",
"@plumier/core": "^1.1.3",
"@types/koa-send": "^4.1.3",
"@types/mime-types": "2.1.1",
"koa-send": "^5.0.1",
Expand Down
8 changes: 8 additions & 0 deletions packages/social-login/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.1.3](https://github.com/plumier/plumier/compare/v1.1.2...v1.1.3) (2023-03-10)

**Note:** Version bump only for package @plumier/social-login





## [1.1.2](https://github.com/plumier/plumier/compare/v1.1.1...v1.1.2) (2023-01-20)

**Note:** Version bump only for package @plumier/social-login
Expand Down
4 changes: 2 additions & 2 deletions packages/social-login/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plumier/social-login",
"version": "1.1.2",
"version": "1.1.3",
"description": "OAuth module for Plumier",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -10,7 +10,7 @@
"author": "Ketut Sandiarsa",
"license": "MIT",
"dependencies": {
"@plumier/core": "^1.1.2",
"@plumier/core": "^1.1.3",
"@types/csrf": "^3.1.0",
"@types/debug": "^4.1.7",
"axios": "1.2.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/swagger/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.1.3](https://github.com/plumier/plumier/compare/v1.1.2...v1.1.3) (2023-03-10)

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





## [1.1.2](https://github.com/plumier/plumier/compare/v1.1.1...v1.1.2) (2023-01-20)

**Note:** Version bump only for package @plumier/swagger
Expand Down
8 changes: 4 additions & 4 deletions packages/swagger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plumier/swagger",
"version": "1.1.2",
"version": "1.1.3",
"description": "Swagger and Open API 3 module for Plumier",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -12,9 +12,9 @@
"author": "Ketut Sandiarsa",
"license": "MIT",
"dependencies": {
"@plumier/core": "^1.1.2",
"@plumier/generic-controller": "^1.1.2",
"@plumier/serve-static": "^1.1.2",
"@plumier/core": "^1.1.3",
"@plumier/generic-controller": "^1.1.3",
"@plumier/serve-static": "^1.1.3",
"@types/ejs": "^3.1.1",
"@types/swagger-ui-dist": "^3.30.1",
"ejs": "^3.1.8",
Expand Down
8 changes: 8 additions & 0 deletions packages/typeorm/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.1.3](https://github.com/plumier/plumier/compare/v1.1.2...v1.1.3) (2023-03-10)

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





## [1.1.2](https://github.com/plumier/plumier/compare/v1.1.1...v1.1.2) (2023-01-20)

**Note:** Version bump only for package @plumier/typeorm
Expand Down
6 changes: 3 additions & 3 deletions packages/typeorm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plumier/typeorm",
"version": "1.1.2",
"version": "1.1.3",
"description": "TypeOrm helper for Plumier",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -15,8 +15,8 @@
"author": "Ketut Sandiarsa",
"license": "MIT",
"dependencies": {
"@plumier/core": "^1.1.2",
"@plumier/generic-controller": "^1.1.2",
"@plumier/core": "^1.1.3",
"@plumier/generic-controller": "^1.1.3",
"@types/pluralize": "^0.0.29",
"pluralize": "^8.0.0",
"typeorm": "0.2.40"
Expand Down
Loading

0 comments on commit 548e038

Please sign in to comment.