@midwayjs/redis 3.0.0-beta.2 → 3.0.0-beta.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
@@ -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.6](https://github.com/midwayjs/midway/compare/v3.0.0-beta.5...v3.0.0-beta.6) (2021-11-26)
7
+
8
+ **Note:** Version bump only for package @midwayjs/redis
9
+
10
+
11
+
12
+
13
+
14
+ # [3.0.0-beta.5](https://github.com/midwayjs/midway/compare/v3.0.0-beta.4...v3.0.0-beta.5) (2021-11-25)
15
+
16
+ **Note:** Version bump only for package @midwayjs/redis
17
+
18
+
19
+
20
+
21
+
22
+ # [3.0.0-beta.4](https://github.com/midwayjs/midway/compare/v3.0.0-beta.3...v3.0.0-beta.4) (2021-11-24)
23
+
24
+ **Note:** Version bump only for package @midwayjs/redis
25
+
26
+
27
+
28
+
29
+
30
+ # [3.0.0-beta.3](https://github.com/midwayjs/midway/compare/v3.0.0-beta.2...v3.0.0-beta.3) (2021-11-18)
31
+
32
+
33
+ ### Features
34
+
35
+ * add component and framework config definition ([#1367](https://github.com/midwayjs/midway/issues/1367)) ([b2fe615](https://github.com/midwayjs/midway/commit/b2fe6157f99659471ff1333eca0b86bb889f61a3))
36
+
37
+
38
+
39
+
40
+
6
41
  # [3.0.0-beta.2](https://github.com/midwayjs/midway/compare/v3.0.0-beta.1...v3.0.0-beta.2) (2021-11-16)
7
42
 
8
43
  **Note:** Version bump only for package @midwayjs/redis
@@ -8,7 +8,6 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
9
  exports.RedisConfiguration = void 0;
10
10
  const decorator_1 = require("@midwayjs/decorator");
11
- const path_1 = require("path");
12
11
  const manager_1 = require("./manager");
13
12
  let RedisConfiguration = class RedisConfiguration {
14
13
  async onReady(container) {
@@ -22,7 +21,13 @@ let RedisConfiguration = class RedisConfiguration {
22
21
  RedisConfiguration = __decorate([
23
22
  (0, decorator_1.Configuration)({
24
23
  namespace: 'redis',
25
- importConfigs: [(0, path_1.join)(__dirname, './config.default')],
24
+ importConfigs: [
25
+ {
26
+ default: {
27
+ redis: {},
28
+ },
29
+ },
30
+ ],
26
31
  })
27
32
  ], RedisConfiguration);
28
33
  exports.RedisConfiguration = RedisConfiguration;
package/index.d.ts ADDED
@@ -0,0 +1,62 @@
1
+ import { ClusterNode, ClusterOptions } from 'ioredis';
2
+
3
+ export * from './dist/index';
4
+
5
+ import * as Redis from 'ioredis';
6
+
7
+ // Single Redis
8
+ // client: {
9
+ // host: 'host',
10
+ // port: 'port',
11
+ // family: 'user',
12
+ // password: 'password',
13
+ // db: 'db',
14
+ // },
15
+
16
+ // Cluster Redis
17
+ // client: {
18
+ // cluster: true,
19
+ // nodes: [{
20
+ // host: 'host',
21
+ // port: 'port',
22
+ // family: 'user',
23
+ // password: 'password',
24
+ // db: 'db',
25
+ // },{
26
+ // host: 'host',
27
+ // port: 'port',
28
+ // family: 'user',
29
+ // password: 'password',
30
+ // db: 'db',
31
+ // },
32
+ // ]},
33
+
34
+ // Multi Redis
35
+ // clients: {
36
+ // instance1: {
37
+ // host: 'host',
38
+ // port: 'port',
39
+ // family: 'user',
40
+ // password: 'password',
41
+ // db: 'db',
42
+ // },
43
+ // instance2: {
44
+ // host: 'host',
45
+ // port: 'port',
46
+ // family: 'user',
47
+ // password: 'password',
48
+ // db: 'db',
49
+ // },
50
+ // },
51
+
52
+ declare module '@midwayjs/core/dist/interface' {
53
+ interface MidwayConfig {
54
+ redis?: ServiceFactoryConfigOption<
55
+ | Redis.RedisOptions
56
+ | ({
57
+ cluster?: boolean;
58
+ nodes?: ClusterNode[];
59
+ } & ClusterOptions)
60
+ >;
61
+ }
62
+ }
package/package.json CHANGED
@@ -1,17 +1,18 @@
1
1
  {
2
2
  "name": "@midwayjs/redis",
3
3
  "description": "midway redis component",
4
- "version": "3.0.0-beta.2",
4
+ "version": "3.0.0-beta.6",
5
5
  "main": "dist/index",
6
- "typings": "dist/index.d.ts",
6
+ "typings": "index.d.ts",
7
7
  "files": [
8
8
  "dist/**/*.js",
9
- "dist/**/*.d.ts"
9
+ "dist/**/*.d.ts",
10
+ "index.d.ts"
10
11
  ],
11
12
  "devDependencies": {
12
- "@midwayjs/core": "^3.0.0-beta.2",
13
- "@midwayjs/decorator": "^3.0.0-beta.2",
14
- "@midwayjs/mock": "^3.0.0-beta.2",
13
+ "@midwayjs/core": "^3.0.0-beta.6",
14
+ "@midwayjs/decorator": "^3.0.0-beta.6",
15
+ "@midwayjs/mock": "^3.0.0-beta.6",
15
16
  "@types/ioredis": "^4.27.1"
16
17
  },
17
18
  "dependencies": {
@@ -36,5 +37,5 @@
36
37
  "type": "git",
37
38
  "url": "https://github.com/midwayjs/midway.git"
38
39
  },
39
- "gitHead": "7f07de960da1155a9f7df554e1789c7a97bdd3fe"
40
+ "gitHead": "e4595d30b369e36bef21b36f2b3737d8bc2f802d"
40
41
  }
@@ -1,5 +0,0 @@
1
- export declare const redis: {
2
- default: {};
3
- supportTimeCommand: boolean;
4
- };
5
- //# sourceMappingURL=config.default.d.ts.map
@@ -1,54 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.redis = void 0;
4
- exports.redis = {
5
- default: {},
6
- // redis client will try to use TIME command to detect client is ready or not
7
- // if your redis server not support TIME command, please set this config to false
8
- // see https://redis.io/commands/time
9
- supportTimeCommand: true,
10
- // Redis: require('ioredis'), // customize ioredis version, only set when you needed
11
- // Single Redis
12
- // client: {
13
- // host: 'host',
14
- // port: 'port',
15
- // family: 'user',
16
- // password: 'password',
17
- // db: 'db',
18
- // },
19
- // Cluster Redis
20
- // client: {
21
- // cluster: true,
22
- // nodes: [{
23
- // host: 'host',
24
- // port: 'port',
25
- // family: 'user',
26
- // password: 'password',
27
- // db: 'db',
28
- // },{
29
- // host: 'host',
30
- // port: 'port',
31
- // family: 'user',
32
- // password: 'password',
33
- // db: 'db',
34
- // },
35
- // ]},
36
- // Multi Redis
37
- // clients: {
38
- // instance1: {
39
- // host: 'host',
40
- // port: 'port',
41
- // family: 'user',
42
- // password: 'password',
43
- // db: 'db',
44
- // },
45
- // instance2: {
46
- // host: 'host',
47
- // port: 'port',
48
- // family: 'user',
49
- // password: 'password',
50
- // db: 'db',
51
- // },
52
- // },
53
- };
54
- //# sourceMappingURL=config.default.js.map