diff --git a/CHANGELOG.md b/CHANGELOG.md index 32dba5a..b353bb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to Devboxes are documented here. The project follows [Keep a ## [Unreleased] +## [0.5.0] - 2026-07-23 + ### Added - Added opt-in custom image profiles across Helm, the API, CLI, dashboard, authenticated documentation, and public documentation. Profiles support isolated pod-local service sidecars and explicitly vetted Devboxes-compatible workspace derivatives. @@ -13,6 +15,10 @@ All notable changes to Devboxes are documented here. The project follows [Keep a - Persist the fully resolved custom image profile on each workspace so stop, start, TTL expiry, and Insights template reconciliation cannot silently change an existing image contract after Helm configuration changes. +### Fixed + +- Serialize each workspace lifecycle with Insights reconciliation so a deleted workspace cannot have its scoped credential Secret recreated from a stale reconciliation snapshot. + ### Security - Restrict custom image selection to an operator-approved catalog. Sidecars receive no Devboxes Secret, persistent-home mount, Kubernetes API token, public Service, extra capability, command override, or scheduling injection surface. @@ -124,7 +130,8 @@ All notable changes to Devboxes are documented here. The project follows [Keep a - Portable Helm chart with values schema, namespace-scoped RBAC, configurable storage, ingress, LoadBalancer or NodePort SSH, ServiceMonitor, and disruption budget. - macOS and Linux CLI releases, SHA-256 verification installer, GHCR images, OCI chart publishing, image provenance attestations, and clean Kind install CI. -[Unreleased]: https://github.com/vicotrbb/devboxes/compare/v0.4.0...HEAD +[Unreleased]: https://github.com/vicotrbb/devboxes/compare/v0.5.0...HEAD +[0.5.0]: https://github.com/vicotrbb/devboxes/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/vicotrbb/devboxes/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/vicotrbb/devboxes/compare/v0.2.1...v0.3.0 [0.2.1]: https://github.com/vicotrbb/devboxes/compare/v0.2.0...v0.2.1 diff --git a/README.md b/README.md index 998578d..e29c8e7 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ kubectl -n devboxes create secret generic devboxes-workspace \ --from-file=SSH_AUTHORIZED_KEYS="$HOME/.ssh/id_ed25519.pub" helm install devboxes oci://ghcr.io/vicotrbb/charts/devboxes \ - --version 0.4.0 \ + --version 0.5.0 \ --namespace devboxes ``` @@ -351,7 +351,7 @@ Read [CONTRIBUTING.md](CONTRIBUTING.md) before proposing a change. Security repo ## Project status -Devboxes is at `v0.4`: useful and installable, with an intentionally narrow trust model. Compatibility follows semantic versioning after `v1.0`; before then, minor releases may include documented configuration or API changes. PVC data is never automatically deleted, including at TTL expiry. +Devboxes is at `v0.5`: useful and installable, with an intentionally narrow trust model. Compatibility follows semantic versioning after `v1.0`; before then, minor releases may include documented configuration or API changes. PVC data is never automatically deleted, including at TTL expiry. ## License diff --git a/charts/devboxes/Chart.yaml b/charts/devboxes/Chart.yaml index 25cc2bb..ba4ea67 100644 --- a/charts/devboxes/Chart.yaml +++ b/charts/devboxes/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: devboxes description: Self-hosted, ephemeral development environments on Kubernetes type: application -version: 0.4.0 -appVersion: "0.4.0" +version: 0.5.0 +appVersion: "0.5.0" kubeVersion: ">=1.29.0-0" home: https://github.com/vicotrbb/devboxes icon: https://raw.githubusercontent.com/vicotrbb/devboxes/main/docs/assets/devboxes-mark.svg @@ -17,8 +17,10 @@ annotations: artifacthub.io/category: integration-delivery artifacthub.io/changes: | - kind: added - description: Add operator-approved GPU profiles across Helm, API, CLI, and dashboard workflows + description: Add operator-approved custom image profiles across Helm, API, CLI, and dashboard workflows - kind: added - description: Add accelerator discovery, allocation reporting, and scheduler diagnostics + description: Add approved image discovery, lifecycle pinning, and hardened service sidecars + - kind: fixed + description: Serialize Insights reconciliation with workspace lifecycle deletion - kind: security - description: Restrict users to named operator-owned hardware profiles and pinned workload contracts + description: Restrict users to named operator-owned image profiles and pinned workload contracts diff --git a/cli/Cargo.lock b/cli/Cargo.lock index fb3ace4..e76ad90 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -313,7 +313,7 @@ dependencies = [ [[package]] name = "devbox-cli" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "axum", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 1a2ddc8..f9e3153 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "devbox-cli" -version = "0.4.0" +version = "0.5.0" edition = "2024" rust-version = "1.96" description = "Terminal client for self-hosted Kubernetes development environments" diff --git a/controller/pyproject.toml b/controller/pyproject.toml index b82db3f..c15a4fa 100644 --- a/controller/pyproject.toml +++ b/controller/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "devboxes-controller" -version = "0.4.0" +version = "0.5.0" description = "Controller and dashboard for self-hosted Kubernetes development environments" readme = "README.md" requires-python = ">=3.12" diff --git a/controller/src/devboxes_controller/__init__.py b/controller/src/devboxes_controller/__init__.py index 22766f3..78ad728 100644 --- a/controller/src/devboxes_controller/__init__.py +++ b/controller/src/devboxes_controller/__init__.py @@ -1,3 +1,3 @@ """Devboxes controller package.""" -__version__ = "0.4.0" +__version__ = "0.5.0" diff --git a/controller/src/devboxes_controller/templates/cli_authorize.html b/controller/src/devboxes_controller/templates/cli_authorize.html index f4b3a80..6aa4a31 100644 --- a/controller/src/devboxes_controller/templates/cli_authorize.html +++ b/controller/src/devboxes_controller/templates/cli_authorize.html @@ -5,8 +5,8 @@