koatty 3.11.2-3 → 3.11.2-6

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 CHANGED
@@ -2,6 +2,17 @@
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.11.2-6](https://github.com/thinkkoa/koatty/compare/v3.11.2-5...v3.11.2-6) (2024-01-14)
6
+
7
+ ### [3.11.2-5](https://github.com/thinkkoa/koatty/compare/v3.11.2-4...v3.11.2-5) (2024-01-07)
8
+
9
+ ### [3.11.2-4](https://github.com/thinkkoa/koatty/compare/v3.11.2-3...v3.11.2-4) (2024-01-07)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * commit ([1eb83d5](https://github.com/thinkkoa/koatty/commit/1eb83d5108920fee1808cdcdaaa028c88941a280))
15
+
5
16
  ### [3.11.2-3](https://github.com/thinkkoa/koatty/compare/v3.11.2-2...v3.11.2-3) (2024-01-05)
6
17
 
7
18
  ### [3.11.2-2](https://github.com/thinkkoa/koatty/compare/v3.11.2-1...v3.11.2-2) (2024-01-04)
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * @Author: richen
3
- * @Date: 2024-01-05 08:46:12
3
+ * @Date: 2024-01-14 23:03:45
4
4
  * @License: BSD (3-Clause)
5
5
  * @Copyright (c) - <richenlin(at)gmail.com>
6
6
  * @HomePage: https://koatty.org/
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * @Author: richen
3
- * @Date: 2024-01-05 08:46:01
3
+ * @Date: 2024-01-14 23:03:33
4
4
  * @License: BSD (3-Clause)
5
5
  * @Copyright (c) - <richenlin(at)gmail.com>
6
6
  * @HomePage: https://koatty.org/
@@ -38,7 +38,7 @@ function _interopNamespaceDefault(e) {
38
38
 
39
39
  var path__namespace = /*#__PURE__*/_interopNamespaceDefault(path);
40
40
 
41
- async function TraceHandler(app) {
41
+ function TraceHandler(app) {
42
42
  const timeout = (app.config('http_timeout') || 10) * 1000;
43
43
  const encoding = app.config('encoding') || 'utf-8';
44
44
  const openTrace = app.config("open_trace") || false;
@@ -52,7 +52,7 @@ async function TraceHandler(app) {
52
52
  OpenTrace: openTrace,
53
53
  AsyncHooks: asyncHooks,
54
54
  };
55
- app.use(await koatty_trace.Trace(options, app));
55
+ app.use(koatty_trace.Trace(options, app));
56
56
  }
57
57
 
58
58
  /*
@@ -716,7 +716,7 @@ class Loader {
716
716
  }
717
717
  }
718
718
 
719
- var version = "3.11.2-3";
719
+ var version = "3.11.2-6";
720
720
  var engines = {
721
721
  node: ">12.0.0"
722
722
  };
@@ -768,8 +768,8 @@ const checkUTRuntime = () => {
768
768
  * @Description: framework bootstrap
769
769
  * @Usage:
770
770
  * @Author: richen
771
- * @Date: 2023-12-09 21:56:32
772
- * @LastEditTime: 2023-12-22 07:31:53
771
+ * @Date: 2021-12-09 21:56:32
772
+ * @LastEditTime: 2024-01-06 10:42:42
773
773
  * @License: BSD (3-Clause)
774
774
  * @Copyright (c): <richenlin(at)gmail.com>
775
775
  */
package/dist/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * @Author: richen
3
- * @Date: 2024-01-05 08:46:01
3
+ * @Date: 2024-01-14 23:03:33
4
4
  * @License: BSD (3-Clause)
5
5
  * @Copyright (c) - <richenlin(at)gmail.com>
6
6
  * @HomePage: https://koatty.org/
@@ -23,7 +23,7 @@ export { Helper } from 'koatty_lib';
23
23
  import { DefaultLogger } from 'koatty_logger';
24
24
  import 'reflect-metadata';
25
25
 
26
- async function TraceHandler(app) {
26
+ function TraceHandler(app) {
27
27
  const timeout = (app.config('http_timeout') || 10) * 1000;
28
28
  const encoding = app.config('encoding') || 'utf-8';
29
29
  const openTrace = app.config("open_trace") || false;
@@ -37,7 +37,7 @@ async function TraceHandler(app) {
37
37
  OpenTrace: openTrace,
38
38
  AsyncHooks: asyncHooks,
39
39
  };
40
- app.use(await Trace(options, app));
40
+ app.use(Trace(options, app));
41
41
  }
42
42
 
43
43
  /*
@@ -701,7 +701,7 @@ class Loader {
701
701
  }
702
702
  }
703
703
 
704
- var version = "3.11.2-3";
704
+ var version = "3.11.2-6";
705
705
  var engines = {
706
706
  node: ">12.0.0"
707
707
  };
@@ -753,8 +753,8 @@ const checkUTRuntime = () => {
753
753
  * @Description: framework bootstrap
754
754
  * @Usage:
755
755
  * @Author: richen
756
- * @Date: 2023-12-09 21:56:32
757
- * @LastEditTime: 2023-12-22 07:31:53
756
+ * @Date: 2021-12-09 21:56:32
757
+ * @LastEditTime: 2024-01-06 10:42:42
758
758
  * @License: BSD (3-Clause)
759
759
  * @Copyright (c): <richenlin(at)gmail.com>
760
760
  */
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "koatty",
3
- "version": "3.11.2-3",
3
+ "version": "3.11.2-6",
4
4
  "description": "Koa2 + Typescript = koatty. Use Typescript's decorator implement auto injection.",
5
5
  "scripts": {
6
6
  "build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp",
@@ -82,17 +82,17 @@
82
82
  "typescript": "^5.x.x"
83
83
  },
84
84
  "dependencies": {
85
- "koa": "2.15.0",
86
- "koatty_config": "1.1.6",
87
- "koatty_container": "1.8.10",
88
- "koatty_core": "1.8.5",
89
- "koatty_exception": "1.2.8",
90
- "koatty_lib": "1.3.4",
91
- "koatty_loader": "1.1.0",
92
- "koatty_logger": "2.1.4",
93
- "koatty_proto": "1.1.12",
94
- "koatty_serve": "2.1.1",
95
- "koatty_trace": "1.10.4",
96
- "koatty_validation": "1.3.0"
85
+ "koa": "~2.15.0",
86
+ "koatty_config": "~1.1.6",
87
+ "koatty_container": "~1.8.10",
88
+ "koatty_core": "~1.8.6",
89
+ "koatty_exception": "~1.2.8",
90
+ "koatty_lib": "~1.3.4",
91
+ "koatty_loader": "~1.1.0",
92
+ "koatty_logger": "~2.1.4",
93
+ "koatty_proto": "~1.1.12",
94
+ "koatty_serve": "~2.1.2-0",
95
+ "koatty_trace": "~1.11.1",
96
+ "koatty_validation": "~1.3.2"
97
97
  }
98
98
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "koatty",
3
- "version": "3.11.2-3",
3
+ "version": "3.11.2-6",
4
4
  "description": "Koa2 + Typescript = koatty. Use Typescript's decorator implement auto injection.",
5
5
  "scripts": {
6
6
  "build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp",
@@ -82,17 +82,17 @@
82
82
  "typescript": "^5.x.x"
83
83
  },
84
84
  "dependencies": {
85
- "koa": "2.15.0",
86
- "koatty_config": "1.1.6",
87
- "koatty_container": "1.8.10",
88
- "koatty_core": "1.8.5",
89
- "koatty_exception": "1.2.8",
90
- "koatty_lib": "1.3.4",
91
- "koatty_loader": "1.1.0",
92
- "koatty_logger": "2.1.4",
93
- "koatty_proto": "1.1.12",
94
- "koatty_serve": "2.1.1",
95
- "koatty_trace": "1.10.4",
96
- "koatty_validation": "1.3.0"
85
+ "koa": "~2.15.0",
86
+ "koatty_config": "~1.1.6",
87
+ "koatty_container": "~1.8.10",
88
+ "koatty_core": "~1.8.6",
89
+ "koatty_exception": "~1.2.8",
90
+ "koatty_lib": "~1.3.4",
91
+ "koatty_loader": "~1.1.0",
92
+ "koatty_logger": "~2.1.4",
93
+ "koatty_proto": "~1.1.12",
94
+ "koatty_serve": "~2.1.2-0",
95
+ "koatty_trace": "~1.11.1",
96
+ "koatty_validation": "~1.3.2"
97
97
  }
98
98
  }