@midwayjs/session 3.0.0-beta.10 → 3.0.0-beta.14

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
@@ -3,6 +3,41 @@
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
+ # [3.0.0-beta.14](https://github.com/midwayjs/midway/compare/v3.0.0-beta.13...v3.0.0-beta.14) (2022-01-04)
7
+
8
+ **Note:** Version bump only for package @midwayjs/session
9
+
10
+
11
+
12
+
13
+
14
+ # [3.0.0-beta.13](https://github.com/midwayjs/midway/compare/v3.0.0-beta.12...v3.0.0-beta.13) (2021-12-30)
15
+
16
+ **Note:** Version bump only for package @midwayjs/session
17
+
18
+
19
+
20
+
21
+
22
+ # [3.0.0-beta.12](https://github.com/midwayjs/midway/compare/v3.0.0-beta.11...v3.0.0-beta.12) (2021-12-28)
23
+
24
+
25
+ ### Features
26
+
27
+ * support throw err status ([#1440](https://github.com/midwayjs/midway/issues/1440)) ([7b98110](https://github.com/midwayjs/midway/commit/7b98110d65c5287a8fcb3eb5356dea2d7a32cee9))
28
+
29
+
30
+
31
+
32
+
33
+ # [3.0.0-beta.11](https://github.com/midwayjs/midway/compare/v3.0.0-beta.10...v3.0.0-beta.11) (2021-12-21)
34
+
35
+ **Note:** Version bump only for package @midwayjs/session
36
+
37
+
38
+
39
+
40
+
6
41
  # [3.0.0-beta.10](https://github.com/midwayjs/midway/compare/v3.0.0-beta.9...v3.0.0-beta.10) (2021-12-20)
7
42
 
8
43
 
@@ -5,5 +5,6 @@ export declare class SessionMiddleware implements IMiddleware<any, any> {
5
5
  logger: any;
6
6
  sessionStoreManager: SessionStoreManager;
7
7
  resolve(app: any): any;
8
+ static getName(): string;
8
9
  }
9
10
  //# sourceMappingURL=session.d.ts.map
@@ -24,6 +24,9 @@ let SessionMiddleware = class SessionMiddleware {
24
24
  }
25
25
  return koaSession(this.sessionConfig, app);
26
26
  }
27
+ static getName() {
28
+ return 'session';
29
+ }
27
30
  };
28
31
  __decorate([
29
32
  (0, decorator_1.Config)('session'),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@midwayjs/session",
3
3
  "description": "midway session component for koa and faas",
4
- "version": "3.0.0-beta.10",
4
+ "version": "3.0.0-beta.14",
5
5
  "main": "dist/index",
6
6
  "typings": "index.d.ts",
7
7
  "files": [
@@ -10,10 +10,10 @@
10
10
  "index.d.ts"
11
11
  ],
12
12
  "devDependencies": {
13
- "@midwayjs/core": "^3.0.0-beta.10",
14
- "@midwayjs/decorator": "^3.0.0-beta.10",
15
- "@midwayjs/mock": "^3.0.0-beta.10",
16
- "@types/koa-session": "^5.10.4"
13
+ "@midwayjs/core": "^3.0.0-beta.14",
14
+ "@midwayjs/decorator": "^3.0.0-beta.14",
15
+ "@midwayjs/mock": "^3.0.0-beta.14",
16
+ "@types/koa-session": "5.10.4"
17
17
  },
18
18
  "dependencies": {
19
19
  "koa-session": "^6.2.0"
@@ -41,5 +41,5 @@
41
41
  "type": "git",
42
42
  "url": "https://github.com/midwayjs/midway.git"
43
43
  },
44
- "gitHead": "153870f2e2dd6b17673ec7591e49224a6bd51b36"
44
+ "gitHead": "95695ada36190cf376e93a1a8866b3fb6dde06bc"
45
45
  }