@aotter/mantle 0.1.0-alpha.12 → 0.1.0-alpha.13
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/docs/release-process.md +7 -5
- package/package.json +15 -15
package/docs/release-process.md
CHANGED
|
@@ -99,15 +99,17 @@ rollback or unpublish behavior, or deploy Landing unless
|
|
|
99
99
|
3. Set that exact version in every workspace package and in all four agent
|
|
100
100
|
plugin manifests. Set `.agents/plugins/marketplace.json` to the immutable
|
|
101
101
|
`v<version>` ref.
|
|
102
|
-
4. Pin
|
|
103
|
-
`mantle-
|
|
104
|
-
branch, latest tag, or inferred
|
|
102
|
+
4. Pin the controller to the exact reviewed `mantle-starters/develop` and
|
|
103
|
+
`mantle-landing/develop` commits intended for this release, and Core CI to
|
|
104
|
+
the same Starter commit. Do not use a branch, latest tag, or inferred
|
|
105
|
+
fallback.
|
|
105
106
|
5. If an SDK type changed, audit downstream literal constructors and exhaustive
|
|
106
107
|
switches before publication. CI in Core cannot prove downstream source
|
|
107
108
|
compatibility by itself.
|
|
108
109
|
6. Run `pnpm check`, inspect the packed umbrella package, and run the exact
|
|
109
|
-
packed-consumer
|
|
110
|
-
|
|
110
|
+
packed-consumer gates against both pinned Starter and Landing commits before
|
|
111
|
+
tagging. Review and merge a same-repository PR into `develop`; the
|
|
112
|
+
controller rejects a direct-push release commit.
|
|
111
113
|
|
|
112
114
|
Preview the native notes before merging the release PR:
|
|
113
115
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aotter/mantle",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.13",
|
|
4
4
|
"description": "Embeddable Mantle Core umbrella with Spec and Runtime; Web, Admin, Bun, Vercel, Cloudflare, and Admin UI are optional peer packages.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://mantle.tools/",
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
"README.md"
|
|
84
84
|
],
|
|
85
85
|
"dependencies": {
|
|
86
|
-
"@aotter/mantle-runtime": "0.1.0-alpha.
|
|
87
|
-
"@aotter/mantle-spec": "0.1.0-alpha.
|
|
86
|
+
"@aotter/mantle-runtime": "0.1.0-alpha.13",
|
|
87
|
+
"@aotter/mantle-spec": "0.1.0-alpha.13"
|
|
88
88
|
},
|
|
89
89
|
"peerDependencies": {
|
|
90
90
|
"aws4fetch": "^1.0.20",
|
|
@@ -92,12 +92,12 @@
|
|
|
92
92
|
"hono": "^4.12.0",
|
|
93
93
|
"@libsql/client": "^0.17.4",
|
|
94
94
|
"zod": "^4.5.0",
|
|
95
|
-
"@aotter/mantle-admin": "0.1.0-alpha.
|
|
96
|
-
"@aotter/mantle-admin-ui": "0.1.0-alpha.
|
|
97
|
-
"@aotter/mantle-
|
|
98
|
-
"@aotter/mantle-
|
|
99
|
-
"@aotter/mantle-
|
|
100
|
-
"@aotter/mantle-vercel": "0.1.0-alpha.
|
|
95
|
+
"@aotter/mantle-admin": "0.1.0-alpha.13",
|
|
96
|
+
"@aotter/mantle-admin-ui": "0.1.0-alpha.13",
|
|
97
|
+
"@aotter/mantle-bun": "0.1.0-alpha.13",
|
|
98
|
+
"@aotter/mantle-cloudflare": "0.1.0-alpha.13",
|
|
99
|
+
"@aotter/mantle-web": "0.1.0-alpha.13",
|
|
100
|
+
"@aotter/mantle-vercel": "0.1.0-alpha.13"
|
|
101
101
|
},
|
|
102
102
|
"peerDependenciesMeta": {
|
|
103
103
|
"@aotter/mantle-admin": {
|
|
@@ -140,12 +140,12 @@
|
|
|
140
140
|
"typescript": "^6.0.3",
|
|
141
141
|
"vitest": "^4.1.10",
|
|
142
142
|
"zod": "^4.5.4",
|
|
143
|
-
"@aotter/mantle-admin-ui": "0.1.0-alpha.
|
|
144
|
-
"@aotter/mantle-
|
|
145
|
-
"@aotter/mantle-
|
|
146
|
-
"@aotter/mantle-
|
|
147
|
-
"@aotter/mantle-vercel": "0.1.0-alpha.
|
|
148
|
-
"@aotter/mantle-web": "0.1.0-alpha.
|
|
143
|
+
"@aotter/mantle-admin-ui": "0.1.0-alpha.13",
|
|
144
|
+
"@aotter/mantle-bun": "0.1.0-alpha.13",
|
|
145
|
+
"@aotter/mantle-cloudflare": "0.1.0-alpha.13",
|
|
146
|
+
"@aotter/mantle-admin": "0.1.0-alpha.13",
|
|
147
|
+
"@aotter/mantle-vercel": "0.1.0-alpha.13",
|
|
148
|
+
"@aotter/mantle-web": "0.1.0-alpha.13"
|
|
149
149
|
},
|
|
150
150
|
"engines": {
|
|
151
151
|
"node": ">=22"
|