diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1b3486fc..8704e5f3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,6 +36,7 @@ jobs: env: GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # Useful if you want to use not the latest tag for changelog. GORELEASER_PREVIOUS_TAG: "" docker-images: diff --git a/CHANGELOG.md b/CHANGELOG.md index 636d51e7..dc027d35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,29 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.15.0] - 2023-09-16 + +### Added + +- `helm s3 init` now supports `--force` and `--ignore-if-exists` flags. +`--force` flag replaces the index file if it exists. +`--ignore-if-exists` flag allows to exit normally without triggering an error if +the index file already exists. +[Refs: [#207](https://github.com/hypnoglow/helm-s3/pull/207) [#73](https://github.com/hypnoglow/helm-s3/issues/73)] + +- Added support for AWS IAM Identity Center (aka AWS SSO). See README for instructions. +[Refs: [#274](https://github.com/hypnoglow/helm-s3/pull/274) [#143](https://github.com/hypnoglow/helm-s3/issues/143)] + +### Changed + - Supported (and tested against) Helm versions updated to 3.11.3 and 3.12.3. +### Fixed + +- Updated dependencies which fixes potential security vulnerabilities. + +- Introduced minor documentation improvements. + ## [0.14.0] - 2022-08-24 ### Changed diff --git a/README.md b/README.md index a409207a..a6e8666b 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ The installation itself is simple as: You can install a specific release version: - $ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.14.0 + $ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.15.0 To use the plugin, you do not need any special dependencies. The installer will download versioned release with prebuilt binary from [github releases](https://github.com/hypnoglow/helm-s3/releases). diff --git a/plugin.yaml b/plugin.yaml index f9c648bc..135b10ae 100644 --- a/plugin.yaml +++ b/plugin.yaml @@ -1,5 +1,5 @@ name: "s3" -version: "0.14.0" +version: "0.15.0" usage: "Manage chart repositories on Amazon S3" description: |- Provides AWS S3 protocol support for charts and repos. https://github.com/hypnoglow/helm-s3