koatty 3.9.1 → 3.9.3

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 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
  ]
@@ -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,6 +2,16 @@
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.9.3](https://github.com/thinkkoa/koatty/compare/v3.9.2...v3.9.3) (2023-08-21)
6
+
7
+ ### [3.9.2](https://github.com/thinkkoa/koatty/compare/v3.9.1...v3.9.2) (2023-08-21)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * add async_hooks config ([405a9e0](https://github.com/thinkkoa/koatty/commit/405a9e062d4d24e644b5702261563b7affa5480d))
13
+ * up ([3b61396](https://github.com/thinkkoa/koatty/commit/3b61396481002b8e1b8a0aa79f6da1b81ebbdf26))
14
+
5
15
  ### [3.9.1](https://github.com/thinkkoa/koatty/compare/v3.9.1-3...v3.9.1) (2023-07-28)
6
16
 
7
17
 
@@ -27,156 +37,156 @@ All notable changes to this project will be documented in this file. See [standa
27
37
 
28
38
  * type defined ([95228fa](https://github.com/thinkkoa/koatty/commit/95228fa651955c1960a28a6252dbcfb17adddf11))
29
39
 
30
- ### [3.8.3](https://github.com/thinkkoa/koatty/compare/v3.8.2...v3.8.3) (2023-05-23)
31
-
32
- ### [3.8.2](https://github.com/thinkkoa/koatty/compare/v3.8.0...v3.8.2) (2023-03-04)
33
-
34
- ## [3.8.0-6](https://github.com/thinkkoa/koatty/compare/v3.8.0-5...v3.8.0-6) (2023-03-04)
35
-
36
-
37
- ### Bug Fixes
38
-
39
- * change event ([7d651a7](https://github.com/thinkkoa/koatty/commit/7d651a7b3453c0878dd37d0890509b2908e4afdf))
40
- * 修改listen callback函数类型 ([9a3b29f](https://github.com/thinkkoa/koatty/commit/9a3b29f8d16a06b3627e5ccf88c08460e2cc3ae2))
41
-
42
- ## [3.8.0-5](https://github.com/thinkkoa/koatty/compare/v3.8.0-4...v3.8.0-5) (2023-02-26)
43
-
44
- ## [3.8.0-4](https://github.com/thinkkoa/koatty/compare/v3.8.0-3...v3.8.0-4) (2023-02-26)
45
-
46
-
47
- ### Bug Fixes
48
-
49
- * app.version ([5e82cef](https://github.com/thinkkoa/koatty/commit/5e82cef804f5ae01f7fffd9c0ed3379f80995542))
50
- * path of package.json ([6d4f2f6](https://github.com/thinkkoa/koatty/commit/6d4f2f664ad6b16053ae67be787436cacf2434f1))
51
-
52
- ## [3.8.0-3](https://github.com/thinkkoa/koatty/compare/v3.8.0-2...v3.8.0-3) (2023-02-26)
53
-
54
- ## [3.8.0-2](https://github.com/thinkkoa/koatty/compare/v3.8.0-1...v3.8.0-2) (2023-02-26)
55
-
56
- ## [3.8.0-1](https://github.com/thinkkoa/koatty/compare/v3.8.0-0...v3.8.0-1) (2023-02-21)
57
-
58
-
59
- ### Bug Fixes
60
-
61
- * version is getter ([1f43b68](https://github.com/thinkkoa/koatty/commit/1f43b68b3434eecc8d0ce154380c16e39a347634))
62
-
63
- ## [3.8.0-0](https://github.com/thinkkoa/koatty/compare/v3.7.9...v3.8.0-0) (2023-02-21)
64
-
65
-
66
- ### Features
67
-
68
- * koatty_trace支持opentracing ([ae67ce0](https://github.com/thinkkoa/koatty/commit/ae67ce05c8e731a149d67b2b5e98edc88bef9861))
69
-
70
-
71
- ### Bug Fixes
72
-
73
- * core模块app增加name及version ([e55db1a](https://github.com/thinkkoa/koatty/commit/e55db1aa78369181b54d0d11c6319b20f21d50f2))
74
- * SetLogger读取配置变更 ([9765908](https://github.com/thinkkoa/koatty/commit/9765908a6b00486a510e8028cdbe5fc27ecadc88))
75
- * 修改container关于 app及 ctx 接口定义 ([a7c318a](https://github.com/thinkkoa/koatty/commit/a7c318a649531acb5a7cfeb4f9b357fc9418cff7))
76
-
77
- ### [3.7.9](https://github.com/thinkkoa/koatty/compare/v3.7.8...v3.7.9) (2023-02-17)
78
-
79
-
80
- ### Bug Fixes
81
-
82
- * 绑定参数类型转换 ([4fc5bc8](https://github.com/thinkkoa/koatty/commit/4fc5bc8927a5be9b51bd23f8b702bbf34c9b42c3))
83
-
84
- ### [3.7.8](https://github.com/thinkkoa/koatty/compare/v3.7.7...v3.7.8) (2023-02-17)
85
-
86
- ### [3.7.7](https://github.com/thinkkoa/koatty/compare/v3.7.6...v3.7.7) (2023-02-15)
87
-
88
-
89
- ### Bug Fixes
90
-
91
- * rebuild logger ([42cdb96](https://github.com/thinkkoa/koatty/commit/42cdb964c2e0a41a93b1a895084c92c016cbad24))
92
-
93
- ### [3.7.6](https://github.com/thinkkoa/koatty/compare/v3.7.4...v3.7.6) (2023-01-13)
94
-
95
- ### [3.7.4](https://github.com/thinkkoa/koatty/compare/v3.7.3...v3.7.4) (2022-11-18)
96
-
97
-
98
- ### Bug Fixes
99
-
100
- * prod模式log打印不全 ([bf3c81b](https://github.com/thinkkoa/koatty/commit/bf3c81b1851630eacc36558a7fc7cf444dce9c91))
101
- * wrong words ([024a1fa](https://github.com/thinkkoa/koatty/commit/024a1fa0ff7e8a327ecb6e482b36e450e63dcc4b))
102
- * 更新logo ([4e5554e](https://github.com/thinkkoa/koatty/commit/4e5554e13404cba81c3585bcac3dd017abbf8267))
103
-
104
- ### [3.7.3](https://github.com/thinkkoa/koatty/compare/v3.7.2...v3.7.3) (2022-11-16)
105
-
106
-
107
- ### Bug Fixes
108
-
109
- * readme ([721ce49](https://github.com/thinkkoa/koatty/commit/721ce4962c3695bc5bc79c1b9de868e561e305ba))
110
- * upgrade ([76df70b](https://github.com/thinkkoa/koatty/commit/76df70b5b106fd7c70e94be63d22b1191bd5ecd0))
111
-
112
- ### [3.7.2](https://github.com/thinkkoa/koatty/compare/v3.7.1...v3.7.2) (2022-11-16)
113
-
114
-
115
- ### Bug Fixes
116
-
117
- * add log ([08dcf4d](https://github.com/thinkkoa/koatty/commit/08dcf4df2ce86f08db8cd34877ed7d06a50b4deb))
118
- * sigint监听修复 ([f632191](https://github.com/thinkkoa/koatty/commit/f632191897a6c3220d9be8babc2d538d7ad085f7))
119
-
120
- ### [3.7.1](https://github.com/thinkkoa/koatty/compare/v3.7.0...v3.7.1) (2022-11-12)
121
-
122
- ## [3.7.0](https://github.com/thinkkoa/koatty/compare/v3.6.10...v3.7.0) (2022-11-01)
123
-
124
-
125
- ### Bug Fixes
126
-
127
- * ctx.body未赋值导致的404 ([ea0a248](https://github.com/thinkkoa/koatty/commit/ea0a248a71031b2d8a26b0b4280410dcdeb841af))
128
-
129
- ### [3.6.10](https://github.com/thinkkoa/koatty/compare/v3.6.10-1...v3.6.10) (2022-09-05)
130
-
131
-
132
- ### Bug Fixes
133
-
134
- * upgrade deps ([cc1d3a1](https://github.com/thinkkoa/koatty/commit/cc1d3a10b346b824c02b136ff592407c93ccb825))
135
-
136
- ### [3.6.10-1](https://github.com/thinkkoa/koatty/compare/v3.6.10-0...v3.6.10-1) (2022-08-19)
137
-
138
- ### [3.6.10-0](https://github.com/thinkkoa/koatty/compare/v3.6.9...v3.6.10-0) (2022-08-19)
139
-
140
- ### [3.6.9](https://github.com/thinkkoa/koatty/compare/v3.6.8...v3.6.9) (2022-07-27)
141
-
142
- ### [3.6.8](https://github.com/thinkkoa/koatty/compare/v3.6.8-2...v3.6.8) (2022-05-27)
143
-
144
- ### [3.6.8-2](https://github.com/thinkkoa/koatty/compare/v3.6.8-1...v3.6.8-2) (2022-03-15)
145
-
146
- ### [3.6.8-1](https://github.com/thinkkoa/koatty/compare/v3.6.8-0...v3.6.8-1) (2022-03-15)
147
-
148
- ### [3.6.8-0](https://github.com/thinkkoa/koatty/compare/v3.6.7...v3.6.8-0) (2022-03-14)
149
-
150
- ### [3.6.8-0](https://github.com/thinkkoa/koatty/compare/v3.6.7...v3.6.8-0) (2022-03-14)
151
-
152
- ### [3.6.7](https://github.com/thinkkoa/koatty/compare/v3.6.6...v3.6.7) (2022-03-09)
153
-
154
- ### [3.6.6](https://github.com/thinkkoa/koatty/compare/v3.6.5...v3.6.6) (2022-03-02)
155
-
156
- ### [3.6.5](https://github.com/thinkkoa/koatty/compare/v3.6.4...v3.6.5) (2022-03-02)
157
-
158
- ### [3.6.4](https://github.com/thinkkoa/koatty/compare/v3.6.3...v3.6.4) (2022-02-25)
159
-
160
- ### [3.6.3](https://github.com/thinkkoa/koatty/compare/v3.6.2...v3.6.3) (2022-02-25)
161
-
162
- ### [3.6.2](https://github.com/thinkkoa/koatty/compare/v3.6.0...v3.6.2) (2022-02-23)
163
-
164
- ## [3.6.0](https://github.com/thinkkoa/koatty/compare/v3.6.0-1...v3.6.0) (2022-02-22)
165
-
166
- ## [3.6.0-1](https://github.com/thinkkoa/koatty/compare/v3.6.0-0...v3.6.0-1) (2022-02-21)
167
-
168
- ## [3.6.0-0](https://github.com/thinkkoa/koatty/compare/v3.5.16...v3.6.0-0) (2022-02-21)
169
-
170
- ### [3.5.16](https://github.com/thinkkoa/koatty/compare/v3.5.14...v3.5.16) (2022-02-14)
171
-
172
- ### [3.5.14](https://github.com/thinkkoa/koatty/compare/v3.5.12...v3.5.14) (2022-01-17)
173
-
174
- ### [3.5.12](https://github.com/thinkkoa/koatty/compare/v3.5.12-3...v3.5.12) (2021-12-23)
175
-
176
- ### [3.5.12-3](https://github.com/thinkkoa/koatty/compare/v3.5.12-2...v3.5.12-3) (2021-12-23)
177
-
178
- ### [3.5.12-2](https://github.com/thinkkoa/koatty/compare/v3.5.12-1...v3.5.12-2) (2021-12-21)
179
-
180
- ### [3.5.12-1](https://github.com/thinkkoa/koatty/compare/v3.5.12-0...v3.5.12-1) (2021-12-21)
181
-
182
- ### [3.5.12-0](https://github.com/thinkkoa/koatty/compare/v3.5.10...v3.5.12-0) (2021-12-21)
40
+ ### [3.8.3](https://github.com/thinkkoa/koatty/compare/v3.8.2...v3.8.3) (2023-05-23)
41
+
42
+ ### [3.8.2](https://github.com/thinkkoa/koatty/compare/v3.8.0...v3.8.2) (2023-03-04)
43
+
44
+ ## [3.8.0-6](https://github.com/thinkkoa/koatty/compare/v3.8.0-5...v3.8.0-6) (2023-03-04)
45
+
46
+
47
+ ### Bug Fixes
48
+
49
+ * change event ([7d651a7](https://github.com/thinkkoa/koatty/commit/7d651a7b3453c0878dd37d0890509b2908e4afdf))
50
+ * 修改listen callback函数类型 ([9a3b29f](https://github.com/thinkkoa/koatty/commit/9a3b29f8d16a06b3627e5ccf88c08460e2cc3ae2))
51
+
52
+ ## [3.8.0-5](https://github.com/thinkkoa/koatty/compare/v3.8.0-4...v3.8.0-5) (2023-02-26)
53
+
54
+ ## [3.8.0-4](https://github.com/thinkkoa/koatty/compare/v3.8.0-3...v3.8.0-4) (2023-02-26)
55
+
56
+
57
+ ### Bug Fixes
58
+
59
+ * app.version ([5e82cef](https://github.com/thinkkoa/koatty/commit/5e82cef804f5ae01f7fffd9c0ed3379f80995542))
60
+ * path of package.json ([6d4f2f6](https://github.com/thinkkoa/koatty/commit/6d4f2f664ad6b16053ae67be787436cacf2434f1))
61
+
62
+ ## [3.8.0-3](https://github.com/thinkkoa/koatty/compare/v3.8.0-2...v3.8.0-3) (2023-02-26)
63
+
64
+ ## [3.8.0-2](https://github.com/thinkkoa/koatty/compare/v3.8.0-1...v3.8.0-2) (2023-02-26)
65
+
66
+ ## [3.8.0-1](https://github.com/thinkkoa/koatty/compare/v3.8.0-0...v3.8.0-1) (2023-02-21)
67
+
68
+
69
+ ### Bug Fixes
70
+
71
+ * version is getter ([1f43b68](https://github.com/thinkkoa/koatty/commit/1f43b68b3434eecc8d0ce154380c16e39a347634))
72
+
73
+ ## [3.8.0-0](https://github.com/thinkkoa/koatty/compare/v3.7.9...v3.8.0-0) (2023-02-21)
74
+
75
+
76
+ ### Features
77
+
78
+ * koatty_trace支持opentracing ([ae67ce0](https://github.com/thinkkoa/koatty/commit/ae67ce05c8e731a149d67b2b5e98edc88bef9861))
79
+
80
+
81
+ ### Bug Fixes
82
+
83
+ * core模块app增加name及version ([e55db1a](https://github.com/thinkkoa/koatty/commit/e55db1aa78369181b54d0d11c6319b20f21d50f2))
84
+ * SetLogger读取配置变更 ([9765908](https://github.com/thinkkoa/koatty/commit/9765908a6b00486a510e8028cdbe5fc27ecadc88))
85
+ * 修改container关于 app及 ctx 接口定义 ([a7c318a](https://github.com/thinkkoa/koatty/commit/a7c318a649531acb5a7cfeb4f9b357fc9418cff7))
86
+
87
+ ### [3.7.9](https://github.com/thinkkoa/koatty/compare/v3.7.8...v3.7.9) (2023-02-17)
88
+
89
+
90
+ ### Bug Fixes
91
+
92
+ * 绑定参数类型转换 ([4fc5bc8](https://github.com/thinkkoa/koatty/commit/4fc5bc8927a5be9b51bd23f8b702bbf34c9b42c3))
93
+
94
+ ### [3.7.8](https://github.com/thinkkoa/koatty/compare/v3.7.7...v3.7.8) (2023-02-17)
95
+
96
+ ### [3.7.7](https://github.com/thinkkoa/koatty/compare/v3.7.6...v3.7.7) (2023-02-15)
97
+
98
+
99
+ ### Bug Fixes
100
+
101
+ * rebuild logger ([42cdb96](https://github.com/thinkkoa/koatty/commit/42cdb964c2e0a41a93b1a895084c92c016cbad24))
102
+
103
+ ### [3.7.6](https://github.com/thinkkoa/koatty/compare/v3.7.4...v3.7.6) (2023-01-13)
104
+
105
+ ### [3.7.4](https://github.com/thinkkoa/koatty/compare/v3.7.3...v3.7.4) (2022-11-18)
106
+
107
+
108
+ ### Bug Fixes
109
+
110
+ * prod模式log打印不全 ([bf3c81b](https://github.com/thinkkoa/koatty/commit/bf3c81b1851630eacc36558a7fc7cf444dce9c91))
111
+ * wrong words ([024a1fa](https://github.com/thinkkoa/koatty/commit/024a1fa0ff7e8a327ecb6e482b36e450e63dcc4b))
112
+ * 更新logo ([4e5554e](https://github.com/thinkkoa/koatty/commit/4e5554e13404cba81c3585bcac3dd017abbf8267))
113
+
114
+ ### [3.7.3](https://github.com/thinkkoa/koatty/compare/v3.7.2...v3.7.3) (2022-11-16)
115
+
116
+
117
+ ### Bug Fixes
118
+
119
+ * readme ([721ce49](https://github.com/thinkkoa/koatty/commit/721ce4962c3695bc5bc79c1b9de868e561e305ba))
120
+ * upgrade ([76df70b](https://github.com/thinkkoa/koatty/commit/76df70b5b106fd7c70e94be63d22b1191bd5ecd0))
121
+
122
+ ### [3.7.2](https://github.com/thinkkoa/koatty/compare/v3.7.1...v3.7.2) (2022-11-16)
123
+
124
+
125
+ ### Bug Fixes
126
+
127
+ * add log ([08dcf4d](https://github.com/thinkkoa/koatty/commit/08dcf4df2ce86f08db8cd34877ed7d06a50b4deb))
128
+ * sigint监听修复 ([f632191](https://github.com/thinkkoa/koatty/commit/f632191897a6c3220d9be8babc2d538d7ad085f7))
129
+
130
+ ### [3.7.1](https://github.com/thinkkoa/koatty/compare/v3.7.0...v3.7.1) (2022-11-12)
131
+
132
+ ## [3.7.0](https://github.com/thinkkoa/koatty/compare/v3.6.10...v3.7.0) (2022-11-01)
133
+
134
+
135
+ ### Bug Fixes
136
+
137
+ * ctx.body未赋值导致的404 ([ea0a248](https://github.com/thinkkoa/koatty/commit/ea0a248a71031b2d8a26b0b4280410dcdeb841af))
138
+
139
+ ### [3.6.10](https://github.com/thinkkoa/koatty/compare/v3.6.10-1...v3.6.10) (2022-09-05)
140
+
141
+
142
+ ### Bug Fixes
143
+
144
+ * upgrade deps ([cc1d3a1](https://github.com/thinkkoa/koatty/commit/cc1d3a10b346b824c02b136ff592407c93ccb825))
145
+
146
+ ### [3.6.10-1](https://github.com/thinkkoa/koatty/compare/v3.6.10-0...v3.6.10-1) (2022-08-19)
147
+
148
+ ### [3.6.10-0](https://github.com/thinkkoa/koatty/compare/v3.6.9...v3.6.10-0) (2022-08-19)
149
+
150
+ ### [3.6.9](https://github.com/thinkkoa/koatty/compare/v3.6.8...v3.6.9) (2022-07-27)
151
+
152
+ ### [3.6.8](https://github.com/thinkkoa/koatty/compare/v3.6.8-2...v3.6.8) (2022-05-27)
153
+
154
+ ### [3.6.8-2](https://github.com/thinkkoa/koatty/compare/v3.6.8-1...v3.6.8-2) (2022-03-15)
155
+
156
+ ### [3.6.8-1](https://github.com/thinkkoa/koatty/compare/v3.6.8-0...v3.6.8-1) (2022-03-15)
157
+
158
+ ### [3.6.8-0](https://github.com/thinkkoa/koatty/compare/v3.6.7...v3.6.8-0) (2022-03-14)
159
+
160
+ ### [3.6.8-0](https://github.com/thinkkoa/koatty/compare/v3.6.7...v3.6.8-0) (2022-03-14)
161
+
162
+ ### [3.6.7](https://github.com/thinkkoa/koatty/compare/v3.6.6...v3.6.7) (2022-03-09)
163
+
164
+ ### [3.6.6](https://github.com/thinkkoa/koatty/compare/v3.6.5...v3.6.6) (2022-03-02)
165
+
166
+ ### [3.6.5](https://github.com/thinkkoa/koatty/compare/v3.6.4...v3.6.5) (2022-03-02)
167
+
168
+ ### [3.6.4](https://github.com/thinkkoa/koatty/compare/v3.6.3...v3.6.4) (2022-02-25)
169
+
170
+ ### [3.6.3](https://github.com/thinkkoa/koatty/compare/v3.6.2...v3.6.3) (2022-02-25)
171
+
172
+ ### [3.6.2](https://github.com/thinkkoa/koatty/compare/v3.6.0...v3.6.2) (2022-02-23)
173
+
174
+ ## [3.6.0](https://github.com/thinkkoa/koatty/compare/v3.6.0-1...v3.6.0) (2022-02-22)
175
+
176
+ ## [3.6.0-1](https://github.com/thinkkoa/koatty/compare/v3.6.0-0...v3.6.0-1) (2022-02-21)
177
+
178
+ ## [3.6.0-0](https://github.com/thinkkoa/koatty/compare/v3.5.16...v3.6.0-0) (2022-02-21)
179
+
180
+ ### [3.5.16](https://github.com/thinkkoa/koatty/compare/v3.5.14...v3.5.16) (2022-02-14)
181
+
182
+ ### [3.5.14](https://github.com/thinkkoa/koatty/compare/v3.5.12...v3.5.14) (2022-01-17)
183
+
184
+ ### [3.5.12](https://github.com/thinkkoa/koatty/compare/v3.5.12-3...v3.5.12) (2021-12-23)
185
+
186
+ ### [3.5.12-3](https://github.com/thinkkoa/koatty/compare/v3.5.12-2...v3.5.12-3) (2021-12-23)
187
+
188
+ ### [3.5.12-2](https://github.com/thinkkoa/koatty/compare/v3.5.12-1...v3.5.12-2) (2021-12-21)
189
+
190
+ ### [3.5.12-1](https://github.com/thinkkoa/koatty/compare/v3.5.12-0...v3.5.12-1) (2021-12-21)
191
+
192
+ ### [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.