@kintone/dts-gen 5.0.21 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +45 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,51 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [6.0.0](https://github.com/kintone/js-sdk/compare/@kintone/dts-gen@5.0.23...@kintone/dts-gen@6.0.0) (2022-05-13)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* chore!: drop Node v12 support because of the EOL (BREAKING CHANGE) (#1493) ([0d9dae1](https://github.com/kintone/js-sdk/commit/0d9dae10582fc40d89a1af8db4a2efc1d776a456)), closes [#1493](https://github.com/kintone/js-sdk/issues/1493)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **deps:** update dependency axios to ^0.27.2 ([#1457](https://github.com/kintone/js-sdk/issues/1457)) ([a1f069c](https://github.com/kintone/js-sdk/commit/a1f069cd705129f58bb7149bad7738a7c90d903d))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### BREAKING CHANGES
|
|
18
|
+
|
|
19
|
+
* drop Node v12 support because of the EOL.
|
|
20
|
+
|
|
21
|
+
* ci: update Node version 14 -> 16
|
|
22
|
+
|
|
23
|
+
* ci: remove Node 18.x from test workflow
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
## [5.0.23](https://github.com/kintone/js-sdk/compare/@kintone/dts-gen@5.0.22...@kintone/dts-gen@5.0.23) (2022-04-28)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
|
|
34
|
+
* **deps:** update dependency commander to ^9.2.0 ([#1419](https://github.com/kintone/js-sdk/issues/1419)) ([fc5d572](https://github.com/kintone/js-sdk/commit/fc5d57237f446873034e0f7e460f749d05292526))
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
## [5.0.22](https://github.com/kintone/js-sdk/compare/@kintone/dts-gen@5.0.21...@kintone/dts-gen@5.0.22) (2022-03-18)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
### Bug Fixes
|
|
44
|
+
|
|
45
|
+
* **deps:** update dependency axios to ^0.26.1 ([#1399](https://github.com/kintone/js-sdk/issues/1399)) ([ebba9fc](https://github.com/kintone/js-sdk/commit/ebba9fc8bf8c12d436945b2d07f988c8dcc4ac4c))
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
6
51
|
## [5.0.21](https://github.com/kintone/js-sdk/compare/@kintone/dts-gen@5.0.20...@kintone/dts-gen@5.0.21) (2022-03-04)
|
|
7
52
|
|
|
8
53
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kintone/dts-gen",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "Types for kintone js api and Types generating tools",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"build:integration": "webpack --mode development --config webpack.config.js"
|
|
22
22
|
},
|
|
23
23
|
"engines": {
|
|
24
|
-
"node": ">=
|
|
24
|
+
"node": ">=14"
|
|
25
25
|
},
|
|
26
26
|
"author": {
|
|
27
27
|
"name": "Cybozu, Inc.",
|
|
@@ -29,16 +29,16 @@
|
|
|
29
29
|
},
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"axios": "^0.
|
|
33
|
-
"commander": "^9.
|
|
32
|
+
"axios": "^0.27.2",
|
|
33
|
+
"commander": "^9.2.0",
|
|
34
34
|
"form-data": "^4.0.0",
|
|
35
35
|
"lodash": "^4.17.21",
|
|
36
|
-
"prettier": "^2.
|
|
36
|
+
"prettier": "^2.6.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@types/lodash": "^4.14.
|
|
40
|
-
"ts-loader": "^9.
|
|
41
|
-
"webpack": "^5.
|
|
39
|
+
"@types/lodash": "^4.14.182",
|
|
40
|
+
"ts-loader": "^9.3.0",
|
|
41
|
+
"webpack": "^5.72.1",
|
|
42
42
|
"webpack-cli": "^4.9.2"
|
|
43
43
|
},
|
|
44
44
|
"bin": {
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"keywords": [
|
|
61
61
|
"kintone"
|
|
62
62
|
],
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "a379d35c576ab3ce1983009c17063dc4f80facab"
|
|
64
64
|
}
|