Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changes/unreleased/dependency-go-1-25.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
kind: Dependency
body: Bumped the minimum required Go version from 1.24 to 1.25.0. Downstream projects that import `opslevel-go` must now be built with Go 1.25.0 or newer.
2 changes: 2 additions & 0 deletions .changes/unreleased/security-x-crypto-ssh-cves.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
kind: Security
body: Bumped `golang.org/x/crypto` to v0.52.0 to patch 7 critical CVEs in `x/crypto/ssh` (GO-2026-5020, 5023, 5006, 5017, 5019, 5021, 5005).
2 changes: 2 additions & 0 deletions .changes/unreleased/security-x-net-idna-go-2026-5026.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
kind: Security
body: Bumped `golang.org/x/net` to v0.55.0 to patch GO-2026-5026 in `x/net/idna`, where `ToASCII`/`ToUnicode` incorrectly accepted Punycode-encoded labels that decoded to ASCII-only labels.
23 changes: 11 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/opslevel/opslevel-go/v2026

go 1.24

toolchain go1.24.1
go 1.25.0

require (
github.com/Masterminds/sprig/v3 v3.3.0
Expand Down Expand Up @@ -237,17 +235,18 @@ require (
go.uber.org/automaxprocs v1.6.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.24.0 // indirect
golang.org/x/crypto v0.41.0 // indirect
golang.org/x/crypto v0.52.0 // indirect
golang.org/x/exp/typeparams v0.0.0-20250210185358-939b2ce775ac // indirect
golang.org/x/mod v0.26.0 // indirect
golang.org/x/net v0.43.0 // indirect
golang.org/x/sync v0.16.0 // indirect
golang.org/x/sys v0.35.0 // indirect
golang.org/x/term v0.34.0 // indirect
golang.org/x/text v0.28.0 // indirect
golang.org/x/tools v0.35.0 // indirect
golang.org/x/mod v0.35.0 // indirect
golang.org/x/net v0.55.0 // indirect
golang.org/x/sync v0.20.0 // indirect
golang.org/x/sys v0.45.0 // indirect
golang.org/x/term v0.43.0 // indirect
golang.org/x/text v0.37.0 // indirect
golang.org/x/tools v0.44.0 // indirect
golang.org/x/tools/go/expect v0.1.1-deprecated // indirect
golang.org/x/tools/go/packages/packagestest v0.1.1-deprecated // indirect
google.golang.org/protobuf v1.36.6 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
honnef.co/go/tools v0.6.1 // indirect
Expand Down
Loading
Loading