diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1c4203731..ada7355e0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.0.19" + ".": "3.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b233d00d..ae6b7c853 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [3.1.0](https://github.com/lobu-ai/lobu/compare/v3.0.19...v3.1.0) (2026-04-10) + + +### Features + +* **gateway:** support leading-dot domain patterns in GrantStore ([f2a1006](https://github.com/lobu-ai/lobu/commit/f2a1006e4a9769c90bf5521332c87a8c0ed156ff)) +* **mcp-auth:** surface login prompts as platform link buttons ([9ca5449](https://github.com/lobu-ai/lobu/commit/9ca5449a48321db1e6a81f3ab1172b8768f272fc)) + + +### Bug Fixes + +* **ci:** release-please triggers publish-packages via gh workflow run ([87b14cb](https://github.com/lobu-ai/lobu/commit/87b14cbaea46df47be6e5a71d7fc498523c23995)) +* **ci:** use yaml updater for Chart.yaml version + appVersion ([58819bc](https://github.com/lobu-ai/lobu/commit/58819bc604ed04448a10e8a67535c8b1ff470911)) + ## [2.7.0](https://github.com/lobu-ai/lobu/compare/v2.6.1...v2.7.0) (2026-03-18) diff --git a/charts/lobu/Chart.yaml b/charts/lobu/Chart.yaml index 397e79047..3aca6cd20 100644 --- a/charts/lobu/Chart.yaml +++ b/charts/lobu/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: lobu description: Lobu - Kubernetes deployment for thread-based AI conversations type: application -version: 3.0.19 -appVersion: "3.0.19" +version: 3.1.0 +appVersion: 3.1.0 keywords: - claude - slack @@ -20,9 +20,9 @@ maintainers: annotations: category: Communication artifacthub.io/license: MIT - artifacthub.io/operator: "false" + artifacthub.io/operator: 'false' artifacthub.io/operatorCapabilities: Basic Install - artifacthub.io/containsSecurityUpdates: "false" + artifacthub.io/containsSecurityUpdates: 'false' artifacthub.io/images: | - name: lobu-dispatcher image: ghcr.io/lobu-ai/lobu-gateway:latest @@ -39,13 +39,11 @@ annotations: - kind: added description: Kubernetes deployment with persistent volumes dependencies: - # Redis for message queues and state management - name: redis - version: "24.1.8" + version: 24.1.8 repository: oci://registry-1.docker.io/bitnamicharts condition: redis.enabled - # Grafana Tempo for distributed tracing - name: tempo - version: "~1.x" + version: ~1.x repository: https://grafana.github.io/helm-charts condition: tempo.enabled diff --git a/package.json b/package.json index 126e76cd8..03d9ed7cd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lobu-monorepo", - "version": "3.0.19", + "version": "3.1.0", "description": "Deploy autonomous AI agents with sandboxing, network isolation, and multi-platform access.", "license": "Apache-2.0", "workspaces": [ diff --git a/packages/cli/package.json b/packages/cli/package.json index c22e52597..133536f26 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@lobu/cli", - "version": "3.0.19", + "version": "3.1.0", "description": "CLI for deploying and managing AI agents on Lobu", "type": "module", "main": "dist/index.js", diff --git a/packages/core/package.json b/packages/core/package.json index 4eb789d9e..ac81af4a4 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@lobu/core", - "version": "3.0.19", + "version": "3.1.0", "license": "Apache-2.0", "description": "Core types and utilities for Lobu agent platform", "repository": { diff --git a/packages/gateway/package.json b/packages/gateway/package.json index 35520ff55..d7e4c410b 100644 --- a/packages/gateway/package.json +++ b/packages/gateway/package.json @@ -1,6 +1,6 @@ { "name": "@lobu/gateway", - "version": "3.0.19", + "version": "3.1.0", "license": "Apache-2.0", "description": "Lobu SDK — embed AI agents with platform adapters, worker orchestration, and MCP proxy", "repository": { diff --git a/packages/worker/package.json b/packages/worker/package.json index 1bd4e6f2b..9ed2fd785 100644 --- a/packages/worker/package.json +++ b/packages/worker/package.json @@ -1,6 +1,6 @@ { "name": "@lobu/worker", - "version": "3.0.19", + "version": "3.1.0", "description": "Lobu worker runtime - run in your own Docker image or use our base image", "main": "dist/index.js", "types": "dist/index.d.ts",