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
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@

## [Unreleased]

## [3.2.2] - 2026-09-04

base イメージで AI CLI の alias 設定を一般ユーザーが読み込めない問題を修正しました。

**この版を反映するには、ベースイメージの再ビルドとコンテナの再作成が要ります。**

```bash
devbase build base --no-cache
devbase up <プロジェクト名>
```

### Fixed

- **`/etc/devbase/ai-cli-aliases.sh` を一般ユーザーが読み込めるようにしました。**
alias ファイルの配置前に親ディレクトリを `0755` で明示作成します。これにより、新規に
no-cache ビルドしたイメージでも Bash 起動時に `Permission denied` が発生しません。

## [3.2.1] - 2026-09-04

Kiro CLI のログイン状態をコンテナ再作成後も保持し、tmux の履歴上で選択した文字列を
Expand Down Expand Up @@ -508,7 +525,8 @@ OSS 化に伴う初回リリース。devbase は本バージョンより `devbas
### Removed
- 「公式レジストリ」固定の概念を廃止。各レジストリは対等な扱いとなる。

[Unreleased]: https://github.com/devbasex/devbase/compare/v3.2.1...HEAD
[Unreleased]: https://github.com/devbasex/devbase/compare/v3.2.2...HEAD
[3.2.2]: https://github.com/devbasex/devbase/compare/v3.2.1...v3.2.2
[3.2.1]: https://github.com/devbasex/devbase/compare/v3.2.0...v3.2.1
[3.2.0]: https://github.com/devbasex/devbase/compare/v3.1.0...v3.2.0
[3.1.0]: https://github.com/devbasex/devbase/compare/v3.0.0...v3.1.0
Expand Down
2 changes: 1 addition & 1 deletion docs/developer/architecture.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# devbase アーキテクチャ概要

devbase v3.2.1 のアーキテクチャ設計と内部構造について説明する。
devbase v3.2.2 のアーキテクチャ設計と内部構造について説明する。

## 全体構成

Expand Down
2 changes: 1 addition & 1 deletion lib/devbase/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""devbase - Docker-based Development Environment Manager"""

__version__ = "3.2.1"
__version__ = "3.2.2"
__author__ = "devbase team"
2 changes: 1 addition & 1 deletion lib/devbase/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
try:
from . import __version__
except ImportError:
__version__ = "3.2.1"
__version__ = "3.2.2"

logger = get_logger("devbase.cli")

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "devbase"
version = "3.2.1"
version = "3.2.2"
description = "Docker-based Development Environment Manager"
requires-python = ">=3.10"
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading