Skip to content

Commit dc770b5

Browse files
authored
Merge pull request #448 from hypnoglow/update-go
Update Go 1.22.5; prepare release 0.16.2
2 parents 11a1da3 + 3e5dcff commit dc770b5

File tree

8 files changed

+17
-8
lines changed

8 files changed

+17
-8
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.16.2] - 2024-07-26
11+
12+
### Changed
13+
14+
- Go updated to 1.22.5
15+
[Refs: [#448](https://github.com/hypnoglow/helm-s3/pull/448)]
16+
1017
## [0.16.1] - 2024-07-16
1118

1219
### Changed

Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_VERSION=1.22
1+
ARG GO_VERSION=1.22.5
22
ARG HELM_VERSION
33

44
FROM golang:${GO_VERSION}-alpine as build
@@ -11,9 +11,12 @@ WORKDIR /workspace/helm-s3
1111

1212
COPY . .
1313

14-
RUN CGO_ENABLED=0 go build -o bin/helm-s3 \
14+
RUN CGO_ENABLED=0 \
15+
go build \
16+
-trimpath \
1517
-mod=vendor \
1618
-ldflags "-X main.version=${PLUGIN_VERSION}" \
19+
-o bin/helm-s3 \
1720
./cmd/helm-s3
1821

1922
# Correct the plugin manifest with docker-specific fixes:

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ all: deps build
66
.PHONY: deps
77
deps:
88
@go mod tidy
9-
@go mod vendor
109

1110
.PHONY: build
1211
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.1
54+
$ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.16.2
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.0
3+
go 1.22.5
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.1"
2+
version: "0.16.2"
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/advanced-features/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ summary: |
88

99
## Relative chart URLs
1010

11-
Charts can be `push`-ed with `--releative` flag so their URLs in the index file
11+
Charts can be `push`-ed with `--relative` flag so their URLs in the index file
1212
will be relative to your repository root. This can be useful in various
1313
scenarios, e.g. serving charts via HTTP, serving charts from replicated buckets,
1414
etc.

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.0
13+
$ helm plugin install https://github.com/hypnoglow/helm-s3.git --version 0.16.2
1414

1515
<!--more-->
1616

0 commit comments

Comments
 (0)