Skip to content

Commit

Permalink
Update deps (#80)
Browse files Browse the repository at this point in the history
* Add missing methods to FakeLDAPConnection
  • Loading branch information
benashz authored Oct 28, 2021
1 parent 86c7df3 commit 6cdd414
Show file tree
Hide file tree
Showing 5 changed files with 229 additions and 82 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: docker.mirror.hashicorp.services/circleci/golang:1.13.7
- image: docker.mirror.hashicorp.services/circleci/golang:1.17.2
working_directory: /go/src/github.com/hashicorp/vault-plugin-secrets-ad
steps:
- checkout
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ at `secret/`.

If you wish to work on this plugin, you'll first need
[Go](https://www.golang.org) installed on your machine
(version 1.10+ is *required*).
(version 1.17+ is *required*).

For local dev first make sure Go is properly installed, including
setting up a [GOPATH](https://golang.org/doc/code.html#GOPATH).
Expand Down
19 changes: 9 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,16 @@ module github.com/hashicorp/vault-plugin-secrets-ad
go 1.12

require (
github.com/armon/go-metrics v0.3.0
github.com/go-errors/errors v1.0.1
github.com/go-ldap/ldap/v3 v3.1.3
github.com/hashicorp/go-hclog v0.12.0
github.com/hashicorp/go-secure-stdlib/base62 v0.1.1
github.com/armon/go-metrics v0.3.10
github.com/go-errors/errors v1.4.1
github.com/go-ldap/ldap/v3 v3.4.1
github.com/hashicorp/go-hclog v1.0.0
github.com/hashicorp/go-secure-stdlib/base62 v0.1.2
github.com/hashicorp/go-secure-stdlib/strutil v0.1.1
github.com/hashicorp/vault/api v1.0.5-0.20200215224050-f6547fa8e820
github.com/hashicorp/vault/sdk v0.1.14-0.20200527182800-ad90e0b39d2f
github.com/hashicorp/vault/api v1.3.0
github.com/hashicorp/vault/sdk v0.3.0
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect
github.com/mitchellh/mapstructure v1.2.2
github.com/mitchellh/mapstructure v1.4.2
github.com/patrickmn/go-cache v2.1.0+incompatible
golang.org/x/text v0.3.1-0.20181227161524-e6919f6577db
google.golang.org/protobuf v1.24.0 // indirect
golang.org/x/text v0.3.7
)
Loading

0 comments on commit 6cdd414

Please sign in to comment.