Skip to content

Commit 4b29e9b

Browse files
author
Travis CI User
committed
chore(release): Travis CI update [ci skip]
1 parent a16c5ee commit 4b29e9b

File tree

12 files changed

+57
-10
lines changed

12 files changed

+57
-10
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.5.22](https://github.com/pharindoko/json-serverless/compare/v1.5.21...v1.5.22) (2020-01-27)
7+
8+
9+
### Bug Fixes
10+
11+
* **server:** fix missing property initialization in swagger spec ([942a38a](https://github.com/pharindoko/json-serverless/commit/942a38ad956c3934f7df4446b05c399295e0df65))
12+
13+
14+
### Features
15+
16+
* **cli:** add readonly mode for local run option ([a16c5ee](https://github.com/pharindoko/json-serverless/commit/a16c5ee1031b255e07b3367055efcde9562ce47d))
17+
18+
19+
20+
21+
622
## [1.5.21](https://github.com/pharindoko/json-serverless/compare/v1.5.19...v1.5.21) (2020-01-25)
723

824

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"packages/cli/template",
55
"packages/server"
66
],
7-
"version": "1.5.21"
7+
"version": "1.5.22"
88
}

packages/cli/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.5.22](https://github.com/pharindoko/json-serverless/compare/v1.5.21...v1.5.22) (2020-01-27)
7+
8+
9+
### Features
10+
11+
* **cli:** add readonly mode for local run option ([a16c5ee](https://github.com/pharindoko/json-serverless/commit/a16c5ee1031b255e07b3367055efcde9562ce47d))
12+
13+
14+
15+
16+
617
## [1.5.21](https://github.com/pharindoko/json-serverless/compare/v1.5.19...v1.5.21) (2020-01-25)
718

819

packages/cli/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $ npm install -g json-serverless
1919
$ jsonsls COMMAND
2020
running command...
2121
$ jsonsls (-v|--version|version)
22-
json-serverless/1.5.21 linux-x64 node-v10.18.1
22+
json-serverless/1.5.22 linux-x64 node-v10.18.1
2323
$ jsonsls --help [COMMAND]
2424
USAGE
2525
$ jsonsls COMMAND
@@ -83,6 +83,7 @@ ARGUMENTS
8383
OPTIONS
8484
-e, --env=development|local [default: local] environment
8585
-h, --help show CLI help
86+
-r, --readonly set api to readonly (true) or writeable (false)
8687
```
8788

8889
## `jsonsls update-stack`

packages/cli/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "json-serverless",
33
"description": "cli for json-serverless project",
4-
"version": "1.5.21",
4+
"version": "1.5.22",
55
"author": "pharindoko",
66
"bin": {
77
"jsonsls": "./bin/run"
@@ -22,7 +22,7 @@
2222
"figlet": "^1.2.4",
2323
"globby": "^11.0.0",
2424
"inquirer": "^7.0.1",
25-
"json-serverless-lib": "^1.5.21",
25+
"json-serverless-lib": "^1.5.22",
2626
"listr": "^0.14.3",
2727
"node-env-webpack-plugin": "1.1.0",
2828
"nodemon": "2.0.2",

packages/cli/template/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.5.22](https://github.com/pharindoko/json-serverless/compare/v1.5.21...v1.5.22) (2020-01-27)
7+
8+
**Note:** Version bump only for package json-serverless-template
9+
10+
11+
12+
13+
614
## [1.5.21](https://github.com/pharindoko/json-serverless/compare/v1.5.19...v1.5.21) (2020-01-25)
715

816

packages/cli/template/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/cli/template/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "json-serverless-template",
3-
"version": "1.5.21",
3+
"version": "1.5.22",
44
"description": "template for json-serverless project",
55
"author": "pharindoko",
66
"bugs": "https://github.com/pharindoko/json-serverless/issues",
77
"dependencies": {
88
"@types/express": "4.17.1",
99
"express": "4.17.1",
10-
"json-serverless-lib": "^1.5.21",
10+
"json-serverless-lib": "^1.5.22",
1111
"serverless-http": "^2.3.0"
1212
},
1313
"devDependencies": {

packages/server/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.5.22](https://github.com/pharindoko/json-serverless/compare/v1.5.21...v1.5.22) (2020-01-27)
7+
8+
9+
### Bug Fixes
10+
11+
* **server:** fix missing property initialization in swagger spec ([942a38a](https://github.com/pharindoko/json-serverless/commit/942a38ad956c3934f7df4446b05c399295e0df65))
12+
13+
14+
15+
16+
617
## [1.5.21](https://github.com/pharindoko/json-serverless/compare/v1.5.19...v1.5.21) (2020-01-25)
718

819
**Note:** Version bump only for package json-serverless-lib

packages/server/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "json-serverless-lib",
3-
"version": "1.5.21",
3+
"version": "1.5.22",
44
"description": "Transform a json file into an api",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

0 commit comments

Comments
 (0)