Skip to content

Commit ca8d5f5

Browse files
authored
chore(release): v0.2.0 (#19)
* feat(yarn): upgrade * chore(release): v0.2.0
1 parent 6c5af85 commit ca8d5f5

19 files changed

+272
-146
lines changed

CHANGELOG.md

+16
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+
# 0.2.0 (2022-05-02)
7+
8+
9+
### Features
10+
11+
* body parser ([66aec5d](https://github.com/godgiven-project/typeServerLib/commit/66aec5d1547cb495d803922978fe2c1bd28b4f20))
12+
* **demo:** Add util page ([d078c99](https://github.com/godgiven-project/typeServerLib/commit/d078c992afaeae82773abfa63cb22ae5df411149))
13+
* exclude .d.ts ([11b147e](https://github.com/godgiven-project/typeServerLib/commit/11b147e5c7d8d2170bc7d3666817245edda6cbf0))
14+
* lerna and typeServer ([9319611](https://github.com/godgiven-project/typeServerLib/commit/9319611c8a75a9d1cec4fcf9f41b413d37d3edf4))
15+
* **util:** init and uuid ([0380c87](https://github.com/godgiven-project/typeServerLib/commit/0380c876aa203df8ea5d49b6c31c43e3eb1433d5))
16+
* **yarn:** upgrade ([89901ef](https://github.com/godgiven-project/typeServerLib/commit/89901efe18fb73d05f28224c9bf54e428eab0625))
17+
18+
19+
20+
21+
622
## 0.1.4 (2022-04-02)
723

824

demo/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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+
# 0.2.0 (2022-05-02)
7+
8+
9+
### Features
10+
11+
* **demo:** Add util page ([d078c99](https://github.com/godgiven-project/typeServerLib/commit/d078c992afaeae82773abfa63cb22ae5df411149))
12+
* **yarn:** upgrade ([89901ef](https://github.com/godgiven-project/typeServerLib/commit/89901efe18fb73d05f28224c9bf54e428eab0625))
13+
14+
15+
16+
17+
618
## 0.1.4 (2022-04-02)
719

820

demo/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@godgiven/demo",
3-
"version": "0.1.4",
3+
"version": "0.2.0",
44
"description": "Rest full api server",
55
"main": "index.js",
66
"author": "Godgiven",
@@ -9,14 +9,14 @@
99
"dependencies": {
1010
"debug": "^4.3.4",
1111
"jsonwebtoken": "^8.5.1",
12-
"tslib": "^2.2.0"
12+
"tslib": "^2.4.0"
1313
},
1414
"devDependencies": {
15-
"@godgiven/database": "^0.1.4",
16-
"@godgiven/json-file": "^0.1.4",
17-
"@godgiven/type-server": "^0.1.4",
18-
"@godgiven/validator": "^0.1.4",
19-
"@godgiven/util": "^0.1.4",
15+
"@godgiven/database": "^0.2.0",
16+
"@godgiven/json-file": "^0.2.0",
17+
"@godgiven/type-server": "^0.2.0",
18+
"@godgiven/util": "^0.2.0",
19+
"@godgiven/validator": "^0.2.0",
2020
"@types/debug": "^4.1.7",
2121
"@types/jsonwebtoken": "^8.5.8"
2222
}

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.1.4",
2+
"version": "0.2.0",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"package": [

package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,22 @@
4242
"devDependencies": {
4343
"@types/debug": "^4.1.7",
4444
"@types/jsonwebtoken": "^8.5.8",
45-
"@types/node": "^17.0.23",
46-
"@typescript-eslint/eslint-plugin": "^5.17.0",
47-
"@typescript-eslint/parser": "^5.17.0",
45+
"@types/node": "^17.0.31",
46+
"@typescript-eslint/eslint-plugin": "^5.22.0",
47+
"@typescript-eslint/parser": "^5.22.0",
4848
"@webcomponents/webcomponentsjs": "^2.5.0",
49-
"eslint": "^8.12.0",
50-
"eslint-config-standard": "^16.0.2",
49+
"eslint": "^8.14.0",
50+
"eslint-config-standard": "^17.0.0",
5151
"eslint-config-standard-with-typescript": "^21.0.1",
52-
"eslint-plugin-import": "^2.25.4",
53-
"eslint-plugin-jsdoc": "^38.1.5",
52+
"eslint-plugin-import": "^2.26.0",
53+
"eslint-plugin-jsdoc": "^39.2.9",
5454
"eslint-plugin-node": "^11.1.0",
5555
"eslint-plugin-promise": "^6.0.0",
5656
"eslint-plugin-wc": "^1.3.2",
5757
"lerna": "^4.0.0",
58-
"nodemon": "^2.0.15",
58+
"nodemon": "^2.0.16",
5959
"npm-run-all": "^4.1.5",
60-
"typescript": "^4.6.3"
60+
"typescript": "^4.6.4"
6161
},
6262
"author": "Godgiven",
6363
"license": "Apache-2.0"

package/database/CHANGELOG.md

+11
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+
# 0.2.0 (2022-05-02)
7+
8+
9+
### Features
10+
11+
* **yarn:** upgrade ([89901ef](https://github.com/godgiven-project/typeServerLib/commit/89901efe18fb73d05f28224c9bf54e428eab0625))
12+
13+
14+
15+
16+
617
## 0.1.4 (2022-04-02)
718

819
**Note:** Version bump only for package @godgiven/database

package/database/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "@godgiven/database",
3-
"version": "0.1.4",
3+
"version": "0.2.0",
44
"description": "Typescript/Javascript middlewere for communicate to databases",
55
"main": "index.js",
66
"author": "Godgiven",
77
"type": "module",
88
"types": "index.d.ts",
99
"license": "Apache-2.0",
1010
"dependencies": {
11-
"@godgiven/json-file": "^0.1.4",
12-
"@godgiven/util": "^0.1.4",
13-
"tslib": "^2.2.0"
11+
"@godgiven/json-file": "^0.2.0",
12+
"@godgiven/util": "^0.2.0",
13+
"tslib": "^2.4.0"
1414
},
1515
"repository": {
1616
"type": "git",

package/json-file/CHANGELOG.md

+11
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+
# 0.2.0 (2022-05-02)
7+
8+
9+
### Features
10+
11+
* **yarn:** upgrade ([89901ef](https://github.com/godgiven-project/typeServerLib/commit/89901efe18fb73d05f28224c9bf54e428eab0625))
12+
13+
14+
15+
16+
617
## 0.1.4 (2022-04-02)
718

819
**Note:** Version bump only for package @godgiven/json-file

package/json-file/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "@godgiven/json-file",
3-
"version": "0.1.4",
3+
"version": "0.2.0",
44
"description": "Typescript/Javascript json file manager package",
55
"main": "index.js",
66
"author": "Godgiven",
77
"type": "module",
88
"types": "index.d.ts",
99
"license": "Apache-2.0",
1010
"dependencies": {
11-
"tslib": "^2.2.0"
11+
"tslib": "^2.4.0"
1212
},
1313
"repository": {
1414
"type": "git",
@@ -26,6 +26,6 @@
2626
"access": "public"
2727
},
2828
"devDependencies": {
29-
"@types/node": "^17.0.23"
29+
"@types/node": "^17.0.31"
3030
}
3131
}

package/signal/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
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+
# 0.2.0 (2022-05-02)
7+
8+
9+
### Features
10+
11+
* exclude .d.ts ([11b147e](https://github.com/godgiven-project/typeServerLib/commit/11b147e5c7d8d2170bc7d3666817245edda6cbf0))
12+
* lerna and typeServer ([9319611](https://github.com/godgiven-project/typeServerLib/commit/9319611c8a75a9d1cec4fcf9f41b413d37d3edf4))
13+
* **yarn:** upgrade ([89901ef](https://github.com/godgiven-project/typeServerLib/commit/89901efe18fb73d05f28224c9bf54e428eab0625))
14+
15+
16+
17+
18+
619
## 0.1.4 (2022-04-02)
720

821

package/signal/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "@godgiven/signal",
3-
"version": "0.1.4",
3+
"version": "0.2.0",
44
"description": "Typescript/Javascript signal message handeler",
55
"main": "index.js",
66
"author": "Godgiven",
77
"type": "module",
88
"types": "index.d.ts",
99
"license": "Apache-2.0",
1010
"dependencies": {
11-
"tslib": "^2.2.0"
11+
"tslib": "^2.4.0"
1212
},
1313
"repository": {
1414
"type": "git",

package/type-server/CHANGELOG.md

+11
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+
# 0.2.0 (2022-05-02)
7+
8+
9+
### Features
10+
11+
* **yarn:** upgrade ([89901ef](https://github.com/godgiven-project/typeServerLib/commit/89901efe18fb73d05f28224c9bf54e428eab0625))
12+
13+
14+
15+
16+
617
## 0.1.4 (2022-04-02)
718

819
**Note:** Version bump only for package @godgiven/type-server

package/type-server/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "@godgiven/type-server",
3-
"version": "0.1.4",
3+
"version": "0.2.0",
44
"description": "Rest full api server with http",
55
"main": "index.js",
66
"author": "Godgiven",
77
"type": "module",
88
"types": "index.d.ts",
99
"license": "Apache-2.0",
1010
"dependencies": {
11-
"@godgiven/signal": "^0.1.4",
11+
"@godgiven/signal": "^0.2.0",
1212
"debug": "^4.3.4",
13-
"tslib": "^2.2.0"
13+
"tslib": "^2.4.0"
1414
},
1515
"devDependencies": {
1616
"@types/debug": "^4.1.7"

package/util/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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+
# 0.2.0 (2022-05-02)
7+
8+
9+
### Features
10+
11+
* **util:** init and uuid ([0380c87](https://github.com/godgiven-project/typeServerLib/commit/0380c876aa203df8ea5d49b6c31c43e3eb1433d5))
12+
* **yarn:** upgrade ([89901ef](https://github.com/godgiven-project/typeServerLib/commit/89901efe18fb73d05f28224c9bf54e428eab0625))
13+
14+
15+
16+
17+
618
## 0.1.4 (2022-04-02)
719

820

package/util/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "@godgiven/util",
3-
"version": "0.1.4",
3+
"version": "0.2.0",
44
"description": "Typescript/Javascript util package",
55
"main": "index.js",
66
"author": "Godgiven",
77
"type": "module",
88
"types": "index.d.ts",
99
"license": "Apache-2.0",
1010
"dependencies": {
11-
"tslib": "^2.2.0"
11+
"tslib": "^2.4.0"
1212
},
1313
"repository": {
1414
"type": "git",
@@ -26,6 +26,6 @@
2626
"access": "public"
2727
},
2828
"devDependencies": {
29-
"@types/node": "^17.0.23"
29+
"@types/node": "^17.0.31"
3030
}
3131
}

package/validator/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 0.2.0 (2022-05-02)
7+
8+
9+
### Features
10+
11+
* **yarn:** upgrade ([89901ef](https://github.com/godgiven-project/typeServerLib/commit/89901efe18fb73d05f28224c9bf54e428eab0625))

package/validator/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "@godgiven/validator",
3-
"version": "0.1.4",
3+
"version": "0.2.0",
44
"description": "Typescript/Javascript validator",
55
"main": "index.js",
66
"author": "Godgiven",
77
"type": "module",
88
"types": "index.d.ts",
99
"license": "Apache-2.0",
1010
"dependencies": {
11-
"tslib": "^2.2.0",
11+
"tslib": "^2.4.0",
1212
"validator": "^13.7.0"
1313
},
1414
"repository": {

postman/typeServerLib.postman_collection.json

+18
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,24 @@
2323
},
2424
"response": []
2525
},
26+
{
27+
"name": "Validator",
28+
"request": {
29+
"method": "GET",
30+
"header": [],
31+
"url": {
32+
"raw": "{{host}}/{{v}}/validator",
33+
"host": [
34+
"{{host}}"
35+
],
36+
"path": [
37+
"{{v}}",
38+
"validator"
39+
]
40+
}
41+
},
42+
"response": []
43+
},
2644
{
2745
"name": "Util",
2846
"request": {

0 commit comments

Comments
 (0)