@zuplo/cli 7.1.3 → 7.1.6
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-GFACQ5CL.js → chunk-BBEFM7HV.js} +59 -59
- package/node_modules/@zuplo/runtime/out/esm/chunk-BBEFM7HV.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 +1 -1
- package/node_modules/@zuplo/runtime/package.json +1 -1
- package/node_modules/hono/dist/cjs/middleware/etag/index.js +4 -1
- package/node_modules/hono/dist/cjs/router/trie-router/node.js +1 -1
- package/node_modules/hono/dist/cjs/utils/stream.js +5 -2
- package/node_modules/hono/dist/middleware/etag/index.js +4 -1
- package/node_modules/hono/dist/router/trie-router/node.js +1 -1
- package/node_modules/hono/dist/utils/stream.js +5 -2
- package/node_modules/hono/package.json +1 -1
- package/package.json +6 -6
- package/node_modules/@zuplo/runtime/out/esm/chunk-GFACQ5CL.js.map +0 -1
- /package/node_modules/@zuplo/runtime/out/esm/{chunk-GFACQ5CL.js.LEGAL.txt → chunk-BBEFM7HV.js.LEGAL.txt} +0 -0
|
@@ -54,6 +54,9 @@ const etag = (options) => {
|
|
|
54
54
|
return async function etag2(c, next) {
|
|
55
55
|
const ifNoneMatch = c.req.header("If-None-Match") ?? null;
|
|
56
56
|
await next();
|
|
57
|
+
if (!(c.req.method === "GET" || c.req.method === "HEAD" || c.req.method === "QUERY") || !c.res.ok) {
|
|
58
|
+
return;
|
|
59
|
+
}
|
|
57
60
|
const res = c.res;
|
|
58
61
|
let etag3 = res.headers.get("ETag");
|
|
59
62
|
if (!etag3) {
|
|
@@ -70,7 +73,7 @@ const etag = (options) => {
|
|
|
70
73
|
}
|
|
71
74
|
etag3 = weak ? `W/"${hash}"` : `"${hash}"`;
|
|
72
75
|
}
|
|
73
|
-
const matched = ifNoneMatch === "*"
|
|
76
|
+
const matched = ifNoneMatch === "*" || etagMatches(etag3, ifNoneMatch);
|
|
74
77
|
if (matched) {
|
|
75
78
|
c.res = new Response(null, {
|
|
76
79
|
status: 304,
|
|
@@ -166,7 +166,7 @@ class Node {
|
|
|
166
166
|
}
|
|
167
167
|
if (hasChildren(child.#children)) {
|
|
168
168
|
child.#params = params;
|
|
169
|
-
const componentCount = m[0].match(/\//)?.length ?? 0;
|
|
169
|
+
const componentCount = m[0].match(/\//g)?.length ?? 0;
|
|
170
170
|
const targetCurNodes = curNodesQueue[componentCount] ||= [];
|
|
171
171
|
targetCurNodes.push(child);
|
|
172
172
|
}
|
|
@@ -80,8 +80,11 @@ class StreamingApi {
|
|
|
80
80
|
}
|
|
81
81
|
async pipe(body) {
|
|
82
82
|
this.writer.releaseLock();
|
|
83
|
-
|
|
84
|
-
|
|
83
|
+
try {
|
|
84
|
+
await body.pipeTo(this.writable, { preventClose: true, preventAbort: true });
|
|
85
|
+
} finally {
|
|
86
|
+
this.writer = this.writable.getWriter();
|
|
87
|
+
}
|
|
85
88
|
}
|
|
86
89
|
onAbort(listener) {
|
|
87
90
|
this.abortSubscribers.push(listener);
|
|
@@ -32,6 +32,9 @@ var etag = (options) => {
|
|
|
32
32
|
return async function etag2(c, next) {
|
|
33
33
|
const ifNoneMatch = c.req.header("If-None-Match") ?? null;
|
|
34
34
|
await next();
|
|
35
|
+
if (!(c.req.method === "GET" || c.req.method === "HEAD" || c.req.method === "QUERY") || !c.res.ok) {
|
|
36
|
+
return;
|
|
37
|
+
}
|
|
35
38
|
const res = c.res;
|
|
36
39
|
let etag3 = res.headers.get("ETag");
|
|
37
40
|
if (!etag3) {
|
|
@@ -48,7 +51,7 @@ var etag = (options) => {
|
|
|
48
51
|
}
|
|
49
52
|
etag3 = weak ? `W/"${hash}"` : `"${hash}"`;
|
|
50
53
|
}
|
|
51
|
-
const matched = ifNoneMatch === "*"
|
|
54
|
+
const matched = ifNoneMatch === "*" || etagMatches(etag3, ifNoneMatch);
|
|
52
55
|
if (matched) {
|
|
53
56
|
c.res = new Response(null, {
|
|
54
57
|
status: 304,
|
|
@@ -145,7 +145,7 @@ var Node = class _Node {
|
|
|
145
145
|
}
|
|
146
146
|
if (hasChildren(child.#children)) {
|
|
147
147
|
child.#params = params;
|
|
148
|
-
const componentCount = m[0].match(/\//)?.length ?? 0;
|
|
148
|
+
const componentCount = m[0].match(/\//g)?.length ?? 0;
|
|
149
149
|
const targetCurNodes = curNodesQueue[componentCount] ||= [];
|
|
150
150
|
targetCurNodes.push(child);
|
|
151
151
|
}
|
|
@@ -59,8 +59,11 @@ var StreamingApi = class {
|
|
|
59
59
|
}
|
|
60
60
|
async pipe(body) {
|
|
61
61
|
this.writer.releaseLock();
|
|
62
|
-
|
|
63
|
-
|
|
62
|
+
try {
|
|
63
|
+
await body.pipeTo(this.writable, { preventClose: true, preventAbort: true });
|
|
64
|
+
} finally {
|
|
65
|
+
this.writer = this.writable.getWriter();
|
|
66
|
+
}
|
|
64
67
|
}
|
|
65
68
|
onAbort(listener) {
|
|
66
69
|
this.abortSubscribers.push(listener);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zuplo/cli",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.6",
|
|
4
4
|
"repository": "https://github.com/zuplo/zuplo",
|
|
5
5
|
"author": "Zuplo, Inc.",
|
|
6
6
|
"type": "module",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"@opentelemetry/api": "1.9.0",
|
|
29
29
|
"@opentelemetry/api-logs": "0.220.0",
|
|
30
30
|
"@swc/core": "1.10.18",
|
|
31
|
-
"@zuplo/core": "7.1.
|
|
31
|
+
"@zuplo/core": "7.1.6",
|
|
32
32
|
"@zuplo/editor": "1.0.31094607111",
|
|
33
|
-
"@zuplo/openapi-tools": "7.1.
|
|
34
|
-
"@zuplo/runtime": "7.1.
|
|
33
|
+
"@zuplo/openapi-tools": "7.1.6",
|
|
34
|
+
"@zuplo/runtime": "7.1.6",
|
|
35
35
|
"chalk": "5.4.1",
|
|
36
36
|
"chokidar": "3.5.3",
|
|
37
37
|
"cookie": "1.0.2",
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"workerd": "1.20241230.0",
|
|
63
63
|
"yargs": "17.7.2",
|
|
64
64
|
"zod": "4.4.3",
|
|
65
|
-
"@zuplo/graphql": "7.1.
|
|
66
|
-
"@zuplo/otel": "7.1.
|
|
65
|
+
"@zuplo/graphql": "7.1.6",
|
|
66
|
+
"@zuplo/otel": "7.1.6"
|
|
67
67
|
},
|
|
68
68
|
"bundleDependencies": [
|
|
69
69
|
"@inquirer/prompts",
|