Skip to content

Releases: openchoreo/openchoreo

v1.1.6

Choose a tag to compare

@github-actions github-actions released this 22 Aug 03:36
13992ba

What's Changed

  • fix: authorize plane CRs created after agent connects (backport to release-v1.1) by @github-actions[bot] in #4424
  • fix(api): include component in exec authorization hierarchy (backport to release-v1.1) by @JanakaSandaruwan in #4537
  • fix(api): pin exec authz to the component's owning project (backport to release-v1.1) by @Ketharan in #4538

Full Changelog: v1.1.5...v1.1.6

v1.2.3

Choose a tag to compare

@github-actions github-actions released this 21 Aug 05:08
446ff68

What's Changed

  • fix(api): pin exec/wirelogs authz to the component's owning project (backport to release-v1.2) by @github-actions[bot] in #4516
  • fix(api): include component in exec authorization hierarchy (backport to release-v1.2) by @github-actions[bot] in #4517

Full Changelog: v1.2.2...v1.2.3

v1.2.2

Choose a tag to compare

@github-actions github-actions released this 06 Aug 09:00
e4a3e03

What's Changed

Full Changelog: v1.2.1...v1.2.2

v1.1.5

Choose a tag to compare

@github-actions github-actions released this 05 Aug 09:53
024b2a1

What's Changed

  • chore: bump version to 1.1.5 by @openchoreo-release-bot[bot] in #4416
  • chore: update CHANGELOG for v1.1.5 release by @stefinie123 in #4418

Full Changelog: v1.1.4...v1.1.5

v1.0.5

Choose a tag to compare

@github-actions github-actions released this 05 Aug 09:53
4d66731

What's Changed

  • chore: bump version to 1.0.5 by @openchoreo-release-bot[bot] in #4414
  • chore: update CHANGELOG for v1.0.5 release with bug fix for backend authentication issues (#725) by @stefinie123 in #4415

Full Changelog: v1.0.4...v1.0.5

v1.2.1

Choose a tag to compare

@github-actions github-actions released this 30 Jul 17:40
39a4fe2

What's Changed

  • chore: bump version to 1.2.1 by @openchoreo-release-bot[bot] in #4371
  • chore: update CHANGELOG for v1.2.1 release with security fix for Backstage portal API authentication by @stefinie123 in #4373

Full Changelog: v1.2.0...v1.2.1

v1.1.4

Choose a tag to compare

@github-actions github-actions released this 30 Jul 17:18
65c081f

What's Changed

  • chore: bump version to 1.1.4 by @openchoreo-release-bot[bot] in #4276
  • fix: prevent shell injection and isolate privileged pods by @chalindukodikara in #4297

Full Changelog: v1.1.3...v1.1.4

v1.0.4

Choose a tag to compare

@github-actions github-actions released this 30 Jul 17:18
fb2b659

What's Changed

  • chore: bump version to 1.0.4 by @openchoreo-release-bot[bot] in #4309
  • fix: prevent shell injection and isolate privileged pods by @chalindukodikara in #4277

Full Changelog: v1.0.3...v1.0.4

v1.2.0

Choose a tag to compare

@github-actions github-actions released this 24 Jul 12:45

Highlights

  • Project Release Lifecycle — Manage shared, project-scoped infrastructure (cell namespaces, NetworkPolicies, ResourceQuotas, RBAC, etc.) as versioned, immutable snapshots that can be promoted across environments.
  • Portal Assistant Enhancements — Get automated suggestions to troubleshoot build and runtime issues during deployments.
  • Shell Access for Components — Open an interactive shell to running component instances directly from the Backstage portal.
  • Improved Release & Deployment Experience — Browse and compare releases, review configuration differences, manually trigger CronJob releases, and manage deployments through a redesigned workflow.
  • Advanced Observability — View Kubernetes events and Cilium Hubble wire logs through the Observer API and Backstage portal.
  • Enhanced Security — Internal communication between components and the Cluster Gateway is now secured with mutual TLS (mTLS), and ABAC policies now support authorization conditions based on resource type, component type, and workflow.
  • Platform Improvements — Configure workload scheduling using Helm affinity and topology spread constraints, and automatically scale workloads to zero using KEDA for improved resource efficiency.
  • Developer Experience — Try out OpenAPI and GraphQL APIs directly from the Backstage portal, along with numerous bug fixes and stability improvements across the platform.

Breaking Changes

1. Project Release Lifecycle

v1.2.0 introduces the project release lifecycle (ProjectType, ClusterProjectType, ProjectRelease, ProjectReleaseBinding) and makes Project.spec.type a required, immutable field. Upgrading from v1.1.x is not just a plain helm upgrade, it requires a short, staged migration.

Read the v1.1 → v1.2 upgrade guide (https://openchoreo.dev/docs/platform-engineer-guide/upgrades/v1.1-to-v1.2/) before upgrading. Installing the v1.2.0 CRDs before backfilling Project.spec.type will halt control-plane reconciliation for every existing project. Running workloads on data planes are not affected; only control-plane reconciliation pauses during the upgrade window, and the migration is reversible (see the guide's Rollback section).

Here are the changes:

  1. Project.spec.type is now required and immutable

Every Project must reference a (Cluster)ProjectType:

spec:
  type:                       # NEW — required, immutable
    kind: ClusterProjectType  # defaults to ProjectType if omitted
    name: default
  • Who's affected: every install with Project resources created on v1.1.x (they have no spec.type).
  • Impact: once the strict v1.2.0 CRD is installed, any write to a Project without spec.type is rejected with spec.type: Required value. Because the v1.1.x controller writes Project status on every reconcile, installing the strict CRD before backfilling breaks reconciliation for all existing projects. The field is immutable once set.
  • Action required: follow the upgrade guide: pause control-plane writers, install the relaxed Project CRD, backfill spec.type (name: default for existing projects), then install the strict CRD set and upgrade. A default ClusterProjectType that provisions only the namespace ships with the release.
  1. Projects must be deployed to an environment before their components

In v1.1.x the RenderedRelease controller implicitly created a project's cell namespace (dp-{orgNamespace}-{project}-{env}-{hash}). v1.2.0 removes that. The namespace is now part of the project's released manifests, applied through the Project release lifecycle.

The controller does not automatically create ProjectReleaseBindings, so the Projects will not be automatically deployed. But in clients (Backstage UI, occ), you have the option to offer a one-shot "deploy to all environments".

  • Who's affected: anyone creating new projects after the upgrade, and any automation that assumed a component could deploy to an environment before the project was deployed there.
  • Impact:
    • Migrated projects (from previous version): no disruption. The binding's RenderedRelease server-side-applies a Namespace with the exact name your workloads already use; the existing namespace is adopted, not recreated.
    • New projects: a component deploys to an environment only after its project is released (deployed) there.
  • Action required: for existing projects, the upgrade guide creates one ProjectReleaseBinding per pipeline environment, so deployed state carries over. Going forward, deploy the project before its components.

Full upgrade instructions: v1.1.x → v1.2.x upgrade guide (https://openchoreo.dev/docs/platform-engineer-guide/upgrades/v1.1-to-v1.2/)

2. Tracing API response body update

The GET /api/v1alpha1/traces/{traceId}/spans/{spanId} API has been updated to return the complete span status object instead of only the span status code. Please refer the module README to determine module compatibility with this update. Furthermore, if you use your own client to invoke Observer, please update it as per the changes in here

What's Changed

Read more

v1.2.0-rc.2

v1.2.0-rc.2 Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 24 Jul 04:36

Highlights

  • mTLS for Cluster Gateway — Internal component-to-cluster-gateway communication is now secured with mutual TLS
  • Manual Trigger for CronJob Releases — Manually trigger cronjob release bindings via the API
  • Helm Scheduling Controls — Added affinity and topology spread constraint support to Helm charts
  • Bug Fixes — Preserved newlines in build env/args, corrected endpoint schema type derivation on workload create, fixed multi-container pod log retrieval, and made missing default-plane errors report as IsNotFound

What's Changed

Read more