@did-space/s3-driver 0.2.143 → 0.2.145

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.
@@ -27,11 +27,15 @@ const lib_storage_1 = require("@aws-sdk/lib-storage");
27
27
  const mime_types_1 = __importDefault(require("mime-types"));
28
28
  const isEmpty_1 = __importDefault(require("lodash/isEmpty"));
29
29
  const debug_1 = __importDefault(require("debug"));
30
+ const { version: s3ClientVersion } = require('@aws-sdk/client-s3/package.json');
31
+ const { version: libStorageVersion } = require('@aws-sdk/lib-storage/package.json');
30
32
  const debug = (0, debug_1.default)('@did-space/s3-driver:S3SpaceOperator');
31
33
  class S3SpaceOperator {
32
34
  constructor(options) {
33
35
  this.options = options;
34
36
  this.s3Client = new client_s3_1.S3Client(this.options.s3ClientConfig);
37
+ debug('@aws-sdk/client-s3.version', s3ClientVersion);
38
+ debug('@aws-sdk/lib-storage.version', libStorageVersion);
35
39
  }
36
40
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
37
41
  createSpace(_storageConfig) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@did-space/s3-driver",
3
- "version": "0.2.143",
3
+ "version": "0.2.145",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -32,9 +32,9 @@
32
32
  ]
33
33
  },
34
34
  "dependencies": {
35
- "@aws-sdk/client-s3": "^3.362.0",
36
- "@aws-sdk/lib-storage": "^3.362.0",
37
- "@did-space/core": "0.2.143",
35
+ "@aws-sdk/client-s3": "^3.370.0",
36
+ "@aws-sdk/lib-storage": "^3.370.0",
37
+ "@did-space/core": "0.2.145",
38
38
  "debug": "^4.3.4",
39
39
  "js-yaml": "^4.1.0",
40
40
  "lodash": "^4.17.21",
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "devDependencies": {
44
44
  "@arcblock/eslint-config-ts": "^0.2.4",
45
- "@aws-sdk/types": "^3.357.0",
45
+ "@aws-sdk/types": "^3.370.0",
46
46
  "@types/fs-extra": "^9.0.13",
47
47
  "@types/jest": "^28.1.5",
48
48
  "@types/js-yaml": "^4.0.5",
@@ -56,5 +56,5 @@
56
56
  "ts-jest": "^28.0.6",
57
57
  "typescript": "^4.9.5"
58
58
  },
59
- "gitHead": "bb36886cc51e916177c2a21994132ee74281fe63"
59
+ "gitHead": "2c7b1cc3beb65985810e9fb491c4a307da8dcb54"
60
60
  }