@serve.zone/gitops 3.1.1 → 32.0.0
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/.smartconfig.json +9 -2
- package/changelog.md +19 -0
- package/deno.json +1 -1
- package/dist_serve/bundle.js +311 -311
- package/dist_serve/bundle.js.map +1 -0
- package/dist_ts/00_commitinfo_data.js +2 -2
- package/dist_ts/cache/classes.cachedb.d.ts +1 -1
- package/dist_ts/cache/classes.cachedb.js +1 -1
- package/package.json +9 -9
- package/readme.md +1 -1
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/cache/classes.cachedb.ts +1 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/readme.todo.md +0 -3
package/.smartconfig.json
CHANGED
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
"platforms": [
|
|
8
8
|
"linux/amd64",
|
|
9
9
|
"linux/arm64"
|
|
10
|
-
]
|
|
10
|
+
],
|
|
11
|
+
"requireTestFile": true
|
|
11
12
|
},
|
|
12
13
|
"@git.zone/tsbundle": {
|
|
13
14
|
"bundles": [
|
|
@@ -91,6 +92,11 @@
|
|
|
91
92
|
]
|
|
92
93
|
},
|
|
93
94
|
"release": {
|
|
95
|
+
"versionFloor": "32.0.0",
|
|
96
|
+
"preflight": {
|
|
97
|
+
"test": true,
|
|
98
|
+
"build": true
|
|
99
|
+
},
|
|
94
100
|
"targets": {
|
|
95
101
|
"git": {
|
|
96
102
|
"enabled": true,
|
|
@@ -106,7 +112,8 @@
|
|
|
106
112
|
},
|
|
107
113
|
"docker": {
|
|
108
114
|
"enabled": true,
|
|
109
|
-
"engine": "tsdocker"
|
|
115
|
+
"engine": "tsdocker",
|
|
116
|
+
"test": true
|
|
110
117
|
}
|
|
111
118
|
}
|
|
112
119
|
}
|
package/changelog.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-09-19 - 32.0.0
|
|
4
|
+
|
|
5
|
+
### Breaking Changes
|
|
6
|
+
|
|
7
|
+
- Join the serve.zone 32 line; images publish version tags only (release)
|
|
8
|
+
- @serve.zone/gitops releases as 32.0.0 together with the rest of the serve.zone platform repositories.
|
|
9
|
+
- The Dockerfile is now `Dockerfile_##version##`, so the image publishes `:32.0.0` only. `code.foss.global/serve.zone/gitops:latest` freezes at the 3.1.1 build and is no longer moved by a release.
|
|
10
|
+
- Every image is qualified inside the container by `test/test_latest.sh` before it is pushed; a missing test script now fails the release instead of warning. The script compares the versions in package.json, deno.json and the compiled commitinfo, then starts the real `GitopsApp` and requires the route the HEALTHCHECK probes to answer.
|
|
11
|
+
- Working notes leave the package root: `readme.todo.md` now lives untracked in `.nogit/`. npm force-includes every root `readme.*` regardless of the `files` list, so the published tarball had been shipping the TODO list; `npm pack --dry-run` now lists `readme.md` only.
|
|
12
|
+
|
|
13
|
+
### Fixes
|
|
14
|
+
|
|
15
|
+
- Use SmartMongo 9 and TSTest 6 with NoSQLDB, update cache documentation and fixture naming, and rebuild the browser bundle.
|
|
16
|
+
|
|
17
|
+
### Maintenance
|
|
18
|
+
|
|
19
|
+
- Bring the build, test and release tooling to the 32-train baseline (deps)
|
|
20
|
+
- pnpm 12.4.1 (`packageManager`), @git.zone/tsbuild 4.5.0, @git.zone/tsbundle 2.13.0, @git.zone/tsdeno 1.8.0, @git.zone/tsdocker 3.5.9, @git.zone/tsrun 2.0.6, @git.zone/tstest 6.1.1, @types/node 26.5.1.
|
|
21
|
+
|
|
3
22
|
## 2026-06-14 - 3.1.1
|
|
4
23
|
|
|
5
24
|
### Fixes
|