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 release: 0.16.3 #491

Merged
merged 1 commit into from
Feb 2, 2025
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
golang 1.22.5
golang 1.22.11
helm 3.15.2
golangci-lint 1.59.1
goreleaser 2.0.1
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,39 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.16.3] - 2025-02-02

### Changed

- Go updated to 1.22.11.

### Fixed

- Fixed windows installation that was broken since `0.16.0`
(Refs: [#462](https://github.com/hypnoglow/helm-s3/issues/462) [#466](https://github.com/hypnoglow/helm-s3/pull/466) [#487](https://github.com/hypnoglow/helm-s3/pull/487) [#489](https://github.com/hypnoglow/helm-s3/pull/489). Thanks to [@arahmangulov](https://github.com/arahmangulov) [@salehparsa](https://github.com/salehparsa) [@omerfsen](https://github.com/omerfsen))

### Security

- Updated dependencies to pull vulnerabilities fixes.
(Refs: [#475](https://github.com/hypnoglow/helm-s3/issues/475) [#476](https://github.com/hypnoglow/helm-s3/issues/476) [#477](https://github.com/hypnoglow/helm-s3/pull/477) [#482](https://github.com/hypnoglow/helm-s3/pull/482). Thanks to [@kszarek](https://github.com/kszarek))

## [0.16.2] - 2024-07-26

### Known Issues

Windows installation is broken in this release. Please use `0.16.3` or later.

### Changed

- Go updated to 1.22.5
[Refs: [#448](https://github.com/hypnoglow/helm-s3/pull/448)]

## [0.16.1] - 2024-07-16

### Known Issues

Windows installation is broken in this release. Please use `0.16.3` or later.

### Changed

- `generated` timestamp field in the index file is now updated with current time
Expand All @@ -30,6 +54,10 @@ on push, reindex and delete.

## [0.16.0] - 2023-12-07

### Known Issues

Windows installation is broken in this release. Please use `0.16.3` or later.

### Added

- Added `--verbose` global flag. This flag enables debug output. Currently only
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG GO_VERSION=1.22.5
ARG GO_VERSION=1.22.11
ARG HELM_VERSION

FROM golang:${GO_VERSION}-alpine as build

Check warning on line 4 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Docker images / Publish docker images (2.17.0)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 4 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Docker images / Publish docker images (3.14.4)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 4 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Docker images / Publish docker images (3.15.2)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

ARG PLUGIN_VERSION

Expand All @@ -25,7 +25,7 @@
RUN sed "/^hooks:/,+2 d" plugin.yaml > plugin.yaml.fixed \
&& sed -i "s/^version:.*$/version: ${PLUGIN_VERSION}/" plugin.yaml.fixed

FROM alpine/helm:${HELM_VERSION}

Check warning on line 28 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Docker images / Publish docker images (2.17.0)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG alpine/helm:${HELM_VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

Check warning on line 28 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Docker images / Publish docker images (3.14.4)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG alpine/helm:${HELM_VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

Check warning on line 28 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Docker images / Publish docker images (3.15.2)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG alpine/helm:${HELM_VERSION} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

# Build-time metadata as defined at http://label-schema.org
ARG BUILD_DATE
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,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.16.2
$ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.16.3

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 go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hypnoglow/helm-s3

go 1.22.5
go 1.22.11

require (
github.com/Masterminds/semver v1.5.0
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.16.2"
version: "0.16.3"
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
2 changes: 1 addition & 1 deletion website/content/docs/install/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,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.16.2
$ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.16.3

<!--more-->

Expand Down