From 6c42ce4b04957daaa566e6f5a1cf83e04db85c0d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 May 2026 05:54:00 +0000 Subject: [PATCH] chore: release develop --- .release-please-manifest.json | 4 ++-- CHANGELOG.md | 8 ++++++++ charts/gitops/CHANGELOG.md | 9 +++++++++ charts/gitops/Chart.yaml | 2 +- gitops/__init__.py | 2 +- gitops_server/version.py | 2 +- pyproject.toml | 2 +- 7 files changed, 23 insertions(+), 6 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c916bff..9eeb5a3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - ".": "1.6.0", + ".": "1.6.1", "gitops_server": "0.15.1", - "charts/gitops": "1.2.1" + "charts/gitops": "1.2.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 422c6a7..5f7e908 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.6.1](https://github.com/uptick/gitops/compare/gitops-v1.6.0...gitops-v1.6.1) (2026-05-28) + + +### Bug Fixes + +* improve app not found error message ([2c2a5a6](https://github.com/uptick/gitops/commit/2c2a5a6398ec6f7e7609982e6105b87cc6fd0d9d)) +* improve app not found error message ([e0f93b4](https://github.com/uptick/gitops/commit/e0f93b40f14c732ac1661c6a61e981eee05e32b2)) + ## [1.6.0](https://github.com/uptick/gitops/compare/gitops-v1.5.1...gitops-v1.6.0) (2026-05-06) diff --git a/charts/gitops/CHANGELOG.md b/charts/gitops/CHANGELOG.md index f0944b9..98242c2 100644 --- a/charts/gitops/CHANGELOG.md +++ b/charts/gitops/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.2.2](https://github.com/uptick/gitops/compare/helm-v1.2.1...helm-v1.2.2) (2026-05-28) + + +### Bug Fixes + +* **helm:** remove trailing colon from OTEL_RESOURCE_ATTRIBUTES env var name ([0c23326](https://github.com/uptick/gitops/commit/0c23326d62ed331e5ca24b9c3a04bbc3a58b2931)) +* **helm:** remove trailing colon from OTEL_RESOURCE_ATTRIBUTES env var name ([f454c45](https://github.com/uptick/gitops/commit/f454c4587cd79fda5ac8ad30fd9a65541f0f4636)) +* **helm:** use correct values reference for OTEL_RESOURCE_ATTRIBUTES cluster name ([2184d70](https://github.com/uptick/gitops/commit/2184d7040c36b802af7c86a1b6c074c92940b269)) + ## [1.2.1](https://github.com/uptick/gitops/compare/helm-v1.2.0...helm-v1.2.1) (2026-05-06) diff --git a/charts/gitops/Chart.yaml b/charts/gitops/Chart.yaml index fc839a4..2863f60 100644 --- a/charts/gitops/Chart.yaml +++ b/charts/gitops/Chart.yaml @@ -2,4 +2,4 @@ apiVersion: v1 appVersion: "1.0" description: GitOps Server Helm chart. name: gitops -version: 1.2.1 +version: 1.2.2 diff --git a/gitops/__init__.py b/gitops/__init__.py index 46417b1..a2959d9 100644 --- a/gitops/__init__.py +++ b/gitops/__init__.py @@ -6,7 +6,7 @@ from .utils.cli import success, warning -__version__ = "1.6.0" +__version__ = "1.6.1" # Checking gitops version matches cluster repo version. diff --git a/gitops_server/version.py b/gitops_server/version.py index e4adfb8..f49459c 100644 --- a/gitops_server/version.py +++ b/gitops_server/version.py @@ -1 +1 @@ -__version__ = "1.6.0" +__version__ = "1.6.1" diff --git a/pyproject.toml b/pyproject.toml index b7b8a72..572f1f3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "gitops" -version = "1.6.0" +version = "1.6.1" description = "Manage multiple apps across one or more k8s clusters." requires-python = ">=3.12" readme = "README.md"