@forgezero/agent 0.1.95 → 0.1.96
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/dist/agent-heartbeat.js +1 -1
- package/dist/bootstrap.js +2 -2
- package/dist/fz-agent.js +2 -2
- package/dist/fz.js +2 -2
- package/dist/metal-bootstrap.js +1 -1
- package/dist/operator-bootstrap.js +2 -2
- package/dist/platform-fleet-verification.js +2 -2
- package/dist/provision.js +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
package/dist/agent-heartbeat.js
CHANGED
package/dist/bootstrap.js
CHANGED
|
@@ -1420,7 +1420,7 @@ var UPDATE_RETRY_BASE_MS = 5 * 60000;
|
|
|
1420
1420
|
var UPDATE_RETRY_MAX_MS = 24 * 60 * 60000;
|
|
1421
1421
|
|
|
1422
1422
|
// src/version.ts
|
|
1423
|
-
var VERSION = "0.1.
|
|
1423
|
+
var VERSION = "0.1.96";
|
|
1424
1424
|
|
|
1425
1425
|
// src/software.ts
|
|
1426
1426
|
var PINNED_BUN_VERSION = "1.3.14";
|
|
@@ -5108,7 +5108,7 @@ function planBootstrapAgentInstall(config, phase, context) {
|
|
|
5108
5108
|
lifecycleProfilePath: bound && config.kind === "platform" ? LIFECYCLE_PROFILE : undefined,
|
|
5109
5109
|
enforceEgress: true,
|
|
5110
5110
|
runnerLoopbackPorts: config.kind === "platform" ? [config.runtime.environment.publicApiPort, config.runtime.bluePort, config.runtime.greenPort] : [],
|
|
5111
|
-
agentLoopbackPorts: config.kind === "platform" ? [config.runtime.environment.publicApiPort] : [],
|
|
5111
|
+
agentLoopbackPorts: config.kind === "platform" ? [config.runtime.environment.publicApiPort, 4318] : [4318],
|
|
5112
5112
|
nodeHostname: config.nodeHostname,
|
|
5113
5113
|
telemetryEndpoint: config.kind === "platform" ? config.runtime.environment.otlpEndpoint : "http://127.0.0.1:4318",
|
|
5114
5114
|
binPath: "/usr/local/lib/forgezero/agent/fz-agent",
|
package/dist/fz-agent.js
CHANGED
|
@@ -9496,7 +9496,7 @@ async function writeAndCloseProcessInput(input, value) {
|
|
|
9496
9496
|
}
|
|
9497
9497
|
|
|
9498
9498
|
// src/version.ts
|
|
9499
|
-
var VERSION2 = "0.1.
|
|
9499
|
+
var VERSION2 = "0.1.96";
|
|
9500
9500
|
|
|
9501
9501
|
// src/ssh-bootstrap.ts
|
|
9502
9502
|
class SshBootstrapError extends Error {
|
|
@@ -16710,7 +16710,7 @@ function planBootstrapAgentInstall(config, phase, context) {
|
|
|
16710
16710
|
lifecycleProfilePath: bound && config.kind === "platform" ? LIFECYCLE_PROFILE : undefined,
|
|
16711
16711
|
enforceEgress: true,
|
|
16712
16712
|
runnerLoopbackPorts: config.kind === "platform" ? [config.runtime.environment.publicApiPort, config.runtime.bluePort, config.runtime.greenPort] : [],
|
|
16713
|
-
agentLoopbackPorts: config.kind === "platform" ? [config.runtime.environment.publicApiPort] : [],
|
|
16713
|
+
agentLoopbackPorts: config.kind === "platform" ? [config.runtime.environment.publicApiPort, 4318] : [4318],
|
|
16714
16714
|
nodeHostname: config.nodeHostname,
|
|
16715
16715
|
telemetryEndpoint: config.kind === "platform" ? config.runtime.environment.otlpEndpoint : "http://127.0.0.1:4318",
|
|
16716
16716
|
binPath: "/usr/local/lib/forgezero/agent/fz-agent",
|
package/dist/fz.js
CHANGED
|
@@ -4841,7 +4841,7 @@ var UPDATE_RETRY_BASE_MS = 5 * 60000;
|
|
|
4841
4841
|
var UPDATE_RETRY_MAX_MS = 24 * 60 * 60000;
|
|
4842
4842
|
|
|
4843
4843
|
// src/version.ts
|
|
4844
|
-
var VERSION2 = "0.1.
|
|
4844
|
+
var VERSION2 = "0.1.96";
|
|
4845
4845
|
|
|
4846
4846
|
// src/software.ts
|
|
4847
4847
|
var PINNED_BUN_VERSION = "1.3.14";
|
|
@@ -15493,7 +15493,7 @@ function planBootstrapAgentInstall(config, phase, context) {
|
|
|
15493
15493
|
lifecycleProfilePath: bound && config.kind === "platform" ? LIFECYCLE_PROFILE : undefined,
|
|
15494
15494
|
enforceEgress: true,
|
|
15495
15495
|
runnerLoopbackPorts: config.kind === "platform" ? [config.runtime.environment.publicApiPort, config.runtime.bluePort, config.runtime.greenPort] : [],
|
|
15496
|
-
agentLoopbackPorts: config.kind === "platform" ? [config.runtime.environment.publicApiPort] : [],
|
|
15496
|
+
agentLoopbackPorts: config.kind === "platform" ? [config.runtime.environment.publicApiPort, 4318] : [4318],
|
|
15497
15497
|
nodeHostname: config.nodeHostname,
|
|
15498
15498
|
telemetryEndpoint: config.kind === "platform" ? config.runtime.environment.otlpEndpoint : "http://127.0.0.1:4318",
|
|
15499
15499
|
binPath: "/usr/local/lib/forgezero/agent/fz-agent",
|
package/dist/metal-bootstrap.js
CHANGED
|
@@ -366,7 +366,7 @@ function systemdAgentEgressDirectives(loopbackTcpPorts = []) {
|
|
|
366
366
|
}
|
|
367
367
|
|
|
368
368
|
// src/version.ts
|
|
369
|
-
var VERSION = "0.1.
|
|
369
|
+
var VERSION = "0.1.96";
|
|
370
370
|
|
|
371
371
|
// src/otel-collector.ts
|
|
372
372
|
var FORGEZERO_OTEL_COLLECTOR_UNIT = "forgezero-otel-collector.service";
|
|
@@ -1420,7 +1420,7 @@ var UPDATE_RETRY_BASE_MS = 5 * 60000;
|
|
|
1420
1420
|
var UPDATE_RETRY_MAX_MS = 24 * 60 * 60000;
|
|
1421
1421
|
|
|
1422
1422
|
// src/version.ts
|
|
1423
|
-
var VERSION = "0.1.
|
|
1423
|
+
var VERSION = "0.1.96";
|
|
1424
1424
|
|
|
1425
1425
|
// src/software.ts
|
|
1426
1426
|
var PINNED_BUN_VERSION = "1.3.14";
|
|
@@ -5108,7 +5108,7 @@ function planBootstrapAgentInstall(config, phase, context) {
|
|
|
5108
5108
|
lifecycleProfilePath: bound && config.kind === "platform" ? LIFECYCLE_PROFILE : undefined,
|
|
5109
5109
|
enforceEgress: true,
|
|
5110
5110
|
runnerLoopbackPorts: config.kind === "platform" ? [config.runtime.environment.publicApiPort, config.runtime.bluePort, config.runtime.greenPort] : [],
|
|
5111
|
-
agentLoopbackPorts: config.kind === "platform" ? [config.runtime.environment.publicApiPort] : [],
|
|
5111
|
+
agentLoopbackPorts: config.kind === "platform" ? [config.runtime.environment.publicApiPort, 4318] : [4318],
|
|
5112
5112
|
nodeHostname: config.nodeHostname,
|
|
5113
5113
|
telemetryEndpoint: config.kind === "platform" ? config.runtime.environment.otlpEndpoint : "http://127.0.0.1:4318",
|
|
5114
5114
|
binPath: "/usr/local/lib/forgezero/agent/fz-agent",
|
|
@@ -2908,7 +2908,7 @@ function requestSoftware(requirements, socketPath = DEFAULT_SOFTWARE_HELPER_SOCK
|
|
|
2908
2908
|
}
|
|
2909
2909
|
|
|
2910
2910
|
// src/version.ts
|
|
2911
|
-
var VERSION3 = "0.1.
|
|
2911
|
+
var VERSION3 = "0.1.96";
|
|
2912
2912
|
|
|
2913
2913
|
// src/egress-policy.ts
|
|
2914
2914
|
import { realpathSync as realpathSync3 } from "node:fs";
|
|
@@ -5353,7 +5353,7 @@ function planBootstrapAgentInstall(config, phase, context) {
|
|
|
5353
5353
|
lifecycleProfilePath: bound && config.kind === "platform" ? LIFECYCLE_PROFILE : undefined,
|
|
5354
5354
|
enforceEgress: true,
|
|
5355
5355
|
runnerLoopbackPorts: config.kind === "platform" ? [config.runtime.environment.publicApiPort, config.runtime.bluePort, config.runtime.greenPort] : [],
|
|
5356
|
-
agentLoopbackPorts: config.kind === "platform" ? [config.runtime.environment.publicApiPort] : [],
|
|
5356
|
+
agentLoopbackPorts: config.kind === "platform" ? [config.runtime.environment.publicApiPort, 4318] : [4318],
|
|
5357
5357
|
nodeHostname: config.nodeHostname,
|
|
5358
5358
|
telemetryEndpoint: config.kind === "platform" ? config.runtime.environment.otlpEndpoint : "http://127.0.0.1:4318",
|
|
5359
5359
|
binPath: "/usr/local/lib/forgezero/agent/fz-agent",
|
package/dist/provision.js
CHANGED
|
@@ -2908,7 +2908,7 @@ function requestSoftware(requirements, socketPath = DEFAULT_SOFTWARE_HELPER_SOCK
|
|
|
2908
2908
|
}
|
|
2909
2909
|
|
|
2910
2910
|
// src/version.ts
|
|
2911
|
-
var VERSION3 = "0.1.
|
|
2911
|
+
var VERSION3 = "0.1.96";
|
|
2912
2912
|
|
|
2913
2913
|
// src/egress-policy.ts
|
|
2914
2914
|
import { realpathSync as realpathSync3 } from "node:fs";
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/** One package version shared by both public binaries. Pinned to package.json by tests. */
|
|
2
|
-
export declare const VERSION = "0.1.
|
|
2
|
+
export declare const VERSION = "0.1.96";
|