@zerotal/monitor 1.0.0 → 1.0.2

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 CHANGED
@@ -8,6 +8,20 @@ follows the Zerotal monorepo's unified versioning.
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [1.0.2] — 2026-08-06
12
+
13
+ ### Fixed
14
+
15
+ - Reported framework version was stale again; it now matches the release.
16
+
17
+ ## [1.0.1] — 2026-08-06
18
+
19
+ ### Fixed
20
+
21
+ - Reported framework version was pinned at the pre-release `1.1.0` in the health
22
+ report and the system-meta fallback, so a monitored app advertised a version
23
+ that was never published.
24
+
11
25
  ## [1.0.0] — 2026-08-05
12
26
 
13
27
  _First public release._
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zerotal/monitor",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
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.0",
33
- "@zerotal/flow-ui": "1.0.0",
34
- "@zerotal/flow": "1.0.0"
32
+ "@zerotal/core": "1.0.2",
33
+ "@zerotal/flow-ui": "1.0.2",
34
+ "@zerotal/flow": "1.0.2"
35
35
  },
36
36
  "devDependencies": {
37
- "@zerotal/queue": "1.0.0",
38
- "@zerotal/scheduler": "1.0.0",
39
- "@zerotal/telemetry": "1.0.0"
37
+ "@zerotal/queue": "1.0.2",
38
+ "@zerotal/scheduler": "1.0.2",
39
+ "@zerotal/telemetry": "1.0.2"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "@zerotal/queue": "^1.0.0",
@@ -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.1.0",
235
+ version: "1.0.2",
236
236
  environment: process.env.NODE_ENV ?? "production",
237
237
  uptime: Math.floor(process.uptime()),
238
238
  });
@@ -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.1.0",
141
+ zerotal: opts.zerotal ?? "v1.0.2",
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",