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

Update to Go 1.16 #416

Merged
merged 1 commit into from
Oct 28, 2021
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Changed
- The project Golang version is updated from the end-of-life v1.15 to version v1.16. [cyberark/conjur-authn-k8s-client#416](https://github.com/cyberark/conjur-authn-k8s-client/pull/416)

## [0.22.0] - 2021-09-17
### Added
- Introduces the `conjur-config-cluster-prep.yaml` and `conjur-config-namespace-prep.yaml` raw Kubernetes manifests generated from their corresponding Helm charts. These manifests provide an alternative method of configuring a Kubernetes cluster for the deployment of Conjur-authenticated applications for users unable to use Helm in their environment.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM goboring/golang:1.15.6b5 as authenticator-client-builder
FROM goboring/golang:1.16.7b7 as authenticator-client-builder
MAINTAINER CyberArk Software Ltd.

ENV GOOS=linux \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.junit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.15-alpine
FROM golang:1.16-alpine
MAINTAINER CyberArk Software Ltd.
LABEL id="conjur-authn-k8s-client-junit-processor"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.15-alpine
FROM golang:1.16-alpine
MAINTAINER CyberArk Software Ltd.
LABEL id="conjur-authn-k8s-client-test-runner"

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/cyberark/conjur-authn-k8s-client

go 1.15
go 1.16

require (
github.com/cenkalti/backoff v2.2.1+incompatible
Expand Down
1 change: 0 additions & 1 deletion pkg/authenticator/authenticator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import (
"path/filepath"
"testing"

. "github.com/smartystreets/goconvey/convey"
"github.com/stretchr/testify/assert"

"github.com/cyberark/conjur-authn-k8s-client/pkg/access_token/memory"
Expand Down