Skip to content

chore: release develop #119

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 24, 2025
Merged
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
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
".": "1.1.0",
".": "1.1.1",
"gitops_server": "0.15.1",
"charts/gitops": "1.1.0"
"charts/gitops": "1.1.1"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.1.1](https://github.com/uptick/gitops/compare/gitops-v1.1.0...gitops-v1.1.1) (2025-01-24)


### Bug Fixes

* releases should be dot formatted ([d1469e8](https://github.com/uptick/gitops/commit/d1469e8cdbded06dbd5194e9ca7f0b2f52d7ff3e))

## [1.0.1](https://github.com/uptick/gitops/compare/cli-v1.0.0...cli-v1.0.1) (2025-01-23)


7 changes: 7 additions & 0 deletions charts/gitops/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.1.1](https://github.com/uptick/gitops/compare/helm-v1.1.0...helm-v1.1.1) (2025-01-24)


### Bug Fixes

* Release-As: 1.1.1 ([1543396](https://github.com/uptick/gitops/commit/1543396593d14ead283e8d1f7a60eca9f36d3e57))

## [1.1.0](https://github.com/uptick/gitops/compare/helm-v0.13.3...helm-v1.1.0) (2025-01-23)


2 changes: 1 addition & 1 deletion charts/gitops/Chart.yaml
Original file line number Diff line number Diff line change
@@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: GitOps Server Helm chart.
name: gitops
version: 1.1.0
version: 1.1.1
2 changes: 1 addition & 1 deletion gitops/__init__.py
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@

from .utils.cli import success, warning

__version__ = "1.1.0"
__version__ = "1.1.1"


# Checking gitops version matches cluster repo version.
2 changes: 1 addition & 1 deletion gitops_server/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.0"
__version__ = "1.1.1"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[project]
name = "gitops"
version = "1.1.0"
version = "1.1.1"
description = "Manage multiple apps across one or more k8s clusters."
requires-python = ">=3.12"
readme = "README.md"

Unchanged files with check annotations Beta

COPY gitops /app/gitops/
COPY gitops_server /app/gitops_server
ENV GIT_CRYPT_KEY_FILE=/app/cluster.key

Check warning on line 48 in Dockerfile

GitHub Actions / Build and Push Docker Image / ci

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GIT_CRYPT_KEY_FILE") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
ENV PYTHONPATH="$PYTHONPATH:/app"

Check warning on line 49 in Dockerfile

GitHub Actions / Build and Push Docker Image / ci

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$PYTHONPATH' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
ENV ACCESS_LOG=""