Skip to content

Commit 24d3f19

Browse files
Updates dependencies (#183)
1 parent db876b0 commit 24d3f19

File tree

5 files changed

+434
-59
lines changed

5 files changed

+434
-59
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
name: "Update Go"
1010
command: |
1111
sudo rm -rf /usr/local/go
12-
wget https://dl.google.com/go/go1.14.4.linux-amd64.tar.gz
13-
sudo tar -xvf go1.14.4.linux-amd64.tar.gz
12+
wget https://dl.google.com/go/go1.17.2.linux-amd64.tar.gz
13+
sudo tar -xvf go1.17.2.linux-amd64.tar.gz
1414
sudo mv go /usr/local
1515
- run:
1616
name: "Set Env Vars"

go.mod

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,24 @@ module github.com/hashicorp/vault-plugin-auth-jwt
33
go 1.14
44

55
require (
6-
github.com/go-test/deep v1.0.2-0.20181118220953-042da051cf31
7-
github.com/hashicorp/cap v0.1.0
6+
github.com/go-test/deep v1.0.8
7+
github.com/hashicorp/cap v0.1.1
88
github.com/hashicorp/errwrap v1.1.0
99
github.com/hashicorp/go-cleanhttp v0.5.2
10-
github.com/hashicorp/go-hclog v0.16.1
11-
github.com/hashicorp/go-secure-stdlib/base62 v0.1.1
10+
github.com/hashicorp/go-hclog v1.0.0
11+
github.com/hashicorp/go-secure-stdlib/base62 v0.1.2
1212
github.com/hashicorp/go-secure-stdlib/strutil v0.1.1
1313
github.com/hashicorp/go-sockaddr v1.0.2
14-
github.com/hashicorp/go-version v1.2.0 // indirect
15-
github.com/hashicorp/vault/api v1.0.5-0.20200215224050-f6547fa8e820
16-
github.com/hashicorp/vault/sdk v0.1.14-0.20200215224050-f6547fa8e820
14+
github.com/hashicorp/vault/api v1.3.0
15+
github.com/hashicorp/vault/sdk v0.3.0
1716
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect
18-
github.com/mitchellh/mapstructure v1.1.2
19-
github.com/mitchellh/pointerstructure v1.0.0
17+
github.com/mitchellh/mapstructure v1.4.2
18+
github.com/mitchellh/pointerstructure v1.2.0
2019
github.com/patrickmn/go-cache v2.1.0+incompatible
2120
github.com/ryanuber/go-glob v1.0.0
2221
github.com/stretchr/testify v1.7.0
23-
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
24-
golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a
25-
google.golang.org/api v0.29.0
26-
gopkg.in/square/go-jose.v2 v2.5.1
22+
golang.org/x/oauth2 v0.0.0-20211028175245-ba495a64dcb5
23+
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
24+
google.golang.org/api v0.59.0
25+
gopkg.in/square/go-jose.v2 v2.6.0
2726
)

0 commit comments

Comments
 (0)