File tree Expand file tree Collapse file tree 9 files changed +33
-10
lines changed Expand file tree Collapse file tree 9 files changed +33
-10
lines changed Original file line number Diff line number Diff line change 62
62
helm :
63
63
- 2.17.0
64
64
- 3.12.3
65
- - 3.13.1
65
+ - 3.13.2
66
66
services :
67
67
minio :
68
68
# TODO: use official minio/minio image when this issue is fixed:
Original file line number Diff line number Diff line change 20
20
helm :
21
21
- 2.17.0
22
22
- 3.12.3
23
- - 3.13.1
23
+ - 3.13.2
24
24
env :
25
25
IMAGE_NAME : hypnoglow/helm-s3
26
26
HELM_VERSION : ${{ matrix.helm }}
Original file line number Diff line number Diff line change 11
11
12
12
- name : Install helm
13
13
run : |
14
- helm_version="3.13.1 "
14
+ helm_version="3.13.2 "
15
15
tar_filename="helm-v${helm_version}-linux-amd64.tar.gz"
16
16
checksum_filename="helm-v${helm_version}-linux-amd64.tar.gz.sha256sum"
17
17
Original file line number Diff line number Diff line change 1
1
golang 1.19.13
2
- helm 3.13.1
2
+ helm 3.13.2
3
3
golangci-lint 1.48.0
Original file line number Diff line number Diff line change @@ -7,11 +7,34 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.16.0] - 2023-12-07
11
+
12
+ ### Added
13
+
14
+ - Added ` --verbose ` global flag. This flag enables debug output. Currently only
15
+ ` helm s3 reindex ` command supports it, but other commands may be updated in the
16
+ future.
17
+ [ Refs: [ #320 ] ( https://github.com/hypnoglow/helm-s3/pull/320 )]
18
+
10
19
### Changed
11
20
12
- - Supported (and tested against) Helm versions updated to 3.12.3 and 3.13.1.
21
+ - Supported (and tested against) Helm versions updated to 3.12.3 and 3.13.2.
22
+
13
23
- Helm version detection now fallbacks to Helm v3 in case of errors, as Helm v2
14
24
is deprecated for 3 years already.
25
+ [ Refs: [ #334 ] ( https://github.com/hypnoglow/helm-s3/pull/334 )]
26
+
27
+ - Refactored install script so now the plugin does not require _ bash_ . This
28
+ solves a few issues with installing the plugin on some distributions.
29
+ [ Refs: [ #262 ] ( https://github.com/hypnoglow/helm-s3/pull/262 ) [ #273 ] ( https://github.com/hypnoglow/helm-s3/issues/273 ) [ #241 ] ( https://github.com/hypnoglow/helm-s3/pull/241 )] thanks to [ @yonahd ] ( https://github.com/yonahd ) and [ @jouve ] ( https://github.com/jouve )
30
+
31
+ ### Fixed
32
+
33
+ - Fixed issues when the plugin was erroneously detecting Helm v2 instead of Helm v3.
34
+ [ Refs: [ #269 ] ( https://github.com/hypnoglow/helm-s3/pull/269 ) [ #221 ] ( https://github.com/hypnoglow/helm-s3/issues/221 )] thanks to [ @clhuang ] ( https://github.com/clhuang )
35
+
36
+ - Added more context info to errors returned by the plugin, so that it is easier
37
+ to understand what went wrong, e.g. what chart failed during ` helm s3 reindex ` .
15
38
16
39
## [ 0.15.1] - 2023-09-20
17
40
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ The installation itself is simple as:
49
49
50
50
You can install a specific release version:
51
51
52
- $ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.15.1
52
+ $ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.16.0
53
53
54
54
To use the plugin, you do not need any special dependencies. The installer will
55
55
download versioned release with prebuilt binary from [ github releases] ( https://github.com/hypnoglow/helm-s3/releases ) .
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ require (
12
12
github.com/pkg/errors v0.9.1
13
13
github.com/spf13/cobra v1.8.0
14
14
github.com/stretchr/testify v1.8.4
15
- helm.sh/helm/v3 v3.13.1
15
+ helm.sh/helm/v3 v3.13.2
16
16
k8s.io/helm v2.17.0+incompatible
17
17
sigs.k8s.io/yaml v1.4.0
18
18
)
Original file line number Diff line number Diff line change @@ -408,8 +408,8 @@ gopkg.in/yaml.v3 v3.0.0/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
408
408
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA =
409
409
gopkg.in/yaml.v3 v3.0.1 /go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM =
410
410
gotest.tools/v3 v3.4.0 h1:ZazjZUfuVeZGLAmlKKuyv3IKP5orXcwtOwDQH6YVr6o =
411
- helm.sh/helm/v3 v3.13.1 h1:DG+XLGzBJeZvMLlMbm6bPDLV1dGaVW9eZsDoUd1/LM0 =
412
- helm.sh/helm/v3 v3.13.1 /go.mod h1:TdQRMiq46CSWcc68Hb0uVhvAWusaN90YwAV54cz6JzU =
411
+ helm.sh/helm/v3 v3.13.2 h1:IcO9NgmmpetJODLZhR3f3q+6zzyXVKlRizKFwbi7K8w =
412
+ helm.sh/helm/v3 v3.13.2 /go.mod h1:GIHDwZggaTGbedevTlrQ6DB++LBN6yuQdeGj0HNaDx0 =
413
413
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099 /go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4 =
414
414
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc /go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4 =
415
415
k8s.io/api v0.28.2 h1:9mpl5mOb6vXZvqbQmankOfPIGiudghwCoLl1EYfUZbw =
Original file line number Diff line number Diff line change 1
1
name : " s3"
2
- version : " 0.15.1 "
2
+ version : " 0.16.0 "
3
3
usage : " Manage chart repositories on Amazon S3"
4
4
description : |-
5
5
Provides AWS S3 protocol support for charts and repos. https://github.com/hypnoglow/helm-s3
You can’t perform that action at this time.
0 commit comments