From e591678ce870ac42b0e85d8f0ec674aa882ddcf9 Mon Sep 17 00:00:00 2001 From: Sheldon Hull Date: Tue, 16 Jan 2024 14:02:23 +0100 Subject: [PATCH] chore(deps): bump dependencies --- .changes/v2.1.1.md | 5 +++++ .vscode/settings.json | 4 ++-- CHANGELOG.md | 20 ++++++++++++++++++++ 3 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 .changes/v2.1.1.md diff --git a/.changes/v2.1.1.md b/.changes/v2.1.1.md new file mode 100644 index 0000000..f7db804 --- /dev/null +++ b/.changes/v2.1.1.md @@ -0,0 +1,5 @@ +## v2.1.1 - 2024-01-16 + +### โฌ†๏ธ Dependencies + +- Update dependent libraries and go version. No user facing changes, just continued maintenance for improved security & stability. diff --git a/.vscode/settings.json b/.vscode/settings.json index e16d1d2..7f41175 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,8 +5,8 @@ "[go]": { "debug.saveBeforeStart": "allEditorsInActiveGroup", "editor.codeActionsOnSave": { - "source.fixAll": true, - "source.organizeImports": false + "source.fixAll": "explicit", + "source.organizeImports": "never" }, "editor.defaultFormatter": "trunk.io", "editor.formatOnSave": true diff --git a/CHANGELOG.md b/CHANGELOG.md index 4411834..ef58ce5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,3 +5,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). + +## v2.1.1 - 2024-01-16 + +### โฌ†๏ธ Dependencies + +- Update dependent libraries and go version. No user facing changes, just continued maintenance for improved security & stability. + +## v2.1.0 - 2023-06-27 + +### ๐ŸŽ‰ New Product Feature + +- Add `CreateSecret` and `DeleteSecret` nethods. Thanks to contribution by @michaelsauter ๐ŸŽ‰. + +### ๐Ÿงช Tests + +- Add build tag to test files `integration`. This will ensure local go tests don't run integration tests as default or in trunk `pre-push` triggered checks. + +### ๐Ÿค– CI & Build + +- Begin versioning and tracking of changes via `changie`.