Skip to content

Commit a2a4c1c

Browse files
author
Travis CI User
committed
chore(release): Travis CI update [ci skip]
1 parent 0ffcc1d commit a2a4c1c

File tree

12 files changed

+82
-13
lines changed

12 files changed

+82
-13
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,31 @@
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.31](https://github.com/pharindoko/json-serverless/compare/v1.5.30...v1.5.31) (2020-05-04)
7+
8+
9+
### Bug Fixes
10+
11+
* **references:** update dependencies ([b1b5414](https://github.com/pharindoko/json-serverless/commit/b1b5414e5361be89ca6f15ddb52a4fedbc54a4b9))
12+
* **server:** correct wrong swagger response types ([f4ce050](https://github.com/pharindoko/json-serverless/commit/f4ce0507adb1b84e004f811ea80c100f22bdd6a2))
13+
* **server:** fail on first request to swagger ui solved by initial request ot middleware ([9cb764d](https://github.com/pharindoko/json-serverless/commit/9cb764d209c33f0c2dc2a6f7ef2ec8db46ac2ef5))
14+
15+
16+
### Features
17+
18+
* **cli:** list all relevant urls as output ([c9a053e](https://github.com/pharindoko/json-serverless/commit/c9a053ee0974ce8b5de68f36980354247ed21bba))
19+
* **server:** add example to start the library directly ([01ec1a9](https://github.com/pharindoko/json-serverless/commit/01ec1a958391bd908cc668df4c3f0ae0ba8457e0))
20+
* **server:** add graphql interface ([51aae16](https://github.com/pharindoko/json-serverless/commit/51aae16642a3694aedadbd80df702a4d8724eac2))
21+
22+
23+
### Reverts
24+
25+
* **server:** revert change of db.json back to basic sample ([fbb743c](https://github.com/pharindoko/json-serverless/commit/fbb743ce055c16e6a79a1a5465d7250c2f6a3021))
26+
27+
28+
29+
30+
631
## [1.5.30](https://github.com/pharindoko/json-serverless/compare/v1.5.27...v1.5.30) (2020-04-12)
732

833

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"packages/server",
55
"packages/template"
66
],
7-
"version": "1.5.30"
7+
"version": "1.5.31"
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.31](https://github.com/pharindoko/json-serverless/compare/v1.5.30...v1.5.31) (2020-05-04)
7+
8+
9+
### Features
10+
11+
* **cli:** list all relevant urls as output ([c9a053e](https://github.com/pharindoko/json-serverless/commit/c9a053ee0974ce8b5de68f36980354247ed21bba))
12+
13+
14+
15+
16+
617
## [1.5.30](https://github.com/pharindoko/json-serverless/compare/v1.5.27...v1.5.30) (2020-04-12)
718

819

packages/cli/README.md

Lines changed: 1 addition & 3 deletions
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.30 linux-x64 node-v10.20.1
22+
json-serverless/1.5.31 linux-x64 node-v10.20.1
2323
$ jsonsls --help [COMMAND]
2424
USAGE
2525
$ jsonsls COMMAND
@@ -49,7 +49,6 @@ OPTIONS
4949
-a, --apikeyauth require api key authentication to access api
5050
-h, --help show CLI help
5151
-r, --readonly set api to readonly (true) or writeable (false)
52-
-s, --swagger activate swagger ui support
5352
```
5453

5554
## `jsonsls help [COMMAND]`
@@ -98,6 +97,5 @@ OPTIONS
9897
-a, --apikeyauth require api key authentication to access api
9998
-h, --help show CLI help
10099
-r, --readonly set api to readonly (true) or writeable (false)
101-
-s, --swagger activate swagger ui support
102100
```
103101
<!-- commandsstop -->

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: 3 additions & 3 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.30",
4+
"version": "1.5.31",
55
"author": "pharindoko",
66
"bin": {
77
"jsonsls": "./bin/run"
@@ -23,8 +23,8 @@
2323
"figlet": "^1.3.0",
2424
"globby": "^11.0.0",
2525
"inquirer": "^7.1.0",
26-
"json-serverless-lib": "^1.5.30",
27-
"json-serverless-template": "^1.5.30",
26+
"json-serverless-lib": "^1.5.31",
27+
"json-serverless-template": "^1.5.31",
2828
"listr": "^0.14.3",
2929
"node-env-webpack-plugin": "1.1.0",
3030
"nodemon": "2.0.3",

packages/server/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
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.31](https://github.com/pharindoko/json-serverless/compare/v1.5.30...v1.5.31) (2020-05-04)
7+
8+
9+
### Bug Fixes
10+
11+
* **server:** correct wrong swagger response types ([f4ce050](https://github.com/pharindoko/json-serverless/commit/f4ce0507adb1b84e004f811ea80c100f22bdd6a2))
12+
* **server:** fail on first request to swagger ui solved by initial request ot middleware ([9cb764d](https://github.com/pharindoko/json-serverless/commit/9cb764d209c33f0c2dc2a6f7ef2ec8db46ac2ef5))
13+
14+
15+
### Features
16+
17+
* **cli:** list all relevant urls as output ([c9a053e](https://github.com/pharindoko/json-serverless/commit/c9a053ee0974ce8b5de68f36980354247ed21bba))
18+
* **server:** add example to start the library directly ([01ec1a9](https://github.com/pharindoko/json-serverless/commit/01ec1a958391bd908cc668df4c3f0ae0ba8457e0))
19+
* **server:** add graphql interface ([51aae16](https://github.com/pharindoko/json-serverless/commit/51aae16642a3694aedadbd80df702a4d8724eac2))
20+
21+
22+
### Reverts
23+
24+
* **server:** revert change of db.json back to basic sample ([fbb743c](https://github.com/pharindoko/json-serverless/commit/fbb743ce055c16e6a79a1a5465d7250c2f6a3021))
25+
26+
27+
28+
29+
630
## [1.5.30](https://github.com/pharindoko/json-serverless/compare/v1.5.27...v1.5.30) (2020-04-12)
731

832
**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.30",
3+
"version": "1.5.31",
44
"description": "Transform a json file into an api",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

packages/template/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.31](https://github.com/pharindoko/json-serverless/compare/v1.5.30...v1.5.31) (2020-05-04)
7+
8+
9+
### Bug Fixes
10+
11+
* **references:** update dependencies ([b1b5414](https://github.com/pharindoko/json-serverless/commit/b1b5414e5361be89ca6f15ddb52a4fedbc54a4b9))
12+
13+
14+
15+
16+
617
## [1.5.30](https://github.com/pharindoko/json-serverless/compare/v1.5.27...v1.5.30) (2020-04-12)
718

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

packages/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/template/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "json-serverless-template",
3-
"version": "1.5.30",
3+
"version": "1.5.31",
44
"description": "template for json-serverless project",
55
"author": "pharindoko",
66
"bugs": "https://github.com/pharindoko/json-serverless/issues",
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"express": "4.17.1",
14-
"json-serverless-lib": "^1.5.30",
14+
"json-serverless-lib": "^1.5.31",
1515
"serverless-http": "^2.3.2"
1616
},
1717
"devDependencies": {

0 commit comments

Comments
 (0)