Skip to content
Closed
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 @@
{
".": "4.0.0"
".": "4.0.1"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [4.0.1](https://github.com/lobu-ai/lobu/compare/lobu-v4.0.0...lobu-v4.0.1) (2026-04-21)


### Bug Fixes

* **ci:** correct jq precedence in codex-auto-approve lookup ([#300](https://github.com/lobu-ai/lobu/issues/300)) ([86063c6](https://github.com/lobu-ai/lobu/commit/86063c647af6f92c0cd8f32b46f0237ff3487c7d))
* **gateway:** gate agent API handlers with ownership check to prevent cross-tenant access ([#285](https://github.com/lobu-ai/lobu/issues/285)) ([ec8ff6b](https://github.com/lobu-ai/lobu/commit/ec8ff6bb28389acc023a9b363bb8bbd7813518ad))

## [4.0.0](https://github.com/lobu-ai/lobu/compare/lobu-v3.7.0...lobu-v4.0.0) (2026-04-21)


Expand Down
4 changes: 2 additions & 2 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: 4.0.0
appVersion: 4.0.0
version: 4.0.1
appVersion: 4.0.1
keywords:
- claude
- slack
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "lobu-monorepo",
"version": "4.0.0",
"version": "4.0.1",
"description": "Deploy autonomous AI agents with sandboxing, network isolation, and multi-platform access.",
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "cd packages/core && bun run build && cd ../gateway && bun run build && cd ../worker && bun run build && cd ../..",
"build": "cd packages/core && bun run build && cd ../cli-core && bun run build && cd ../gateway && bun run build && cd ../worker && bun run build && cd ../..",
"format": "biome format --config-path config/biome.config.json --write .",
"format:check": "biome format --config-path config/biome.config.json .",
"lint": "biome lint --config-path config/biome.config.json .",
Expand All @@ -21,12 +21,12 @@
"jscpd": "bunx jscpd --pattern \"packages/**/*.ts\" --reporters \"console\" --ignore \"**/node_modules/**,**/dist/**,**/coverage/**,**/.bun/**,**/.turbo/**,workspaces/**,charts/**,integration-tests/**,bin/**,**/__tests__/**,**/__mocks__/**,**/*.d.ts\"",
"depcruise": "bunx --bun depcruise --config config/dependency-cruiser.config.cjs packages",
"dev": "docker compose -f docker/docker-compose.yml watch",
"build:packages": "cd packages/core && bun run build && cd ../gateway && bun run build && cd ../worker && bun run build && cd ../cli && bun run build",
"build:packages": "cd packages/core && bun run build && cd ../cli-core && bun run build && cd ../gateway && bun run build && cd ../worker && bun run build && cd ../cli && bun run build",
"build:owletto": "cd packages/owletto-sdk && bun run build && cd ../owletto-embeddings && bun run build && cd ../owletto-cli && bun run build && cd ../..",
"watch:packages": "tsc -b --watch packages/core packages/gateway packages/worker",
"watch:packages": "tsc -b --watch packages/core packages/cli-core packages/gateway packages/worker",
"test:packages": "cd packages/core && bun run test && cd ../gateway && bun run test && cd ../worker && bun run test",
"test:owletto": "cd packages/owletto-cli && bun run runtime:prepare && cd ../..",
"typecheck:packages": "cd packages/core && bun run typecheck && cd ../gateway && bun run typecheck && cd ../worker && bun run typecheck",
"typecheck:packages": "cd packages/core && bun run typecheck && cd ../cli-core && bun run typecheck && cd ../gateway && bun run typecheck && cd ../worker && bun run typecheck",
"typecheck:owletto": "cd packages/owletto-backend && bun run typecheck && cd ../owletto-cli && bun run typecheck && cd ../owletto-embeddings && bun run typecheck && cd ../owletto-sdk && bun run typecheck && cd ../..",
"knip": "bunx knip --config config/knip.ts",
"gitleaks": "docker run --rm -v $(pwd):/repo -w /repo zricethezav/gitleaks:latest detect --source=/repo --no-git --redact --config=/repo/config/gitleaks.toml",
Expand Down
36 changes: 36 additions & 0 deletions packages/cli-core/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "@lobu/cli-core",
"version": "4.0.1",
"license": "Apache-2.0",
"type": "module",
"description": "Shared CLI internals for @lobu/cli — local-config loader, credential store, context resolution",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"bun": "./src/index.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lobu-ai/lobu.git",
"directory": "packages/cli-core"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
}
}
3 changes: 2 additions & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lobu/cli",
"version": "4.0.0",
"version": "4.0.1",
"description": "CLI for deploying and managing AI agents on Lobu",
"type": "module",
"main": "dist/index.js",
Expand All @@ -26,6 +26,7 @@
"directory": "packages/cli"
},
"dependencies": {
"@lobu/cli-core": "workspace:*",
"@lobu/core": "workspace:*",
"chalk": "^5.3.0",
"commander": "^12.0.0",
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": "4.0.0",
"version": "4.0.1",
"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": "4.0.0",
"version": "4.0.1",
"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/owletto-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "owletto",
"version": "4.0.0",
"version": "4.0.1",
"description": "Unified CLI for Lobu memory — dev, deploy, and manage from one command",
"type": "module",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/owletto-openclaw/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lobu/owletto-openclaw",
"version": "4.0.0",
"version": "4.0.1",
"description": "Lobu memory plugin for OpenClaw",
"type": "module",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/owletto-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lobu/owletto-sdk",
"version": "4.0.0",
"version": "4.0.1",
"description": "Lobu memory SDK — build pluggable connectors for Lobu memory",
"type": "module",
"main": "dist/index.js",
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": "4.0.0",
"version": "4.0.1",
"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