chore: release 2026.4.19-beta.2

This commit is contained in:
Peter Steinberger
2026-04-19 06:53:19 +01:00
parent bb6ba38a10
commit dc3df91e95
5 changed files with 11 additions and 6 deletions

View File

@@ -8,9 +8,14 @@ Docs: https://docs.openclaw.ai
### Fixes
## 2026.4.19-beta.2
### Fixes
- Agents/openai-completions: always send `stream_options.include_usage` on streaming requests, so local and custom OpenAI-compatible backends report real context usage instead of showing 0%. (#68746) Thanks @kagura-agent.
- Agents/nested lanes: scope nested agent work per target session so a long-running nested run on one session no longer head-of-line blocks unrelated sessions across the gateway. (#67785) Thanks @stainlu.
- Agents/status: preserve carried-forward session token totals for providers that omit usage metadata, so `/status` and `openclaw sessions` keep showing the last known context usage instead of dropping back to unknown/0%. (#67695) Thanks @stainlu.
- Install/update: keep legacy update verification compatible with the QA Lab runtime shim, so updating older global installs to beta no longer fails after npm installs the package successfully.
## 2026.4.19-beta.1

View File

@@ -65,8 +65,8 @@ android {
applicationId = "ai.openclaw.app"
minSdk = 31
targetSdk = 36
versionCode = 2026041901
versionName = "2026.4.19-beta.1"
versionCode = 2026041902
versionName = "2026.4.19-beta.2"
ndk {
// Support all major ABIs — native libs are tiny (~47 KB per ABI)
abiFilters += listOf("armeabi-v7a", "arm64-v8a", "x86", "x86_64")

View File

@@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2026.4.19-beta.1</string>
<string>2026.4.19-beta.2</string>
<key>CFBundleVersion</key>
<string>2026041901</string>
<string>2026041902</string>
<key>CFBundleIconFile</key>
<string>OpenClaw</string>
<key>CFBundleURLTypes</key>

View File

@@ -1,6 +1,6 @@
{
"name": "openclaw",
"version": "2026.4.19-beta.1",
"version": "2026.4.19-beta.2",
"description": "Multi-channel AI gateway with extensible messaging integrations",
"keywords": [],
"homepage": "https://github.com/openclaw/openclaw#readme",

View File

@@ -27471,6 +27471,6 @@ export const GENERATED_BASE_CONFIG_SCHEMA: BaseConfigSchemaResponse = {
tags: ["advanced", "url-secret"],
},
},
version: "2026.4.19-beta.1",
version: "2026.4.19-beta.2",
generatedAt: "2026-03-22T21:17:33.302Z",
};