Skip to content

Commit 59a6a52

Browse files
committed
Update packages
1 parent ab8e3cd commit 59a6a52

File tree

9 files changed

+76
-78
lines changed

9 files changed

+76
-78
lines changed

backend/backend.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"time"
1010

1111
gocrypto "github.com/bhoriuchi/go-crypto"
12-
"github.com/philips-labs/terraform-backend-hsdp/backend/store"
13-
"github.com/philips-labs/terraform-backend-hsdp/backend/types"
12+
"github.com/loafoe/terraform-backend-hsdp/backend/store"
13+
"github.com/loafoe/terraform-backend-hsdp/backend/types"
1414
)
1515

1616
// Options backend options

backend/store/s3/lock.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"encoding/json"
77

88
"github.com/minio/minio-go/v7"
9-
"github.com/philips-labs/terraform-backend-hsdp/backend/store"
10-
"github.com/philips-labs/terraform-backend-hsdp/backend/types"
9+
"github.com/loafoe/terraform-backend-hsdp/backend/store"
10+
"github.com/loafoe/terraform-backend-hsdp/backend/types"
1111
)
1212

1313
// GetLock gets the lock

backend/store/s3/s3.go

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

66
"github.com/cloudfoundry-community/gautocloud"
77
"github.com/minio/minio-go/v7"
8-
"github.com/philips-labs/terraform-backend-hsdp/backend/store"
8+
"github.com/loafoe/terraform-backend-hsdp/backend/store"
99
"github.com/philips-software/gautocloud-connectors/hsdp"
1010
)
1111

backend/store/s3/state.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010

1111
"github.com/minio/minio-go/v7"
1212

13-
"github.com/philips-labs/terraform-backend-hsdp/backend/store"
14-
"github.com/philips-labs/terraform-backend-hsdp/backend/types"
13+
"github.com/loafoe/terraform-backend-hsdp/backend/store"
14+
"github.com/loafoe/terraform-backend-hsdp/backend/types"
1515
)
1616

1717
func (c *Store) storePath(ref string) string {

backend/store/s3/stats.go

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

99
"github.com/minio/minio-go/v7"
10-
"github.com/philips-labs/terraform-backend-hsdp/backend/store"
10+
"github.com/loafoe/terraform-backend-hsdp/backend/store"
1111
)
1212

1313
var _ store.Stats = (*Store)(nil)

backend/store/store.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package store
33
import (
44
"errors"
55

6-
"github.com/philips-labs/terraform-backend-hsdp/backend/types"
6+
"github.com/loafoe/terraform-backend-hsdp/backend/types"
77
)
88

99
// ErrNotFound item not found

go.mod

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
module github.com/philips-labs/terraform-backend-hsdp
1+
module github.com/loafoe/terraform-backend-hsdp
22

3-
go 1.19
3+
go 1.24
44

55
require (
66
github.com/bhoriuchi/go-crypto v0.0.0-20190614232206-6aed78a5c061
77
github.com/cloudfoundry-community/gautocloud v1.1.11
8+
github.com/dip-software/go-dip-api v0.91.0
89
github.com/golang-jwt/jwt v3.2.2+incompatible
910
github.com/minio/minio-go/v7 v7.0.49
1011
github.com/philips-software/gautocloud-connectors v0.7.0
11-
github.com/philips-software/go-hsdp-api v0.76.0
1212
github.com/spf13/viper v1.15.0
1313
)
1414

@@ -18,22 +18,25 @@ require (
1818
github.com/aws/aws-sdk-go v1.44.100 // indirect
1919
github.com/azer/snakecase v1.0.0 // indirect
2020
github.com/cenkalti/backoff/v3 v3.0.0 // indirect
21+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
2122
github.com/cespare/xxhash/v2 v2.1.2 // indirect
2223
github.com/cloudfoundry-community/go-cfenv v1.18.0 // indirect
24+
github.com/coder/websocket v1.8.12 // indirect
2325
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
2426
github.com/dustin/go-humanize v1.0.1 // indirect
2527
github.com/fatih/color v1.13.0 // indirect
2628
github.com/fsnotify/fsnotify v1.6.0 // indirect
27-
github.com/go-playground/locales v0.14.0 // indirect
28-
github.com/go-playground/universal-translator v0.18.0 // indirect
29-
github.com/go-playground/validator/v10 v10.11.1 // indirect
29+
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
30+
github.com/go-playground/locales v0.14.1 // indirect
31+
github.com/go-playground/universal-translator v0.18.1 // indirect
32+
github.com/go-playground/validator/v10 v10.24.0 // indirect
3033
github.com/go-redis/redis/v8 v8.11.5 // indirect
3134
github.com/go-stack/stack v1.8.0 // indirect
3235
github.com/golang/mock v1.6.0 // indirect
33-
github.com/golang/protobuf v1.5.2 // indirect
36+
github.com/golang/protobuf v1.5.4 // indirect
3437
github.com/golang/snappy v0.0.4 // indirect
3538
github.com/google/go-querystring v1.1.0 // indirect
36-
github.com/google/uuid v1.3.0 // indirect
39+
github.com/google/uuid v1.6.0 // indirect
3740
github.com/hashicorp/errwrap v1.1.0 // indirect
3841
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
3942
github.com/hashicorp/go-hclog v1.2.0 // indirect
@@ -53,7 +56,7 @@ require (
5356
github.com/hashicorp/vault/api v1.7.2 // indirect
5457
github.com/hashicorp/vault/sdk v0.5.1 // indirect
5558
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect
56-
github.com/hasura/go-graphql-client v0.8.1 // indirect
59+
github.com/hasura/go-graphql-client v0.13.1 // indirect
5760
github.com/inconshreveable/log15 v0.0.0-20180818164646-67afb5ed74ec // indirect
5861
github.com/jmespath/go-jmespath v0.4.0 // indirect
5962
github.com/json-iterator/go v1.1.12 // indirect
@@ -63,7 +66,7 @@ require (
6366
github.com/kevinburke/twilio-go v0.0.0-20180929160738-8c4607665b91 // indirect
6467
github.com/klauspost/compress v1.15.15 // indirect
6568
github.com/klauspost/cpuid/v2 v2.2.3 // indirect
66-
github.com/leodido/go-urn v1.2.1 // indirect
69+
github.com/leodido/go-urn v1.4.0 // indirect
6770
github.com/lib/pq v1.10.7 // indirect
6871
github.com/magiconair/properties v1.8.7 // indirect
6972
github.com/mattn/go-colorable v0.1.12 // indirect
@@ -79,6 +82,7 @@ require (
7982
github.com/modern-go/reflect2 v1.0.2 // indirect
8083
github.com/oklog/run v1.0.0 // indirect
8184
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
85+
github.com/philips-software/go-hsdp-api v0.74.1 // indirect
8286
github.com/pierrec/lz4 v2.6.0+incompatible // indirect
8387
github.com/pierrec/lz4/v4 v4.1.15 // indirect
8488
github.com/rs/xid v1.4.0 // indirect
@@ -94,22 +98,20 @@ require (
9498
github.com/ttacon/builder v0.0.0-20170518171403-c099f663e1c2 // indirect
9599
github.com/ttacon/libphonenumber v1.0.0 // indirect
96100
go.uber.org/atomic v1.9.0 // indirect
97-
golang.org/x/crypto v0.6.0 // indirect
98-
golang.org/x/net v0.7.0 // indirect
99-
golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783 // indirect
100-
golang.org/x/sync v0.1.0 // indirect
101-
golang.org/x/sys v0.5.0 // indirect
102-
golang.org/x/text v0.7.0 // indirect
101+
golang.org/x/crypto v0.32.0 // indirect
102+
golang.org/x/net v0.34.0 // indirect
103+
golang.org/x/oauth2 v0.26.0 // indirect
104+
golang.org/x/sync v0.10.0 // indirect
105+
golang.org/x/sys v0.29.0 // indirect
106+
golang.org/x/text v0.21.0 // indirect
103107
golang.org/x/time v0.1.0 // indirect
104-
google.golang.org/appengine v1.6.7 // indirect
105108
google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef // indirect
106109
google.golang.org/grpc v1.52.0 // indirect
107-
google.golang.org/protobuf v1.28.1 // indirect
110+
google.golang.org/protobuf v1.33.0 // indirect
108111
gopkg.in/ini.v1 v1.67.0 // indirect
109112
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22 // indirect
110113
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
111114
gopkg.in/yaml.v3 v3.0.1 // indirect
112-
nhooyr.io/websocket v1.8.7 // indirect
113115
)
114116

115117
//replace github.com/cloudfoundry-community/gautocloud v1.1.6 => github.com/loafoe/gautocloud v0.0.0-20201207124432-b51ec5b81955

0 commit comments

Comments
 (0)