Skip to content

Commit 5539574

Browse files
committed
Bugfix fix for vulnerability and upgrade to gov1.23.x
1 parent d01f30f commit 5539574

File tree

750 files changed

+59858
-32568
lines changed

Some content is hidden

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

750 files changed

+59858
-32568
lines changed

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.21.13
1+
1.23.9

coverage/coverage_test.go

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

1515
var totalRgx = regexp.MustCompile(`total:\s+\(statements\)\s+([^"]*)%`)
1616

17-
const CodeCoverageThreshold = 53.0
17+
const CodeCoverageThreshold = 54.6
1818

1919
func TestCoverage(t *testing.T) {
2020
if os.Getenv("CHECK_COVERAGE") != "true" {

go.mod

Lines changed: 41 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,78 @@
11
module github.com/oracle/terraform-provider-oci
22

33
require (
4-
github.com/fatih/color v1.16.0
5-
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320
4+
github.com/fatih/color v1.18.0
5+
github.com/hashicorp/go-cty v1.5.0
66
github.com/hashicorp/go-multierror v1.1.1
77
github.com/hashicorp/go-version v1.7.0
8-
github.com/hashicorp/hc-install v0.7.0
9-
github.com/hashicorp/hcl2 v0.0.0-20190618163856-0b64543c968c
10-
github.com/hashicorp/terraform-exec v0.21.0
11-
github.com/hashicorp/terraform-plugin-framework v1.10.0
12-
github.com/hashicorp/terraform-plugin-framework-validators v0.13.0
13-
github.com/hashicorp/terraform-plugin-go v0.23.0
14-
github.com/hashicorp/terraform-plugin-mux v0.16.0
15-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.34.0
8+
github.com/hashicorp/hc-install v0.9.2
9+
github.com/hashicorp/hcl2 v0.0.0-20191002203319-fb75b3253c80
10+
github.com/hashicorp/terraform-exec v0.23.0
11+
github.com/hashicorp/terraform-plugin-framework v1.14.1
12+
github.com/hashicorp/terraform-plugin-framework-validators v0.17.0
13+
github.com/hashicorp/terraform-plugin-go v0.26.0
14+
github.com/hashicorp/terraform-plugin-mux v0.18.0
15+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.36.1
1616
github.com/hashicorp/terraform-plugin-testing v1.9.0
1717
github.com/oracle/oci-go-sdk/v65 v65.90.0
18-
github.com/stretchr/testify v1.8.4
19-
golang.org/x/mod v0.20.0
20-
gopkg.in/yaml.v2 v2.3.0
18+
github.com/stretchr/testify v1.9.0
19+
golang.org/x/mod v0.24.0
20+
gopkg.in/yaml.v2 v2.4.0
2121
gopkg.in/yaml.v3 v3.0.1
2222
)
2323

2424
require (
25-
github.com/ProtonMail/go-crypto v1.1.0-alpha.2 // indirect
26-
github.com/agext/levenshtein v1.2.2 // indirect
25+
github.com/ProtonMail/go-crypto v1.1.6 // indirect
26+
github.com/agext/levenshtein v1.2.3 // indirect
2727
github.com/apparentlymart/go-textseg v1.0.0 // indirect
2828
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
29-
github.com/cloudflare/circl v1.3.7 // indirect
29+
github.com/cloudflare/circl v1.6.0 // indirect
3030
github.com/davecgh/go-spew v1.1.1 // indirect
31-
github.com/gofrs/flock v0.8.1 // indirect
31+
github.com/gofrs/flock v0.12.1 // indirect
3232
github.com/golang/protobuf v1.5.4 // indirect
33-
github.com/google/go-cmp v0.6.0 // indirect
34-
github.com/hashicorp/errwrap v1.0.0 // indirect
33+
github.com/google/go-cmp v0.7.0 // indirect
34+
github.com/hashicorp/errwrap v1.1.0 // indirect
3535
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
3636
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
3737
github.com/hashicorp/go-hclog v1.6.3 // indirect
38-
github.com/hashicorp/go-plugin v1.6.0 // indirect
38+
github.com/hashicorp/go-plugin v1.6.3 // indirect
39+
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
3940
github.com/hashicorp/go-uuid v1.0.3 // indirect
40-
github.com/hashicorp/hcl/v2 v2.21.0 // indirect
41+
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
4142
github.com/hashicorp/logutils v1.0.0 // indirect
42-
github.com/hashicorp/terraform-json v0.22.1 // indirect
43+
github.com/hashicorp/terraform-json v0.24.0 // indirect
4344
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
44-
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
45+
github.com/hashicorp/terraform-registry-address v0.2.5 // indirect
4546
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
46-
github.com/hashicorp/yamux v0.1.1 // indirect
47-
github.com/mattn/go-colorable v0.1.13 // indirect
47+
github.com/hashicorp/yamux v0.1.2 // indirect
48+
github.com/mattn/go-colorable v0.1.14 // indirect
4849
github.com/mattn/go-isatty v0.0.20 // indirect
4950
github.com/mitchellh/copystructure v1.2.0 // indirect
5051
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
51-
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
52+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
5253
github.com/mitchellh/mapstructure v1.5.0 // indirect
5354
github.com/mitchellh/reflectwalk v1.0.2 // indirect
54-
github.com/oklog/run v1.0.0 // indirect
55+
github.com/oklog/run v1.1.0 // indirect
5556
github.com/pmezard/go-difflib v1.0.0 // indirect
56-
github.com/sony/gobreaker v0.5.0 // indirect
57+
github.com/rogpeppe/go-internal v1.14.1 // indirect
58+
github.com/sony/gobreaker v1.0.0 // indirect
5759
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
5860
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
5961
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
6062
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 // indirect
61-
github.com/zclconf/go-cty v1.14.4 // indirect
62-
golang.org/x/crypto v0.33.0 // indirect
63-
golang.org/x/net v0.35.0 // indirect
64-
golang.org/x/sync v0.11.0 // indirect
65-
golang.org/x/sys v0.30.0 // indirect
66-
golang.org/x/text v0.22.0 // indirect
67-
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
63+
github.com/zclconf/go-cty v1.16.2 // indirect
64+
golang.org/x/crypto v0.38.0 // indirect
65+
golang.org/x/net v0.40.0 // indirect
66+
golang.org/x/sync v0.14.0 // indirect
67+
golang.org/x/sys v0.33.0 // indirect
68+
golang.org/x/text v0.25.0 // indirect
69+
golang.org/x/tools v0.33.0 // indirect
6870
google.golang.org/appengine v1.6.8 // indirect
69-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de // indirect
70-
google.golang.org/grpc v1.63.2 // indirect
71-
google.golang.org/protobuf v1.35.1 // indirect
71+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250512202823-5a2f75b736a9 // indirect
72+
google.golang.org/grpc v1.72.0 // indirect
73+
google.golang.org/protobuf v1.36.6 // indirect
7274
)
7375

7476
// Uncomment this line to get OCI Go SDK from local source instead of github
7577
replace github.com/oracle/oci-go-sdk/v65 v65.90.0 => ./vendor/github.com/oracle/oci-go-sdk
76-
77-
go 1.21
78+
go 1.23

0 commit comments

Comments
 (0)