Skip to content

Commit 7c043b9

Browse files
authored
Merge pull request #491 from hypnoglow/prepare-0.16.3
Prepare release: 0.16.3
2 parents e09e97f + 0a34df4 commit 7c043b9

File tree

7 files changed

+34
-6
lines changed

7 files changed

+34
-6
lines changed

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
golang 1.22.5
1+
golang 1.22.11
22
helm 3.15.2
33
golangci-lint 1.59.1
44
goreleaser 2.0.1

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,39 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [0.16.3] - 2025-02-02
11+
12+
### Changed
13+
14+
- Go updated to 1.22.11.
15+
16+
### Fixed
17+
18+
- Fixed windows installation that was broken since `0.16.0`
19+
(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))
20+
21+
### Security
22+
23+
- Updated dependencies to pull vulnerabilities fixes.
24+
(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))
25+
1026
## [0.16.2] - 2024-07-26
1127

28+
### Known Issues
29+
30+
Windows installation is broken in this release. Please use `0.16.3` or later.
31+
1232
### Changed
1333

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

1737
## [0.16.1] - 2024-07-16
1838

39+
### Known Issues
40+
41+
Windows installation is broken in this release. Please use `0.16.3` or later.
42+
1943
### Changed
2044

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

3155
## [0.16.0] - 2023-12-07
3256

57+
### Known Issues
58+
59+
Windows installation is broken in this release. Please use `0.16.3` or later.
60+
3361
### Added
3462

3563
- Added `--verbose` global flag. This flag enables debug output. Currently only

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_VERSION=1.22.5
1+
ARG GO_VERSION=1.22.11
22
ARG HELM_VERSION
33

44
FROM golang:${GO_VERSION}-alpine as build

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The installation itself is simple as:
5151

5252
You can install a specific release version:
5353

54-
$ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.16.2
54+
$ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.16.3
5555

5656
To use the plugin, you do not need any special dependencies. The installer will
5757
download versioned release with prebuilt binary from [github releases](https://github.com/hypnoglow/helm-s3/releases).

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/hypnoglow/helm-s3
22

3-
go 1.22.5
3+
go 1.22.11
44

55
require (
66
github.com/Masterminds/semver v1.5.0

plugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: "s3"
2-
version: "0.16.2"
2+
version: "0.16.3"
33
usage: "Manage chart repositories on Amazon S3"
44
description: |-
55
Provides AWS S3 protocol support for charts and repos. https://github.com/hypnoglow/helm-s3

website/content/docs/install/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The installation itself is simple as:
1010

1111
You can install a specific release version:
1212

13-
$ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.16.2
13+
$ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.16.3
1414

1515
<!--more-->
1616

0 commit comments

Comments
 (0)