From cb790c858bbc5fdf37b2b2703a90c3466e038ed4 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 15 Apr 2026 15:04:33 +0100 Subject: [PATCH] build(release): bump core app versions to 2026.4.15-beta.1 --- CHANGELOG.md | 6 ++++++ apps/android/app/build.gradle.kts | 4 ++-- apps/ios/CHANGELOG.md | 4 ++++ apps/ios/Config/Version.xcconfig | 4 ++-- apps/ios/version.json | 2 +- apps/macos/Sources/OpenClaw/Resources/Info.plist | 4 ++-- package.json | 2 +- 7 files changed, 18 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b91d35f507..26ea508c5de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ Docs: https://docs.openclaw.ai ### Changes +### Fixes + +## 2026.4.15-beta.1 + +### Changes + - Control UI/Overview: add a Model Auth status card showing OAuth token health and provider rate-limit pressure at a glance, with attention callouts when OAuth tokens are expiring or expired. Backed by a new `models.authStatus` gateway method that strips credentials and caches for 60s. (#66211) Thanks @omarshahine. - Memory/LanceDB: add cloud storage support to `memory-lancedb` so durable memory indexes can run on remote object storage instead of local disk only. (#63502) Thanks @rugvedS07. - GitHub Copilot/memory search: add a GitHub Copilot embedding provider for memory search, and expose a dedicated Copilot embedding host helper so plugins can reuse the transport while honoring remote overrides, token refresh, and safer payload validation. (#61718) Thanks @feiskyer and @vincentkoc. diff --git a/apps/android/app/build.gradle.kts b/apps/android/app/build.gradle.kts index 0a5657771ac..e019c15cd75 100644 --- a/apps/android/app/build.gradle.kts +++ b/apps/android/app/build.gradle.kts @@ -65,8 +65,8 @@ android { applicationId = "ai.openclaw.app" minSdk = 31 targetSdk = 36 - versionCode = 2026041401 - versionName = "2026.4.14" + versionCode = 2026041501 + versionName = "2026.4.15-beta.1" ndk { // Support all major ABIs — native libs are tiny (~47 KB per ABI) abiFilters += listOf("armeabi-v7a", "arm64-v8a", "x86", "x86_64") diff --git a/apps/ios/CHANGELOG.md b/apps/ios/CHANGELOG.md index 4c87d107594..0a963600b55 100644 --- a/apps/ios/CHANGELOG.md +++ b/apps/ios/CHANGELOG.md @@ -1,5 +1,9 @@ # OpenClaw iOS Changelog +## 2026.4.15 - 2026-04-15 + +Maintenance update for the current OpenClaw beta release. + ## 2026.4.14 - 2026-04-14 Maintenance update for the current OpenClaw beta release. diff --git a/apps/ios/Config/Version.xcconfig b/apps/ios/Config/Version.xcconfig index ec3c83c4d54..94cc8387c54 100644 --- a/apps/ios/Config/Version.xcconfig +++ b/apps/ios/Config/Version.xcconfig @@ -2,8 +2,8 @@ // Source of truth: apps/ios/version.json // Generated by scripts/ios-sync-versioning.ts. -OPENCLAW_IOS_VERSION = 2026.4.14 -OPENCLAW_MARKETING_VERSION = 2026.4.14 +OPENCLAW_IOS_VERSION = 2026.4.15 +OPENCLAW_MARKETING_VERSION = 2026.4.15 OPENCLAW_BUILD_VERSION = 1 #include? "../build/Version.xcconfig" diff --git a/apps/ios/version.json b/apps/ios/version.json index 4ecad6437ba..8c8b5686598 100644 --- a/apps/ios/version.json +++ b/apps/ios/version.json @@ -1,3 +1,3 @@ { - "version": "2026.4.14" + "version": "2026.4.15" } diff --git a/apps/macos/Sources/OpenClaw/Resources/Info.plist b/apps/macos/Sources/OpenClaw/Resources/Info.plist index 756ddf04b77..cb7c5ac6f24 100644 --- a/apps/macos/Sources/OpenClaw/Resources/Info.plist +++ b/apps/macos/Sources/OpenClaw/Resources/Info.plist @@ -15,9 +15,9 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2026.4.14 + 2026.4.15-beta.1 CFBundleVersion - 2026041401 + 2026041501 CFBundleIconFile OpenClaw CFBundleURLTypes diff --git a/package.json b/package.json index e47386fa926..fd027079ba4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openclaw", - "version": "2026.4.14", + "version": "2026.4.15-beta.1", "description": "Multi-channel AI gateway with extensible messaging integrations", "keywords": [], "homepage": "https://github.com/openclaw/openclaw#readme",