Skip to content

Commit 81b31ff

Browse files
committed
deps: More version updates.
1 parent ee1b3cb commit 81b31ff

File tree

9 files changed

+108
-244
lines changed

9 files changed

+108
-244
lines changed

Brewfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ brew "moreutils"
3434
brew "node"
3535
brew "poetry"
3636
brew "pre-commit"
37-
brew "python@3.11"
37+
brew "python@3.13"
3838
brew "shellcheck"
3939
brew "shfmt"
4040
brew "tenv"

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The majority of development is done on macOS, so we have some helpers set-up to
3030

3131
* [Go] 1.22+ (primary language)
3232
* [Node.js] 20+ (linting tools)
33-
* [Python] 3.11+ (linting tools)
33+
* [Python] 3.13+ (linting tools)
3434
* [Git LFS] (storage of binary data)
3535
* [`jq`][jq] (shell scripting tools)
3636
* [`pre-commit`][pre-commit] (linting tools)

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,14 @@ install-hooks:
5151
tidy:
5252
@ $(HEADER) "=====> Tidy and download the Go dependencies..."
5353
$(GO) mod tidy -go=$(GO_VER) -v
54+
$(GO) mod tidy -go=$(GO_VER) -v -modfile=go.tools.mod
5455

5556
.PHONY: godeps
5657
## godeps: [build] Updates go.mod and downloads dependencies.
5758
godeps:
5859
@ $(HEADER) "=====> Upgrade the minor versions of Go dependencies..."
5960
find . -type f -name "go.mod" | xargs -I% dirname "%" | xargs -I@ bash -c 'cd "@" && $(GO) mod tidy -go=$(GO_VER) && $(GO) get -u -t -v ./...'
61+
find . -type f -name "go.tools.mod" | xargs -I% dirname "%" | xargs -I@ bash -c 'cd "@" && $(GO) mod tidy -go=$(GO_VER) -modfile=go.tools.mod && $(GO) get -u -t -v -modfile=go.tools.mod ./...'
6062

6163
@ echo ""
6264
@ $(YELLOW) "Run 'make tidy' to clean up the go.mod file."

go.tools.mod

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/northwood-labs/terraform-provider-corefunc
22

3-
go 1.24.0
4-
5-
toolchain go1.24.2
3+
go 1.24.5
64

75
replace (
86
github.com/Sirupsen/logrus => github.com/sirupsen/logrus v1.9.4-0.20241118143825-d1e633264448
@@ -36,16 +34,16 @@ require (
3634
github.com/google/go-cmp v0.7.0
3735
github.com/gtramontina/ooze v0.2.0
3836
github.com/hashicorp/go-version v1.7.0
39-
github.com/hashicorp/terraform-plugin-framework v1.14.1
40-
github.com/hashicorp/terraform-plugin-framework-validators v0.17.0
41-
github.com/hashicorp/terraform-plugin-go v0.26.0
37+
github.com/hashicorp/terraform-plugin-framework v1.15.1
38+
github.com/hashicorp/terraform-plugin-framework-validators v0.18.0
39+
github.com/hashicorp/terraform-plugin-go v0.28.0
4240
github.com/hashicorp/terraform-plugin-log v0.9.0
43-
github.com/hashicorp/terraform-plugin-testing v1.12.0
41+
github.com/hashicorp/terraform-plugin-testing v1.13.2
4442
github.com/lithammer/dedent v1.1.0
4543
github.com/mattn/go-runewidth v0.0.16
4644
github.com/mitchellh/go-homedir v1.1.0
4745
github.com/nlnwa/whatwg-url v0.6.2
48-
github.com/northwood-labs/cli-helpers v0.0.0-20250409233632-b1f9923abea7
46+
github.com/northwood-labs/cli-helpers v0.0.0-20250725055104-1efee9ec2a7c
4947
github.com/pelletier/go-toml/v2 v2.2.4
5048
github.com/spf13/cobra v1.9.1
5149
github.com/stretchr/testify v1.10.0
@@ -65,7 +63,7 @@ require (
6563
github.com/Masterminds/semver/v3 v3.3.1 // indirect
6664
github.com/Masterminds/sprig/v3 v3.3.0 // indirect
6765
github.com/Microsoft/go-winio v0.6.2 // indirect
68-
github.com/ProtonMail/go-crypto v1.1.6 // indirect
66+
github.com/ProtonMail/go-crypto v1.3.0 // indirect
6967
github.com/Sirupsen/logrus v0.0.0-00010101000000-000000000000 // indirect
7068
github.com/aclements/go-moremath v0.0.0-20210112150236-f10218a38794 // indirect
7169
github.com/agext/levenshtein v1.2.3 // indirect
@@ -82,18 +80,18 @@ require (
8280
github.com/aymerick/douceur v0.2.0 // indirect
8381
github.com/bgentry/speakeasy v0.2.0 // indirect
8482
github.com/bitfield/gotestdox v0.2.2 // indirect
85-
github.com/bits-and-blooms/bitset v1.22.0 // indirect
83+
github.com/bits-and-blooms/bitset v1.24.0 // indirect
8684
github.com/bmatcuk/doublestar/v4 v4.8.1 // indirect
8785
github.com/briandowns/spinner v1.23.2 // indirect
8886
github.com/catppuccin/go v0.2.0 // indirect
8987
github.com/charmbracelet/bubbles v0.21.0 // indirect
90-
github.com/charmbracelet/bubbletea v1.3.5 // indirect
91-
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect
88+
github.com/charmbracelet/bubbletea v1.3.6 // indirect
89+
github.com/charmbracelet/colorprofile v0.3.1 // indirect
9290
github.com/charmbracelet/glamour v0.10.0 // indirect
9391
github.com/charmbracelet/gum v0.16.2 // indirect
9492
github.com/charmbracelet/lipgloss v1.1.1-0.20250404203927-76690c660834 // indirect
9593
github.com/charmbracelet/log v0.4.2 // indirect
96-
github.com/charmbracelet/x/ansi v0.9.3 // indirect
94+
github.com/charmbracelet/x/ansi v0.10.1 // indirect
9795
github.com/charmbracelet/x/cellbuf v0.0.13 // indirect
9896
github.com/charmbracelet/x/conpty v0.1.0 // indirect
9997
github.com/charmbracelet/x/editor v0.1.0 // indirect
@@ -148,18 +146,18 @@ require (
148146
github.com/hashicorp/go-cty v1.5.0 // indirect
149147
github.com/hashicorp/go-hclog v1.6.3 // indirect
150148
github.com/hashicorp/go-multierror v1.1.1 // indirect
151-
github.com/hashicorp/go-plugin v1.6.2 // indirect
152-
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
149+
github.com/hashicorp/go-plugin v1.6.3 // indirect
150+
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
153151
github.com/hashicorp/go-uuid v1.0.3 // indirect
154152
github.com/hashicorp/hc-install v0.9.2 // indirect
155153
github.com/hashicorp/hcl v1.0.0 // indirect
156-
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
154+
github.com/hashicorp/hcl/v2 v2.24.0 // indirect
157155
github.com/hashicorp/logutils v1.0.0 // indirect
158156
github.com/hashicorp/terraform-exec v0.23.0 // indirect
159157
github.com/hashicorp/terraform-json v0.25.0 // indirect
160158
github.com/hashicorp/terraform-plugin-docs v0.22.0 // indirect
161-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.36.1 // indirect
162-
github.com/hashicorp/terraform-registry-address v0.2.4 // indirect
159+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.37.0 // indirect
160+
github.com/hashicorp/terraform-registry-address v0.3.0 // indirect
163161
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
164162
github.com/hashicorp/yamux v0.1.2 // indirect
165163
github.com/hexops/gotextdiff v1.0.3 // indirect
@@ -206,7 +204,7 @@ require (
206204
github.com/nikolaydubina/smrcptr v1.4.2 // indirect
207205
github.com/nikolaydubina/treemap v1.2.5 // indirect
208206
github.com/northwood-labs/archstring v0.0.0-20240514202917-e9357b4b91c8 // indirect
209-
github.com/oklog/run v1.1.0 // indirect
207+
github.com/oklog/run v1.2.0 // indirect
210208
github.com/olekukonko/tablewriter v0.0.5 // indirect
211209
github.com/opencontainers/go-digest v1.0.0 // indirect
212210
github.com/opencontainers/image-spec v1.1.0-rc3 // indirect
@@ -233,7 +231,7 @@ require (
233231
github.com/spf13/afero v1.14.0 // indirect
234232
github.com/spf13/cast v1.7.0 // indirect
235233
github.com/spf13/jwalterweatherman v1.1.0 // indirect
236-
github.com/spf13/pflag v1.0.6 // indirect
234+
github.com/spf13/pflag v1.0.7 // indirect
237235
github.com/spf13/viper v1.16.0 // indirect
238236
github.com/src-d/gcfg v1.4.0 // indirect
239237
github.com/subosito/gotenv v1.4.2 // indirect
@@ -269,14 +267,15 @@ require (
269267
golang.org/x/term v0.33.0 // indirect
270268
golang.org/x/text v0.27.0 // indirect
271269
golang.org/x/tools v0.35.0 // indirect
270+
golang.org/x/tools/go/packages/packagestest v0.1.1-deprecated // indirect
272271
golang.org/x/tools/go/vcs v0.1.0-deprecated // indirect
273272
golang.org/x/vuln v1.1.4 // indirect
274273
gonum.org/v1/gonum v0.11.0 // indirect
275274
google.golang.org/appengine v1.6.8 // indirect
276-
google.golang.org/genproto/googleapis/api v0.0.0-20241015192408-796eee8c2d53 // indirect
277-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect
278-
google.golang.org/grpc v1.69.4 // indirect
279-
google.golang.org/protobuf v1.36.3 // indirect
275+
google.golang.org/genproto/googleapis/api v0.0.0-20250528174236-200df99c418a // indirect
276+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250804133106-a7a43d27e69b // indirect
277+
google.golang.org/grpc v1.74.2 // indirect
278+
google.golang.org/protobuf v1.36.6 // indirect
280279
gopkg.in/ini.v1 v1.67.0 // indirect
281280
gopkg.in/neurosnap/sentences.v1 v1.0.7 // indirect
282281
gopkg.in/src-d/go-billy.v4 v4.3.2 // indirect

0 commit comments

Comments
 (0)