Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "3.0.19"
".": "3.1.0"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
14 changes: 6 additions & 8 deletions charts/lobu/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion packages/gateway/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion packages/worker/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading