@zuplo/cli 6.70.67 → 6.70.69
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/node_modules/@zuplo/core/package.json +1 -1
- package/node_modules/@zuplo/graphql/package.json +1 -1
- package/node_modules/@zuplo/openapi-tools/package.json +1 -1
- package/node_modules/@zuplo/otel/package.json +1 -1
- package/node_modules/@zuplo/runtime/out/esm/{chunk-C2TBCXWG.js → chunk-GEVKFSKR.js} +2 -2
- package/node_modules/@zuplo/runtime/out/esm/{chunk-C2TBCXWG.js.map → chunk-GEVKFSKR.js.map} +1 -1
- package/node_modules/@zuplo/runtime/out/esm/{chunk-O5I2ETU3.js → chunk-YLRLRHUN.js} +92 -92
- package/node_modules/@zuplo/runtime/out/esm/chunk-YLRLRHUN.js.map +1 -0
- package/node_modules/@zuplo/runtime/out/esm/index.js +1 -1
- package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js +13 -13
- package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js.map +1 -1
- package/node_modules/@zuplo/runtime/out/esm/mocks/index.js +1 -1
- package/node_modules/@zuplo/runtime/package.json +1 -1
- package/node_modules/graphql/package.json +1 -1
- package/node_modules/graphql/type/definition.d.ts +20 -20
- package/node_modules/graphql/type/definition.js +6 -6
- package/node_modules/graphql/type/definition.mjs +6 -6
- package/node_modules/graphql/type/directives.d.ts +2 -2
- package/node_modules/graphql/type/directives.js +1 -1
- package/node_modules/graphql/type/directives.mjs +1 -1
- package/node_modules/graphql/type/schema.d.ts +2 -2
- package/node_modules/graphql/type/schema.js +1 -1
- package/node_modules/graphql/type/schema.mjs +1 -1
- package/node_modules/graphql/version.js +2 -2
- package/node_modules/graphql/version.mjs +2 -2
- package/node_modules/hono/dist/adapter/aws-lambda/handler.js +5 -3
- package/node_modules/hono/dist/adapter/lambda-edge/handler.js +8 -2
- package/node_modules/hono/dist/cjs/adapter/aws-lambda/handler.js +5 -3
- package/node_modules/hono/dist/cjs/adapter/lambda-edge/handler.js +8 -2
- package/node_modules/hono/dist/cjs/middleware/cors/index.js +2 -5
- package/node_modules/hono/dist/cjs/middleware/serve-static/index.js +1 -1
- package/node_modules/hono/dist/middleware/cors/index.js +2 -5
- package/node_modules/hono/dist/middleware/serve-static/index.js +1 -1
- package/node_modules/hono/dist/tsconfig.build.tsbuildinfo +1 -1
- package/node_modules/hono/dist/types/adapter/aws-lambda/handler.d.ts +1 -1
- package/node_modules/hono/package.json +1 -1
- package/node_modules/side-channel/CHANGELOG.md +10 -0
- package/node_modules/side-channel/README.md +1 -1
- package/node_modules/side-channel/index.js +5 -2
- package/node_modules/side-channel/package.json +10 -10
- package/node_modules/side-channel/test/index.js +16 -0
- package/package.json +6 -6
- package/node_modules/@zuplo/runtime/out/esm/chunk-O5I2ETU3.js.map +0 -1
- /package/node_modules/@zuplo/runtime/out/esm/{chunk-O5I2ETU3.js.LEGAL.txt → chunk-YLRLRHUN.js.LEGAL.txt} +0 -0
|
@@ -28,6 +28,22 @@ test('getSideChannel', function (t) {
|
|
|
28
28
|
channel.set(o, 'data');
|
|
29
29
|
st.doesNotThrow(function () { channel.assert(o); }, 'existent value noops');
|
|
30
30
|
|
|
31
|
+
var accessed = false;
|
|
32
|
+
var trap = {};
|
|
33
|
+
Object.defineProperty(trap, 'foo', {
|
|
34
|
+
enumerable: true,
|
|
35
|
+
get: function () {
|
|
36
|
+
accessed = true;
|
|
37
|
+
return 1;
|
|
38
|
+
}
|
|
39
|
+
});
|
|
40
|
+
st['throws'](
|
|
41
|
+
function () { channel.assert(trap); },
|
|
42
|
+
TypeError,
|
|
43
|
+
'missing object key throws'
|
|
44
|
+
);
|
|
45
|
+
st.equal(accessed, false, 'a missing object key is not observably accessed');
|
|
46
|
+
|
|
31
47
|
st.end();
|
|
32
48
|
});
|
|
33
49
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zuplo/cli",
|
|
3
|
-
"version": "6.70.
|
|
3
|
+
"version": "6.70.69",
|
|
4
4
|
"repository": "https://github.com/zuplo/zuplo",
|
|
5
5
|
"author": "Zuplo, Inc.",
|
|
6
6
|
"type": "module",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"@opentelemetry/api": "1.9.0",
|
|
30
30
|
"@sentry/node": "9.22.0",
|
|
31
31
|
"@swc/core": "1.10.18",
|
|
32
|
-
"@zuplo/core": "6.70.
|
|
32
|
+
"@zuplo/core": "6.70.69",
|
|
33
33
|
"@zuplo/editor": "1.0.20821740935",
|
|
34
|
-
"@zuplo/openapi-tools": "6.70.
|
|
35
|
-
"@zuplo/runtime": "6.70.
|
|
34
|
+
"@zuplo/openapi-tools": "6.70.69",
|
|
35
|
+
"@zuplo/runtime": "6.70.69",
|
|
36
36
|
"chalk": "5.4.1",
|
|
37
37
|
"chokidar": "3.5.3",
|
|
38
38
|
"cookie": "1.0.2",
|
|
@@ -66,8 +66,8 @@
|
|
|
66
66
|
"workerd": "1.20241230.0",
|
|
67
67
|
"yargs": "17.7.2",
|
|
68
68
|
"zod": "3.25.76",
|
|
69
|
-
"@zuplo/graphql": "6.70.
|
|
70
|
-
"@zuplo/otel": "6.70.
|
|
69
|
+
"@zuplo/graphql": "6.70.69",
|
|
70
|
+
"@zuplo/otel": "6.70.69"
|
|
71
71
|
},
|
|
72
72
|
"bundleDependencies": [
|
|
73
73
|
"@fastify/cors",
|