@abtnode/auth 1.7.27 → 1.8.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.
Files changed (2) hide show
  1. package/lib/server.js +1 -1
  2. package/package.json +6 -6
package/lib/server.js CHANGED
@@ -318,7 +318,7 @@ const createLaunchBlockletHandler =
318
318
  }
319
319
 
320
320
  // 检查是否已安装,这里不做升级的处理
321
- const existedBlocklet = await node.getBlocklet({ did });
321
+ const existedBlocklet = await node.getBlocklet({ did, attachRuntimeInfo: false });
322
322
  await updateSession({ sessionToken }, true);
323
323
 
324
324
  if (existedBlocklet) {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.7.27",
6
+ "version": "1.8.0",
7
7
  "description": "Simple lib to manage auth in ABT Node",
8
8
  "main": "lib/index.js",
9
9
  "files": [
@@ -20,13 +20,13 @@
20
20
  "author": "linchen <linchen1987@foxmail.com> (http://github.com/linchen1987)",
21
21
  "license": "MIT",
22
22
  "dependencies": {
23
- "@abtnode/constant": "1.7.27",
24
- "@abtnode/logger": "1.7.27",
25
- "@abtnode/util": "1.7.27",
23
+ "@abtnode/constant": "1.8.0",
24
+ "@abtnode/logger": "1.8.0",
25
+ "@abtnode/util": "1.8.0",
26
26
  "@arcblock/did": "1.17.0",
27
27
  "@arcblock/jwt": "^1.17.0",
28
28
  "@arcblock/vc": "1.17.0",
29
- "@blocklet/meta": "1.7.27",
29
+ "@blocklet/meta": "1.8.0",
30
30
  "@ocap/client": "1.17.0",
31
31
  "@ocap/mcrypto": "1.17.0",
32
32
  "@ocap/util": "1.17.0",
@@ -41,5 +41,5 @@
41
41
  "devDependencies": {
42
42
  "jest": "^27.4.5"
43
43
  },
44
- "gitHead": "81a5492df66389b0aede13f033d1e493450833bc"
44
+ "gitHead": "6446a85fb33721abc24bb1045d59158e6b96c241"
45
45
  }