@endo/init
Advanced tools
Comparing version 0.5.37 to 0.5.38
@@ -6,2 +6,11 @@ # Change Log | ||
### [0.5.38](https://github.com/endojs/endo/compare/@endo/init@0.5.37...@endo/init@0.5.38) (2022-04-12) | ||
### Features | ||
* **init:** Handle symbols installed on Promise by Node's `async_hooks` ([#1115](https://github.com/endojs/endo/issues/1115)) ([06827b9](https://github.com/endojs/endo/commit/06827b982c0450bae53b5ff0c410745678168c88)) | ||
### [0.5.37](https://github.com/endojs/endo/compare/@endo/init@0.5.36...@endo/init@0.5.37) (2022-03-07) | ||
@@ -8,0 +17,0 @@ |
{ | ||
"name": "@endo/init", | ||
"version": "0.5.37", | ||
"version": "0.5.38", | ||
"description": "Prepare Endo environment on import", | ||
@@ -10,3 +10,6 @@ "type": "module", | ||
"./debug.js": "./debug.js", | ||
"./pre.js": "./pre.js", | ||
"./pre.js": { | ||
"node": "./src/pre-node.js", | ||
"default": "./pre.js" | ||
}, | ||
"./pre-remoting.js": "./pre-remoting.js", | ||
@@ -25,7 +28,9 @@ "./pre-bundle-source.js": "./pre-bundle-source.js", | ||
"devDependencies": { | ||
"@endo/compartment-mapper": "^0.7.2", | ||
"@endo/ses-ava": "^0.2.22", | ||
"ava": "^3.12.1" | ||
}, | ||
"dependencies": { | ||
"@endo/eventual-send": "^0.14.8", | ||
"@endo/lockdown": "^0.1.9" | ||
"@endo/eventual-send": "^0.15.0", | ||
"@endo/lockdown": "^0.1.10" | ||
}, | ||
@@ -69,3 +74,3 @@ "files": [ | ||
}, | ||
"gitHead": "9ddd58b4a26755cdba9403b0cb042b2067c69832" | ||
"gitHead": "59e511891ab67f4fa52d67141510974e22362134" | ||
} |
@@ -7,2 +7,4 @@ // pre-bundle-source.js - initialization to use @endo/bundle-source | ||
import './pre.js'; | ||
// Use a package self-reference to go through the "exports" resolution | ||
// eslint-disable-next-line import/no-extraneous-dependencies | ||
import '@endo/init/pre.js'; |
// pre-remoting.js - shims necessary to use @endo/far | ||
import './pre.js'; | ||
// Use a package self-reference to go through the "exports" resolution | ||
// eslint-disable-next-line import/no-extraneous-dependencies | ||
import '@endo/init/pre.js'; | ||
export * from '@endo/eventual-send/shim.js'; |
// Generic preamble for all shims. | ||
import '@endo/lockdown'; |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Debug access
Supply chain riskUses debug, reflection and dynamic code execution features.
Found 1 instance in 1 package
37248
12
243
3
1
1
+ Added@endo/eventual-send@0.15.5(transitive)
- Removed@endo/eventual-send@0.14.8(transitive)
Updated@endo/eventual-send@^0.15.0
Updated@endo/lockdown@^0.1.10