@agoric/xsnap 0.14.3-ymax-v0.2-alpha-dev-8e37faa.0 → 0.15.0-upgrade-22-dev-6fad137.0.6fad137

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/api.js +1 -1
  2. package/package.json +27 -25
package/api.js CHANGED
@@ -7,7 +7,7 @@
7
7
  * Also, update golden master test/xs-perf.test.js to reflect new meter
8
8
  * version.
9
9
  */
10
- export const METER_TYPE = 'xs-meter-35';
10
+ export const METER_TYPE = 'xs-meter-36';
11
11
 
12
12
  export const ExitCode = {
13
13
  E_UNKNOWN_ERROR: -1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/xsnap",
3
- "version": "0.14.3-ymax-v0.2-alpha-dev-8e37faa.0+8e37faa",
3
+ "version": "0.15.0-upgrade-22-dev-6fad137.0.6fad137",
4
4
  "description": "Snapshotting VM worker based on Moddable's XS Javascript engine",
5
5
  "author": "Agoric",
6
6
  "license": "Apache-2.0",
@@ -24,27 +24,26 @@
24
24
  "lint:types": "yarn run -T tsc",
25
25
  "lint-fix": "eslint --fix 'src/**/*.js' 'test/**/*.js' api.js",
26
26
  "test": "ava",
27
- "test:c8": "c8 --all $C8_OPTIONS ava",
27
+ "test:c8": "c8 --all ${C8_OPTIONS:-} ava",
28
28
  "test:xs": "exit 0"
29
29
  },
30
30
  "dependencies": {
31
- "@agoric/internal": "0.3.3-ymax-v0.2-alpha-dev-8e37faa.0+8e37faa",
32
- "@agoric/xsnap-lockdown": "0.14.1-ymax-v0.2-alpha-dev-8e37faa.0+8e37faa",
33
- "@endo/bundle-source": "^4.0.0",
34
- "@endo/errors": "^1.2.10",
35
- "@endo/eventual-send": "^1.3.1",
36
- "@endo/init": "^1.1.9",
37
- "@endo/netstring": "^1.0.15",
38
- "@endo/promise-kit": "^1.1.10",
39
- "@endo/stream": "^1.2.10",
40
- "@endo/stream-node": "^1.1.10",
31
+ "@agoric/internal": "0.4.0-upgrade-22-dev-6fad137.0.6fad137",
32
+ "@agoric/xsnap-lockdown": "0.14.1-upgrade-22-dev-6fad137.0.6fad137",
33
+ "@endo/bundle-source": "^4.1.2",
34
+ "@endo/errors": "^1.2.13",
35
+ "@endo/eventual-send": "^1.3.4",
36
+ "@endo/init": "^1.1.12",
37
+ "@endo/netstring": "^1.0.18",
38
+ "@endo/promise-kit": "^1.1.13",
39
+ "@endo/stream": "^1.2.13",
40
+ "@endo/stream-node": "^1.1.13",
41
41
  "glob": "^7.1.6",
42
42
  "tmp": "^0.2.1"
43
43
  },
44
44
  "devDependencies": {
45
- "@endo/base64": "^1.0.9",
46
- "@endo/nat": "^5.1.0",
47
- "@types/glob": "^8.1.0",
45
+ "@endo/base64": "^1.0.12",
46
+ "@endo/nat": "^5.1.3",
48
47
  "ava": "^5.3.0",
49
48
  "c8": "^10.1.3",
50
49
  "execa": "^9.5.2"
@@ -53,15 +52,15 @@
53
52
  "LICENSE*",
54
53
  "api.js",
55
54
  "build.env",
56
- "moddable/modules/data",
57
- "moddable/xs/includes",
58
- "moddable/xs/makefiles",
55
+ "moddable/modules/data/**",
56
+ "moddable/xs/includes/**",
57
+ "moddable/xs/makefiles/**",
58
+ "moddable/xs/sources/**",
59
59
  "moddable/xs/platforms/*.h",
60
- "moddable/xs/sources",
61
- "scripts",
62
- "src",
63
- "xsnap-native/xsnap/makefiles",
64
- "xsnap-native/xsnap/sources"
60
+ "scripts/**",
61
+ "src/**",
62
+ "xsnap-native/xsnap/makefiles/**",
63
+ "xsnap-native/xsnap/sources/**"
65
64
  ],
66
65
  "publishConfig": {
67
66
  "access": "public"
@@ -77,7 +76,10 @@
77
76
  "workerThreads": false
78
77
  },
79
78
  "typeCoverage": {
80
- "atLeast": 93.56
79
+ "atLeast": 93.57
81
80
  },
82
- "gitHead": "8e37faaf5265f55433fc80e67c8785a66480c7f4"
81
+ "engines": {
82
+ "node": "^20.9 || ^22.11"
83
+ },
84
+ "gitHead": "6fad137fde8808d0bed3e53e3897b3a8d2622b03"
83
85
  }