From fc39890b8447d371972d9cbc9b3b92514173282c Mon Sep 17 00:00:00 2001 From: Jax Gauthier Date: Thu, 9 May 2024 09:05:09 -0400 Subject: [PATCH] Update README && Bump version 0.3.1 --- CHANGELOG.md | 10 +++++++++- README.md | 2 +- docker-compose.yml | 2 +- plugin.yaml | 4 ++-- setup.py | 2 +- 5 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 519f17e..4f80d17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # CHANGELOG.md +## 0.3.1 (2024-05-09) + +Fix: + +- Update GitPython [fixes #55] +- Update to CodeQL from LGTM.com +- Move from `vault` Docker container to `hashicorp/vault` in automated tests + ## 0.3.0 (2021-03-17) Features: @@ -9,4 +17,4 @@ Features: Fix: -- Moved from gitlab-ci to Github Actions for CI \ No newline at end of file +- Moved from gitlab-ci to Github Actions for CI diff --git a/README.md b/README.md index 28e9e41..adf8c04 100644 --- a/README.md +++ b/README.md @@ -141,7 +141,7 @@ for running tests using docker, you can use the following command: Unittesting and integration testing is automatically run via Github Actions on commit and PRs. -Additionally, code quality checking is handled by LGTM.com +Additionally, code quality checking is handled by CodeQL. Both of these checks must pass before PRs will be merged. diff --git a/docker-compose.yml b/docker-compose.yml index 55843ba..6dc3554 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: "3.5" services: vault: container_name: helm-vault - image: vault + image: hashicorp/vault ports: - 8200:8200 environment: diff --git a/plugin.yaml b/plugin.yaml index 6a40652..868f54e 100644 --- a/plugin.yaml +++ b/plugin.yaml @@ -1,7 +1,7 @@ name: "vault" -version: "0.3.0" +version: "0.3.1" usage: "Store secrets in Hashicorp Vault" description: |- Helm plugin for storing secrets in HashiCorp Vault command: "$HELM_PLUGIN_DIR/src/vault.py" -ignoreFlags: false \ No newline at end of file +ignoreFlags: false diff --git a/setup.py b/setup.py index 970c7cd..fd09294 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='vault', - version='0.3.0', + version='0.3.1', description='Helm plugin for storing secrets in HashiCorp Vault', author='Just-Insane', author_email='justin@justin-tech.com',