@linzumi/cli 1.0.225 → 1.0.227
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/README.md +1 -1
- package/dist/impl-res/cloud-supervisor.mjs +1 -1
- package/dist/impl-res/index.js +231 -231
- package/dist/impl-ts/cloud-supervisor.mjs +1 -1
- package/dist/impl-ts/index.js +479 -477
- package/package.json +1 -1
- package/scripts/build-editor-parity-oracle.mjs +2 -0
- package/scripts/bump-cli-version.mjs +8 -0
package/package.json
CHANGED
|
@@ -308,6 +308,7 @@ function readAuditEvents(logFile) {
|
|
|
308
308
|
|
|
309
309
|
const LOOPBACK_PORT_PATTERN = /127\\.0\\.0\\.1:\\d+/g;
|
|
310
310
|
const FORWARDS_PORT_PATTERN = /\\/forwards\\/\\d+\\//g;
|
|
311
|
+
const COLLABORATION_PORT_PATTERN = /\\/_linzumi\\/collaboration\\/\\d+/g;
|
|
311
312
|
|
|
312
313
|
function normalizeFlowValue(value, dir) {
|
|
313
314
|
let normalized = substitute(value, dir, '$DIR');
|
|
@@ -317,6 +318,7 @@ function normalizeFlowValue(value, dir) {
|
|
|
317
318
|
.replace(ISO_PATTERN, '[iso]')
|
|
318
319
|
.replace(LOOPBACK_PORT_PATTERN, '127.0.0.1:[port]')
|
|
319
320
|
.replace(FORWARDS_PORT_PATTERN, '/forwards/[port]/')
|
|
321
|
+
.replace(COLLABORATION_PORT_PATTERN, '/_linzumi/collaboration/[port]')
|
|
320
322
|
);
|
|
321
323
|
return normalized;
|
|
322
324
|
}
|
|
@@ -159,6 +159,14 @@ const knownSites = [
|
|
|
159
159
|
pattern: `cliVersion: '${oldVersion}',`,
|
|
160
160
|
replacement: `cliVersion: '${newVersion}',`,
|
|
161
161
|
},
|
|
162
|
+
{
|
|
163
|
+
// Spec: plans/2026-08-15-runner-join-refusal-observability.spec.md.
|
|
164
|
+
// Recovery fixtures pin real CLI versions and must move with a release.
|
|
165
|
+
file: 'test/updateNudge.test.ts',
|
|
166
|
+
description: 'commander join-refusal recovery target version pins',
|
|
167
|
+
pattern: oldVersion,
|
|
168
|
+
replacement: newVersion,
|
|
169
|
+
},
|
|
162
170
|
];
|
|
163
171
|
|
|
164
172
|
function countOccurrences(haystack, needle) {
|