Skip to content

Commit 62f92ff

Browse files
authored
Merge pull request #105 from nats-io/dependencies
Update dependencies and add deprecation notice
2 parents 419bd99 + 7e75f0f commit 62f92ff

File tree

4 files changed

+128
-69
lines changed

4 files changed

+128
-69
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
This is a work in progress Terraform Provider to manage NATS JetStream.
22

3+
**DEPRECATION NOTICE: This project will be deprecated after the next released is published in December 2023 and will not receive further updates.**
4+
35
## Installation
46

57
When using Terraform 0.13 or newer adding the `provider` and running `terraform init` will download the provider from the [Terraform Registry](https://registry.terraform.io/providers/nats-io/jetstream/latest/docs).

go.mod

Lines changed: 38 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -5,38 +5,42 @@ go 1.20
55
require (
66
github.com/google/go-cmp v0.6.0
77
github.com/hashicorp/terraform-plugin-sdk v1.17.2
8-
github.com/nats-io/jsm.go v0.1.1-0.20231015125243-98cd0c16f934
9-
github.com/nats-io/jwt/v2 v2.5.2
10-
github.com/nats-io/nats-server/v2 v2.10.4-0.20231014170031-a797f0d7945a
8+
github.com/nats-io/jsm.go v0.1.1-0.20230929093807-94d0ee2d80c0
9+
github.com/nats-io/jwt/v2 v2.5.3
10+
github.com/nats-io/nats-server/v2 v2.10.7
1111
github.com/nats-io/nats.go v1.31.0
1212
github.com/xeipuuv/gojsonschema v1.2.0
1313
)
1414

1515
require (
16-
cloud.google.com/go v0.104.0 // indirect
17-
cloud.google.com/go/compute v1.10.0 // indirect
18-
cloud.google.com/go/iam v0.5.0 // indirect
19-
cloud.google.com/go/storage v1.27.0 // indirect
16+
cloud.google.com/go v0.111.0 // indirect
17+
cloud.google.com/go/compute v1.23.3 // indirect
18+
cloud.google.com/go/compute/metadata v0.2.3 // indirect
19+
cloud.google.com/go/iam v1.1.5 // indirect
20+
cloud.google.com/go/storage v1.35.1 // indirect
2021
github.com/Masterminds/goutils v1.1.1 // indirect
2122
github.com/Masterminds/semver v1.5.0 // indirect
2223
github.com/Masterminds/sprig v2.22.0+incompatible // indirect
23-
github.com/agext/levenshtein v1.2.2 // indirect
24+
github.com/agext/levenshtein v1.2.3 // indirect
2425
github.com/antonmedv/expr v1.15.3 // indirect
2526
github.com/apparentlymart/go-cidr v1.1.0 // indirect
2627
github.com/apparentlymart/go-textseg/v12 v12.0.0 // indirect
2728
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
2829
github.com/armon/go-radix v1.0.0 // indirect
29-
github.com/aws/aws-sdk-go v1.44.122 // indirect
30+
github.com/aws/aws-sdk-go v1.48.14 // indirect
3031
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
3132
github.com/bgentry/speakeasy v0.1.0 // indirect
3233
github.com/davecgh/go-spew v1.1.1 // indirect
3334
github.com/dustin/go-humanize v1.0.1 // indirect
34-
github.com/fatih/color v1.7.0 // indirect
35+
github.com/fatih/color v1.16.0 // indirect
36+
github.com/go-logr/logr v1.3.0 // indirect
37+
github.com/go-logr/stdr v1.2.2 // indirect
3538
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
36-
github.com/golang/protobuf v1.5.2 // indirect
37-
github.com/google/uuid v1.3.0 // indirect
38-
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect
39-
github.com/googleapis/gax-go/v2 v2.6.0 // indirect
39+
github.com/golang/protobuf v1.5.3 // indirect
40+
github.com/google/s2a-go v0.1.7 // indirect
41+
github.com/google/uuid v1.4.0 // indirect
42+
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
43+
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
4044
github.com/hashicorp/errwrap v1.0.0 // indirect
4145
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
4246
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
@@ -59,9 +63,9 @@ require (
5963
github.com/huandu/xstrings v1.3.2 // indirect
6064
github.com/imdario/mergo v0.3.12 // indirect
6165
github.com/jmespath/go-jmespath v0.4.0 // indirect
62-
github.com/klauspost/compress v1.17.0 // indirect
63-
github.com/mattn/go-colorable v0.1.1 // indirect
64-
github.com/mattn/go-isatty v0.0.5 // indirect
66+
github.com/klauspost/compress v1.17.4 // indirect
67+
github.com/mattn/go-colorable v0.1.13 // indirect
68+
github.com/mattn/go-isatty v0.0.20 // indirect
6569
github.com/minio/highwayhash v1.0.2 // indirect
6670
github.com/mitchellh/cli v1.1.2 // indirect
6771
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
@@ -71,7 +75,7 @@ require (
7175
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
7276
github.com/mitchellh/mapstructure v1.1.2 // indirect
7377
github.com/mitchellh/reflectwalk v1.0.1 // indirect
74-
github.com/nats-io/nkeys v0.4.5 // indirect
78+
github.com/nats-io/nkeys v0.4.6 // indirect
7579
github.com/nats-io/nuid v1.0.1 // indirect
7680
github.com/oklog/run v1.0.0 // indirect
7781
github.com/posener/complete v1.2.1 // indirect
@@ -83,18 +87,23 @@ require (
8387
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
8488
github.com/zclconf/go-cty v1.10.0 // indirect
8589
github.com/zclconf/go-cty-yaml v1.0.2 // indirect
86-
go.opencensus.io v0.23.0 // indirect
87-
golang.org/x/crypto v0.14.0 // indirect
90+
go.opencensus.io v0.24.0 // indirect
91+
go.opentelemetry.io/otel v1.19.0 // indirect
92+
go.opentelemetry.io/otel/metric v1.19.0 // indirect
93+
go.opentelemetry.io/otel/trace v1.19.0 // indirect
94+
golang.org/x/crypto v0.16.0 // indirect
8895
golang.org/x/net v0.17.0 // indirect
89-
golang.org/x/oauth2 v0.1.0 // indirect
90-
golang.org/x/sys v0.13.0 // indirect
91-
golang.org/x/text v0.13.0 // indirect
92-
golang.org/x/time v0.3.0 // indirect
93-
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
94-
google.golang.org/api v0.100.0 // indirect
96+
golang.org/x/oauth2 v0.13.0 // indirect
97+
golang.org/x/sync v0.5.0 // indirect
98+
golang.org/x/sys v0.15.0 // indirect
99+
golang.org/x/text v0.14.0 // indirect
100+
golang.org/x/time v0.5.0 // indirect
101+
google.golang.org/api v0.150.0 // indirect
95102
google.golang.org/appengine v1.6.7 // indirect
96-
google.golang.org/genproto v0.0.0-20221025140454-527a21cfbd71 // indirect
97-
google.golang.org/grpc v1.50.1 // indirect
98-
google.golang.org/protobuf v1.28.1 // indirect
103+
google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b // indirect
104+
google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b // indirect
105+
google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405 // indirect
106+
google.golang.org/grpc v1.59.0 // indirect
107+
google.golang.org/protobuf v1.31.0 // indirect
99108
gopkg.in/yaml.v3 v3.0.1 // indirect
100109
)

0 commit comments

Comments
 (0)