@zerotal/monitor 1.0.0 → 1.0.1
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 +1 -1
- 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.1] — 2026-08-06
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- Reported framework version was pinned at the pre-release `1.1.0` in the health
|
|
16
|
+
report and the system-meta fallback, so a monitored app advertised a version
|
|
17
|
+
that was never published.
|
|
18
|
+
|
|
11
19
|
## [1.0.0] — 2026-08-05
|
|
12
20
|
|
|
13
21
|
_First public release._
|
package/package.json
CHANGED
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.1
|
|
235
|
+
version: "1.0.1",
|
|
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.1
|
|
141
|
+
zerotal: opts.zerotal ?? "v1.0.1",
|
|
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",
|