Skip to content

Commit d76c359

Browse files
Updating dependencies and prepare for release (#132)
* chore(dependencies): updating dependencies * chore(dependencies): updating to go1.17 * chore(dependencies): updating linter
1 parent 1be6be5 commit d76c359

File tree

6 files changed

+91
-41
lines changed

6 files changed

+91
-41
lines changed

.github/workflows/push_pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v2
2525
- uses: actions/setup-go@v2
2626
with:
27-
go-version: '1.16'
27+
go-version: '1.17'
2828
- name: Build integration
2929
env:
3030
GOOS: ${{ matrix.goos }}
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/checkout@v2
4040
- uses: actions/setup-go@v2
4141
with:
42-
go-version: '1.16'
42+
go-version: '1.17'
4343
- name: Run unit tests
4444
run: make test
4545
e2e-kubernetes:
@@ -58,5 +58,5 @@ jobs:
5858
- uses: actions/checkout@v2
5959
- uses: actions/setup-go@v2
6060
with:
61-
go-version: '1.16'
61+
go-version: '1.17'
6262
- run: make e2e-test

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v2
1717
- uses: actions/setup-go@v2
1818
with:
19-
go-version: '1.16'
19+
go-version: '1.17'
2020
- name: Build integration
2121
env:
2222
GOOS: ${{ matrix.goos }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 1.7.0
8+
9+
- Updated dependencies
10+
711
## 1.6.0
812

913
- Adds support for Kubernetes 1.22

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ DOCKER_IMAGE_NAME ?= newrelic/k8s-metadata-injection
55
# This default tag is used during e2e test execution in the ci
66
DOCKER_IMAGE_TAG ?= local-dev
77

8-
GOLANGCILINT_VERSION = 1.33.0
8+
GOLANGCILINT_VERSION = 1.43.0
99

1010
# required for enabling Go modules inside $GOPATH
1111
export GO111MODULE=on

go.mod

Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,37 @@
11
module github.com/newrelic/k8s-metadata-injection
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/fsnotify/fsnotify v1.5.1
7-
github.com/google/gofuzz v1.2.0 // indirect
87
github.com/kelseyhightower/envconfig v1.4.0
98
github.com/stretchr/testify v1.7.0
9+
go.uber.org/zap v1.20.0
10+
k8s.io/api v0.23.1
11+
k8s.io/apimachinery v0.23.1
12+
)
13+
14+
require (
15+
github.com/davecgh/go-spew v1.1.1 // indirect
16+
github.com/go-logr/logr v1.2.2 // indirect
17+
github.com/gogo/protobuf v1.3.2 // indirect
18+
github.com/google/go-cmp v0.5.6 // indirect
19+
github.com/google/gofuzz v1.2.0 // indirect
20+
github.com/json-iterator/go v1.1.12 // indirect
21+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
22+
github.com/modern-go/reflect2 v1.0.2 // indirect
23+
github.com/pmezard/go-difflib v1.0.0 // indirect
24+
go.uber.org/atomic v1.9.0 // indirect
1025
go.uber.org/multierr v1.7.0 // indirect
11-
go.uber.org/zap v1.19.1
12-
k8s.io/api v0.22.4
13-
k8s.io/apimachinery v0.22.4
26+
golang.org/x/net v0.0.0-20220114011407-0dd24b26b47d // indirect
27+
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
28+
golang.org/x/text v0.3.7 // indirect
29+
gopkg.in/inf.v0 v0.9.1 // indirect
30+
gopkg.in/yaml.v2 v2.4.0 // indirect
31+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
32+
k8s.io/klog/v2 v2.40.1 // indirect
33+
k8s.io/utils v0.0.0-20211208161948-7d6a63dca704 // indirect
34+
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
35+
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
36+
sigs.k8s.io/yaml v1.3.0 // indirect
1437
)

0 commit comments

Comments
 (0)