Skip to content
This repository was archived by the owner on Nov 24, 2021. It is now read-only.

Commit 291c7bc

Browse files
author
Andreas Heider
committed
Update dependencies
1 parent e383e88 commit 291c7bc

File tree

3,698 files changed

+23088
-1218688
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,698 files changed

+23088
-1218688
lines changed

Gopkg.lock

Lines changed: 182 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,27 @@
11
[[constraint]]
2-
name = "github.com/hashicorp/vault"
3-
version = "0.9.1"
2+
name = "github.com/fatih/structs"
3+
version = "1.0.0"
44

55
[[constraint]]
66
name = "github.com/go-ldap/ldap"
7-
revision = "23c4ee25d1434f2231f92afaeebfbfa7900ebbb0"
7+
version = "2.5.1"
8+
9+
[[constraint]]
10+
branch = "master"
11+
name = "github.com/hashicorp/go-multierror"
12+
13+
[[constraint]]
14+
name = "github.com/hashicorp/vault"
15+
version = "0.10.0"
16+
17+
[[constraint]]
18+
name = "github.com/mgutz/logxi"
19+
version = "1.0.0"
20+
21+
[[constraint]]
22+
name = "gopkg.in/jcmturner/gokrb5.v4"
23+
version = "4.1.2"
24+
25+
[prune]
26+
go-tests = true
27+
unused-packages = true

path_config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"github.com/hashicorp/vault/logical"
99
"github.com/hashicorp/vault/logical/framework"
10-
"gopkg.in/jcmturner/gokrb5.v3/keytab"
10+
"gopkg.in/jcmturner/gokrb5.v4/keytab"
1111
)
1212

1313
type kerberosConfig struct {

path_config_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import (
66
"testing"
77
"time"
88

9-
"github.com/hashicorp/vault/helper/logformat"
109
"github.com/hashicorp/vault/logical"
1110
"github.com/mgutz/logxi/v1"
1211
)
@@ -16,7 +15,7 @@ func getTestBackend(t *testing.T) (logical.Backend, logical.Storage) {
1615
maxLeaseTTLVal := time.Hour * 24
1716

1817
config := &logical.BackendConfig{
19-
Logger: logformat.NewVaultLogger(log.LevelTrace),
18+
Logger: nil,
2019
System: &logical.StaticSystemView{
2120
DefaultLeaseTTLVal: defaultLeaseTTLVal,
2221
MaxLeaseTTLVal: maxLeaseTTLVal,

0 commit comments

Comments
 (0)