@zerotal/monitor 1.0.2 → 1.0.4
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/CHANGELOG.md +8 -0
- package/package.json +7 -7
- package/src/sources/live.ts +1 -1
- package/src/sources/system.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,14 @@ follows the Zerotal monorepo's unified versioning.
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [1.0.3] — 2026-08-07
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Re-released from a rebuilt repository so the build provenance resolves. The
|
|
16
|
+
1.0.2 attestation names a repository that was renamed away, which leaves the
|
|
17
|
+
signature valid but the trace back to source dangling. No code changed.
|
|
18
|
+
|
|
11
19
|
## [1.0.2] — 2026-08-06
|
|
12
20
|
|
|
13
21
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zerotal/monitor",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"maturity": "experimental",
|
|
6
6
|
"private": false,
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"typecheck": "tsc --noEmit"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@zerotal/core": "1.0.
|
|
33
|
-
"@zerotal/flow-ui": "1.0.
|
|
34
|
-
"@zerotal/flow": "1.0.
|
|
32
|
+
"@zerotal/core": "1.0.4",
|
|
33
|
+
"@zerotal/flow-ui": "1.0.4",
|
|
34
|
+
"@zerotal/flow": "1.0.4"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@zerotal/queue": "1.0.
|
|
38
|
-
"@zerotal/scheduler": "1.0.
|
|
39
|
-
"@zerotal/telemetry": "1.0.
|
|
37
|
+
"@zerotal/queue": "1.0.4",
|
|
38
|
+
"@zerotal/scheduler": "1.0.4",
|
|
39
|
+
"@zerotal/telemetry": "1.0.4"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"@zerotal/queue": "^1.0.0",
|
package/src/sources/live.ts
CHANGED
|
@@ -232,7 +232,7 @@ export async function liveHealth(_app?: AppShape): Promise<HealthEntry[] | null>
|
|
|
232
232
|
try {
|
|
233
233
|
const report = await Health.run({
|
|
234
234
|
name: "app",
|
|
235
|
-
version: "1.0.
|
|
235
|
+
version: "1.0.4",
|
|
236
236
|
environment: process.env.NODE_ENV ?? "production",
|
|
237
237
|
uptime: Math.floor(process.uptime()),
|
|
238
238
|
});
|
package/src/sources/system.ts
CHANGED
|
@@ -138,7 +138,7 @@ export function systemMeta(opts: {
|
|
|
138
138
|
typeof Bun !== "undefined" && Bun.version
|
|
139
139
|
? Bun.version
|
|
140
140
|
: (process.versions.bun ?? process.version.replace(/^v/, "")),
|
|
141
|
-
zerotal: opts.zerotal ?? "v1.0.
|
|
141
|
+
zerotal: opts.zerotal ?? "v1.0.4",
|
|
142
142
|
region: opts.region ?? process.env.FLY_REGION ?? process.env.AWS_REGION ?? "local",
|
|
143
143
|
deploy: opts.deploy ?? process.env.DEPLOY_SHA?.slice(0, 7) ?? "dev",
|
|
144
144
|
environment: process.env.APP_ENV ?? process.env.NODE_ENV ?? "development",
|