koatty 3.8.3 → 3.9.1-1
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/.rollup.config.js +62 -62
- package/.vscode/launch.json +41 -41
- package/CHANGELOG.md +157 -148
- package/LICENSE +29 -29
- package/README.md +162 -162
- package/dist/LICENSE +29 -29
- package/dist/README.md +162 -162
- package/dist/index.d.ts +2 -3
- package/dist/index.js +17 -75
- package/dist/index.mjs +16 -69
- package/dist/package.json +96 -97
- package/package.json +96 -97
- package/tsconfig.test.json +14 -14
package/.rollup.config.js
CHANGED
@@ -1,63 +1,63 @@
|
|
1
|
-
/*
|
2
|
-
* @Description:
|
3
|
-
* @Usage:
|
4
|
-
* @Author: richen
|
5
|
-
* @Date: 2021-12-17 10:20:44
|
6
|
-
* @LastEditTime: 2022-05-27 11:50:23
|
7
|
-
*/
|
8
|
-
import json from "@rollup/plugin-json";
|
9
|
-
import typescript from 'rollup-plugin-typescript2';
|
10
|
-
// import babel from '@rollup/plugin-babel';
|
11
|
-
|
12
|
-
export default [
|
13
|
-
{
|
14
|
-
input: './src/index.ts',
|
15
|
-
output: [{
|
16
|
-
format: 'cjs',
|
17
|
-
file: './dist/index.js',
|
18
|
-
banner: require('./scripts/copyright')
|
19
|
-
}],
|
20
|
-
plugins: [
|
21
|
-
// babel({
|
22
|
-
// babelHelpers: "runtime",
|
23
|
-
// configFile: './babel.config.js',
|
24
|
-
// exclude: 'node_modules/**',
|
25
|
-
// }),
|
26
|
-
json(),
|
27
|
-
typescript({
|
28
|
-
tsconfigOverride: {
|
29
|
-
compilerOptions: {
|
30
|
-
declaration: false,
|
31
|
-
declarationMap: false,
|
32
|
-
module: "ESNext"
|
33
|
-
}
|
34
|
-
}
|
35
|
-
})
|
36
|
-
]
|
37
|
-
},
|
38
|
-
{
|
39
|
-
input: './src/index.ts',
|
40
|
-
output: [{
|
41
|
-
format: 'es',
|
42
|
-
file: './dist/index.mjs',
|
43
|
-
banner: require('./scripts/copyright')
|
44
|
-
}],
|
45
|
-
plugins: [
|
46
|
-
// babel({
|
47
|
-
// babelHelpers: "runtime",
|
48
|
-
// configFile: './babel.config.js',
|
49
|
-
// exclude: 'node_modules/**',
|
50
|
-
// }),
|
51
|
-
json(),
|
52
|
-
typescript({
|
53
|
-
tsconfigOverride: {
|
54
|
-
compilerOptions: {
|
55
|
-
declaration: false,
|
56
|
-
declarationMap: false,
|
57
|
-
module: "ESNext"
|
58
|
-
}
|
59
|
-
}
|
60
|
-
})
|
61
|
-
]
|
62
|
-
}
|
1
|
+
/*
|
2
|
+
* @Description:
|
3
|
+
* @Usage:
|
4
|
+
* @Author: richen
|
5
|
+
* @Date: 2021-12-17 10:20:44
|
6
|
+
* @LastEditTime: 2022-05-27 11:50:23
|
7
|
+
*/
|
8
|
+
import json from "@rollup/plugin-json";
|
9
|
+
import typescript from 'rollup-plugin-typescript2';
|
10
|
+
// import babel from '@rollup/plugin-babel';
|
11
|
+
|
12
|
+
export default [
|
13
|
+
{
|
14
|
+
input: './src/index.ts',
|
15
|
+
output: [{
|
16
|
+
format: 'cjs',
|
17
|
+
file: './dist/index.js',
|
18
|
+
banner: require('./scripts/copyright')
|
19
|
+
}],
|
20
|
+
plugins: [
|
21
|
+
// babel({
|
22
|
+
// babelHelpers: "runtime",
|
23
|
+
// configFile: './babel.config.js',
|
24
|
+
// exclude: 'node_modules/**',
|
25
|
+
// }),
|
26
|
+
json(),
|
27
|
+
typescript({
|
28
|
+
tsconfigOverride: {
|
29
|
+
compilerOptions: {
|
30
|
+
declaration: false,
|
31
|
+
declarationMap: false,
|
32
|
+
module: "ESNext"
|
33
|
+
}
|
34
|
+
}
|
35
|
+
})
|
36
|
+
]
|
37
|
+
},
|
38
|
+
{
|
39
|
+
input: './src/index.ts',
|
40
|
+
output: [{
|
41
|
+
format: 'es',
|
42
|
+
file: './dist/index.mjs',
|
43
|
+
banner: require('./scripts/copyright')
|
44
|
+
}],
|
45
|
+
plugins: [
|
46
|
+
// babel({
|
47
|
+
// babelHelpers: "runtime",
|
48
|
+
// configFile: './babel.config.js',
|
49
|
+
// exclude: 'node_modules/**',
|
50
|
+
// }),
|
51
|
+
json(),
|
52
|
+
typescript({
|
53
|
+
tsconfigOverride: {
|
54
|
+
compilerOptions: {
|
55
|
+
declaration: false,
|
56
|
+
declarationMap: false,
|
57
|
+
module: "ESNext"
|
58
|
+
}
|
59
|
+
}
|
60
|
+
})
|
61
|
+
]
|
62
|
+
}
|
63
63
|
]
|
package/.vscode/launch.json
CHANGED
@@ -1,42 +1,42 @@
|
|
1
|
-
{
|
2
|
-
"version": "0.2.0",
|
3
|
-
"configurations": [
|
4
|
-
{
|
5
|
-
"type": "node",
|
6
|
-
"request": "launch",
|
7
|
-
"name": "Koatty Demo Program",
|
8
|
-
"args": [
|
9
|
-
"${workspaceRoot}/demo/src/App.ts"
|
10
|
-
],
|
11
|
-
"runtimeArgs": [
|
12
|
-
"--nolazy",
|
13
|
-
"-r",
|
14
|
-
"ts-node/register"
|
15
|
-
],
|
16
|
-
"env": {
|
17
|
-
"NODE_ENV": "development"
|
18
|
-
},
|
19
|
-
"outputCapture": "std",
|
20
|
-
"sourceMaps": true,
|
21
|
-
"cwd": "${workspaceRoot}",
|
22
|
-
"protocol": "inspector",
|
23
|
-
"internalConsoleOptions": "neverOpen"
|
24
|
-
},
|
25
|
-
{
|
26
|
-
"type": "node",
|
27
|
-
"name": "vscode-jest-tests",
|
28
|
-
"request": "launch",
|
29
|
-
"console": "integratedTerminal",
|
30
|
-
"internalConsoleOptions": "neverOpen",
|
31
|
-
"disableOptimisticBPs": true,
|
32
|
-
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
33
|
-
"cwd": "${workspaceFolder}",
|
34
|
-
"args": [
|
35
|
-
"--config",
|
36
|
-
"jest.config.js",
|
37
|
-
"--runInBand",
|
38
|
-
"--watchAll=false"
|
39
|
-
]
|
40
|
-
}
|
41
|
-
]
|
1
|
+
{
|
2
|
+
"version": "0.2.0",
|
3
|
+
"configurations": [
|
4
|
+
{
|
5
|
+
"type": "node",
|
6
|
+
"request": "launch",
|
7
|
+
"name": "Koatty Demo Program",
|
8
|
+
"args": [
|
9
|
+
"${workspaceRoot}/demo/src/App.ts"
|
10
|
+
],
|
11
|
+
"runtimeArgs": [
|
12
|
+
"--nolazy",
|
13
|
+
"-r",
|
14
|
+
"ts-node/register"
|
15
|
+
],
|
16
|
+
"env": {
|
17
|
+
"NODE_ENV": "development"
|
18
|
+
},
|
19
|
+
"outputCapture": "std",
|
20
|
+
"sourceMaps": true,
|
21
|
+
"cwd": "${workspaceRoot}",
|
22
|
+
"protocol": "inspector",
|
23
|
+
"internalConsoleOptions": "neverOpen"
|
24
|
+
},
|
25
|
+
{
|
26
|
+
"type": "node",
|
27
|
+
"name": "vscode-jest-tests",
|
28
|
+
"request": "launch",
|
29
|
+
"console": "integratedTerminal",
|
30
|
+
"internalConsoleOptions": "neverOpen",
|
31
|
+
"disableOptimisticBPs": true,
|
32
|
+
"program": "${workspaceFolder}/node_modules/.bin/jest",
|
33
|
+
"cwd": "${workspaceFolder}",
|
34
|
+
"args": [
|
35
|
+
"--config",
|
36
|
+
"jest.config.js",
|
37
|
+
"--runInBand",
|
38
|
+
"--watchAll=false"
|
39
|
+
]
|
40
|
+
}
|
41
|
+
]
|
42
42
|
}
|
package/CHANGELOG.md
CHANGED
@@ -2,156 +2,165 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
4
4
|
|
5
|
-
### [3.
|
5
|
+
### [3.9.1-1](https://github.com/thinkkoa/koatty/compare/v3.9.1-0...v3.9.1-1) (2023-07-26)
|
6
6
|
|
7
|
-
### [3.
|
8
|
-
|
9
|
-
## [3.8.0-6](https://github.com/thinkkoa/koatty/compare/v3.8.0-5...v3.8.0-6) (2023-03-04)
|
10
|
-
|
11
|
-
|
12
|
-
### Bug Fixes
|
13
|
-
|
14
|
-
* change event ([7d651a7](https://github.com/thinkkoa/koatty/commit/7d651a7b3453c0878dd37d0890509b2908e4afdf))
|
15
|
-
* 修改listen callback函数类型 ([9a3b29f](https://github.com/thinkkoa/koatty/commit/9a3b29f8d16a06b3627e5ccf88c08460e2cc3ae2))
|
16
|
-
|
17
|
-
## [3.8.0-5](https://github.com/thinkkoa/koatty/compare/v3.8.0-4...v3.8.0-5) (2023-02-26)
|
18
|
-
|
19
|
-
## [3.8.0-4](https://github.com/thinkkoa/koatty/compare/v3.8.0-3...v3.8.0-4) (2023-02-26)
|
20
|
-
|
21
|
-
|
22
|
-
### Bug Fixes
|
23
|
-
|
24
|
-
* app.version ([5e82cef](https://github.com/thinkkoa/koatty/commit/5e82cef804f5ae01f7fffd9c0ed3379f80995542))
|
25
|
-
* path of package.json ([6d4f2f6](https://github.com/thinkkoa/koatty/commit/6d4f2f664ad6b16053ae67be787436cacf2434f1))
|
26
|
-
|
27
|
-
## [3.8.0-3](https://github.com/thinkkoa/koatty/compare/v3.8.0-2...v3.8.0-3) (2023-02-26)
|
28
|
-
|
29
|
-
## [3.8.0-2](https://github.com/thinkkoa/koatty/compare/v3.8.0-1...v3.8.0-2) (2023-02-26)
|
30
|
-
|
31
|
-
## [3.8.0-1](https://github.com/thinkkoa/koatty/compare/v3.8.0-0...v3.8.0-1) (2023-02-21)
|
32
|
-
|
33
|
-
|
34
|
-
### Bug Fixes
|
35
|
-
|
36
|
-
* version is getter ([1f43b68](https://github.com/thinkkoa/koatty/commit/1f43b68b3434eecc8d0ce154380c16e39a347634))
|
37
|
-
|
38
|
-
## [3.8.0-0](https://github.com/thinkkoa/koatty/compare/v3.7.9...v3.8.0-0) (2023-02-21)
|
39
|
-
|
40
|
-
|
41
|
-
### Features
|
42
|
-
|
43
|
-
* koatty_trace支持opentracing ([ae67ce0](https://github.com/thinkkoa/koatty/commit/ae67ce05c8e731a149d67b2b5e98edc88bef9861))
|
44
|
-
|
45
|
-
|
46
|
-
### Bug Fixes
|
47
|
-
|
48
|
-
* core模块app增加name及version ([e55db1a](https://github.com/thinkkoa/koatty/commit/e55db1aa78369181b54d0d11c6319b20f21d50f2))
|
49
|
-
* SetLogger读取配置变更 ([9765908](https://github.com/thinkkoa/koatty/commit/9765908a6b00486a510e8028cdbe5fc27ecadc88))
|
50
|
-
* 修改container关于 app及 ctx 接口定义 ([a7c318a](https://github.com/thinkkoa/koatty/commit/a7c318a649531acb5a7cfeb4f9b357fc9418cff7))
|
51
|
-
|
52
|
-
### [3.7.9](https://github.com/thinkkoa/koatty/compare/v3.7.8...v3.7.9) (2023-02-17)
|
53
|
-
|
54
|
-
|
55
|
-
### Bug Fixes
|
56
|
-
|
57
|
-
* 绑定参数类型转换 ([4fc5bc8](https://github.com/thinkkoa/koatty/commit/4fc5bc8927a5be9b51bd23f8b702bbf34c9b42c3))
|
58
|
-
|
59
|
-
### [3.7.8](https://github.com/thinkkoa/koatty/compare/v3.7.7...v3.7.8) (2023-02-17)
|
60
|
-
|
61
|
-
### [3.7.7](https://github.com/thinkkoa/koatty/compare/v3.7.6...v3.7.7) (2023-02-15)
|
62
|
-
|
63
|
-
|
64
|
-
### Bug Fixes
|
65
|
-
|
66
|
-
* rebuild logger ([42cdb96](https://github.com/thinkkoa/koatty/commit/42cdb964c2e0a41a93b1a895084c92c016cbad24))
|
67
|
-
|
68
|
-
### [3.7.6](https://github.com/thinkkoa/koatty/compare/v3.7.4...v3.7.6) (2023-01-13)
|
69
|
-
|
70
|
-
### [3.7.4](https://github.com/thinkkoa/koatty/compare/v3.7.3...v3.7.4) (2022-11-18)
|
71
|
-
|
72
|
-
|
73
|
-
### Bug Fixes
|
74
|
-
|
75
|
-
* prod模式log打印不全 ([bf3c81b](https://github.com/thinkkoa/koatty/commit/bf3c81b1851630eacc36558a7fc7cf444dce9c91))
|
76
|
-
* wrong words ([024a1fa](https://github.com/thinkkoa/koatty/commit/024a1fa0ff7e8a327ecb6e482b36e450e63dcc4b))
|
77
|
-
* 更新logo ([4e5554e](https://github.com/thinkkoa/koatty/commit/4e5554e13404cba81c3585bcac3dd017abbf8267))
|
78
|
-
|
79
|
-
### [3.7.3](https://github.com/thinkkoa/koatty/compare/v3.7.2...v3.7.3) (2022-11-16)
|
7
|
+
### [3.9.1-0](https://github.com/thinkkoa/koatty/compare/v3.8.3...v3.9.1-0) (2023-07-26)
|
80
8
|
|
81
9
|
|
82
10
|
### Bug Fixes
|
83
11
|
|
84
|
-
*
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
###
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
###
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
### [3.
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
###
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
### [3.
|
150
|
-
|
151
|
-
### [3.
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
12
|
+
* type defined ([95228fa](https://github.com/thinkkoa/koatty/commit/95228fa651955c1960a28a6252dbcfb17adddf11))
|
13
|
+
|
14
|
+
### [3.8.3](https://github.com/thinkkoa/koatty/compare/v3.8.2...v3.8.3) (2023-05-23)
|
15
|
+
|
16
|
+
### [3.8.2](https://github.com/thinkkoa/koatty/compare/v3.8.0...v3.8.2) (2023-03-04)
|
17
|
+
|
18
|
+
## [3.8.0-6](https://github.com/thinkkoa/koatty/compare/v3.8.0-5...v3.8.0-6) (2023-03-04)
|
19
|
+
|
20
|
+
|
21
|
+
### Bug Fixes
|
22
|
+
|
23
|
+
* change event ([7d651a7](https://github.com/thinkkoa/koatty/commit/7d651a7b3453c0878dd37d0890509b2908e4afdf))
|
24
|
+
* 修改listen callback函数类型 ([9a3b29f](https://github.com/thinkkoa/koatty/commit/9a3b29f8d16a06b3627e5ccf88c08460e2cc3ae2))
|
25
|
+
|
26
|
+
## [3.8.0-5](https://github.com/thinkkoa/koatty/compare/v3.8.0-4...v3.8.0-5) (2023-02-26)
|
27
|
+
|
28
|
+
## [3.8.0-4](https://github.com/thinkkoa/koatty/compare/v3.8.0-3...v3.8.0-4) (2023-02-26)
|
29
|
+
|
30
|
+
|
31
|
+
### Bug Fixes
|
32
|
+
|
33
|
+
* app.version ([5e82cef](https://github.com/thinkkoa/koatty/commit/5e82cef804f5ae01f7fffd9c0ed3379f80995542))
|
34
|
+
* path of package.json ([6d4f2f6](https://github.com/thinkkoa/koatty/commit/6d4f2f664ad6b16053ae67be787436cacf2434f1))
|
35
|
+
|
36
|
+
## [3.8.0-3](https://github.com/thinkkoa/koatty/compare/v3.8.0-2...v3.8.0-3) (2023-02-26)
|
37
|
+
|
38
|
+
## [3.8.0-2](https://github.com/thinkkoa/koatty/compare/v3.8.0-1...v3.8.0-2) (2023-02-26)
|
39
|
+
|
40
|
+
## [3.8.0-1](https://github.com/thinkkoa/koatty/compare/v3.8.0-0...v3.8.0-1) (2023-02-21)
|
41
|
+
|
42
|
+
|
43
|
+
### Bug Fixes
|
44
|
+
|
45
|
+
* version is getter ([1f43b68](https://github.com/thinkkoa/koatty/commit/1f43b68b3434eecc8d0ce154380c16e39a347634))
|
46
|
+
|
47
|
+
## [3.8.0-0](https://github.com/thinkkoa/koatty/compare/v3.7.9...v3.8.0-0) (2023-02-21)
|
48
|
+
|
49
|
+
|
50
|
+
### Features
|
51
|
+
|
52
|
+
* koatty_trace支持opentracing ([ae67ce0](https://github.com/thinkkoa/koatty/commit/ae67ce05c8e731a149d67b2b5e98edc88bef9861))
|
53
|
+
|
54
|
+
|
55
|
+
### Bug Fixes
|
56
|
+
|
57
|
+
* core模块app增加name及version ([e55db1a](https://github.com/thinkkoa/koatty/commit/e55db1aa78369181b54d0d11c6319b20f21d50f2))
|
58
|
+
* SetLogger读取配置变更 ([9765908](https://github.com/thinkkoa/koatty/commit/9765908a6b00486a510e8028cdbe5fc27ecadc88))
|
59
|
+
* 修改container关于 app及 ctx 接口定义 ([a7c318a](https://github.com/thinkkoa/koatty/commit/a7c318a649531acb5a7cfeb4f9b357fc9418cff7))
|
60
|
+
|
61
|
+
### [3.7.9](https://github.com/thinkkoa/koatty/compare/v3.7.8...v3.7.9) (2023-02-17)
|
62
|
+
|
63
|
+
|
64
|
+
### Bug Fixes
|
65
|
+
|
66
|
+
* 绑定参数类型转换 ([4fc5bc8](https://github.com/thinkkoa/koatty/commit/4fc5bc8927a5be9b51bd23f8b702bbf34c9b42c3))
|
67
|
+
|
68
|
+
### [3.7.8](https://github.com/thinkkoa/koatty/compare/v3.7.7...v3.7.8) (2023-02-17)
|
69
|
+
|
70
|
+
### [3.7.7](https://github.com/thinkkoa/koatty/compare/v3.7.6...v3.7.7) (2023-02-15)
|
71
|
+
|
72
|
+
|
73
|
+
### Bug Fixes
|
74
|
+
|
75
|
+
* rebuild logger ([42cdb96](https://github.com/thinkkoa/koatty/commit/42cdb964c2e0a41a93b1a895084c92c016cbad24))
|
76
|
+
|
77
|
+
### [3.7.6](https://github.com/thinkkoa/koatty/compare/v3.7.4...v3.7.6) (2023-01-13)
|
78
|
+
|
79
|
+
### [3.7.4](https://github.com/thinkkoa/koatty/compare/v3.7.3...v3.7.4) (2022-11-18)
|
80
|
+
|
81
|
+
|
82
|
+
### Bug Fixes
|
83
|
+
|
84
|
+
* prod模式log打印不全 ([bf3c81b](https://github.com/thinkkoa/koatty/commit/bf3c81b1851630eacc36558a7fc7cf444dce9c91))
|
85
|
+
* wrong words ([024a1fa](https://github.com/thinkkoa/koatty/commit/024a1fa0ff7e8a327ecb6e482b36e450e63dcc4b))
|
86
|
+
* 更新logo ([4e5554e](https://github.com/thinkkoa/koatty/commit/4e5554e13404cba81c3585bcac3dd017abbf8267))
|
87
|
+
|
88
|
+
### [3.7.3](https://github.com/thinkkoa/koatty/compare/v3.7.2...v3.7.3) (2022-11-16)
|
89
|
+
|
90
|
+
|
91
|
+
### Bug Fixes
|
92
|
+
|
93
|
+
* readme ([721ce49](https://github.com/thinkkoa/koatty/commit/721ce4962c3695bc5bc79c1b9de868e561e305ba))
|
94
|
+
* upgrade ([76df70b](https://github.com/thinkkoa/koatty/commit/76df70b5b106fd7c70e94be63d22b1191bd5ecd0))
|
95
|
+
|
96
|
+
### [3.7.2](https://github.com/thinkkoa/koatty/compare/v3.7.1...v3.7.2) (2022-11-16)
|
97
|
+
|
98
|
+
|
99
|
+
### Bug Fixes
|
100
|
+
|
101
|
+
* add log ([08dcf4d](https://github.com/thinkkoa/koatty/commit/08dcf4df2ce86f08db8cd34877ed7d06a50b4deb))
|
102
|
+
* sigint监听修复 ([f632191](https://github.com/thinkkoa/koatty/commit/f632191897a6c3220d9be8babc2d538d7ad085f7))
|
103
|
+
|
104
|
+
### [3.7.1](https://github.com/thinkkoa/koatty/compare/v3.7.0...v3.7.1) (2022-11-12)
|
105
|
+
|
106
|
+
## [3.7.0](https://github.com/thinkkoa/koatty/compare/v3.6.10...v3.7.0) (2022-11-01)
|
107
|
+
|
108
|
+
|
109
|
+
### Bug Fixes
|
110
|
+
|
111
|
+
* ctx.body未赋值导致的404 ([ea0a248](https://github.com/thinkkoa/koatty/commit/ea0a248a71031b2d8a26b0b4280410dcdeb841af))
|
112
|
+
|
113
|
+
### [3.6.10](https://github.com/thinkkoa/koatty/compare/v3.6.10-1...v3.6.10) (2022-09-05)
|
114
|
+
|
115
|
+
|
116
|
+
### Bug Fixes
|
117
|
+
|
118
|
+
* upgrade deps ([cc1d3a1](https://github.com/thinkkoa/koatty/commit/cc1d3a10b346b824c02b136ff592407c93ccb825))
|
119
|
+
|
120
|
+
### [3.6.10-1](https://github.com/thinkkoa/koatty/compare/v3.6.10-0...v3.6.10-1) (2022-08-19)
|
121
|
+
|
122
|
+
### [3.6.10-0](https://github.com/thinkkoa/koatty/compare/v3.6.9...v3.6.10-0) (2022-08-19)
|
123
|
+
|
124
|
+
### [3.6.9](https://github.com/thinkkoa/koatty/compare/v3.6.8...v3.6.9) (2022-07-27)
|
125
|
+
|
126
|
+
### [3.6.8](https://github.com/thinkkoa/koatty/compare/v3.6.8-2...v3.6.8) (2022-05-27)
|
127
|
+
|
128
|
+
### [3.6.8-2](https://github.com/thinkkoa/koatty/compare/v3.6.8-1...v3.6.8-2) (2022-03-15)
|
129
|
+
|
130
|
+
### [3.6.8-1](https://github.com/thinkkoa/koatty/compare/v3.6.8-0...v3.6.8-1) (2022-03-15)
|
131
|
+
|
132
|
+
### [3.6.8-0](https://github.com/thinkkoa/koatty/compare/v3.6.7...v3.6.8-0) (2022-03-14)
|
133
|
+
|
134
|
+
### [3.6.8-0](https://github.com/thinkkoa/koatty/compare/v3.6.7...v3.6.8-0) (2022-03-14)
|
135
|
+
|
136
|
+
### [3.6.7](https://github.com/thinkkoa/koatty/compare/v3.6.6...v3.6.7) (2022-03-09)
|
137
|
+
|
138
|
+
### [3.6.6](https://github.com/thinkkoa/koatty/compare/v3.6.5...v3.6.6) (2022-03-02)
|
139
|
+
|
140
|
+
### [3.6.5](https://github.com/thinkkoa/koatty/compare/v3.6.4...v3.6.5) (2022-03-02)
|
141
|
+
|
142
|
+
### [3.6.4](https://github.com/thinkkoa/koatty/compare/v3.6.3...v3.6.4) (2022-02-25)
|
143
|
+
|
144
|
+
### [3.6.3](https://github.com/thinkkoa/koatty/compare/v3.6.2...v3.6.3) (2022-02-25)
|
145
|
+
|
146
|
+
### [3.6.2](https://github.com/thinkkoa/koatty/compare/v3.6.0...v3.6.2) (2022-02-23)
|
147
|
+
|
148
|
+
## [3.6.0](https://github.com/thinkkoa/koatty/compare/v3.6.0-1...v3.6.0) (2022-02-22)
|
149
|
+
|
150
|
+
## [3.6.0-1](https://github.com/thinkkoa/koatty/compare/v3.6.0-0...v3.6.0-1) (2022-02-21)
|
151
|
+
|
152
|
+
## [3.6.0-0](https://github.com/thinkkoa/koatty/compare/v3.5.16...v3.6.0-0) (2022-02-21)
|
153
|
+
|
154
|
+
### [3.5.16](https://github.com/thinkkoa/koatty/compare/v3.5.14...v3.5.16) (2022-02-14)
|
155
|
+
|
156
|
+
### [3.5.14](https://github.com/thinkkoa/koatty/compare/v3.5.12...v3.5.14) (2022-01-17)
|
157
|
+
|
158
|
+
### [3.5.12](https://github.com/thinkkoa/koatty/compare/v3.5.12-3...v3.5.12) (2021-12-23)
|
159
|
+
|
160
|
+
### [3.5.12-3](https://github.com/thinkkoa/koatty/compare/v3.5.12-2...v3.5.12-3) (2021-12-23)
|
161
|
+
|
162
|
+
### [3.5.12-2](https://github.com/thinkkoa/koatty/compare/v3.5.12-1...v3.5.12-2) (2021-12-21)
|
163
|
+
|
164
|
+
### [3.5.12-1](https://github.com/thinkkoa/koatty/compare/v3.5.12-0...v3.5.12-1) (2021-12-21)
|
165
|
+
|
166
|
+
### [3.5.12-0](https://github.com/thinkkoa/koatty/compare/v3.5.10...v3.5.12-0) (2021-12-21)
|
package/LICENSE
CHANGED
@@ -1,29 +1,29 @@
|
|
1
|
-
BSD 3-Clause License
|
2
|
-
|
3
|
-
Copyright (c) 2020, Koatty
|
4
|
-
All rights reserved.
|
5
|
-
|
6
|
-
Redistribution and use in source and binary forms, with or without
|
7
|
-
modification, are permitted provided that the following conditions are met:
|
8
|
-
|
9
|
-
1. Redistributions of source code must retain the above copyright notice, this
|
10
|
-
list of conditions and the following disclaimer.
|
11
|
-
|
12
|
-
2. Redistributions in binary form must reproduce the above copyright notice,
|
13
|
-
this list of conditions and the following disclaimer in the documentation
|
14
|
-
and/or other materials provided with the distribution.
|
15
|
-
|
16
|
-
3. Neither the name of the copyright holder nor the names of its
|
17
|
-
contributors may be used to endorse or promote products derived from
|
18
|
-
this software without specific prior written permission.
|
19
|
-
|
20
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
21
|
-
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
22
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
23
|
-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
24
|
-
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
25
|
-
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
26
|
-
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
27
|
-
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
28
|
-
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
29
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1
|
+
BSD 3-Clause License
|
2
|
+
|
3
|
+
Copyright (c) 2020, Koatty
|
4
|
+
All rights reserved.
|
5
|
+
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
8
|
+
|
9
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
10
|
+
list of conditions and the following disclaimer.
|
11
|
+
|
12
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
14
|
+
and/or other materials provided with the distribution.
|
15
|
+
|
16
|
+
3. Neither the name of the copyright holder nor the names of its
|
17
|
+
contributors may be used to endorse or promote products derived from
|
18
|
+
this software without specific prior written permission.
|
19
|
+
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
21
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
22
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
23
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
24
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
25
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
26
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
27
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
28
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
29
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|