Skip to content
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

Prepare 0.15.0 release #285

Merged
merged 1 commit into from
Sep 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion plugin.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down