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