Skip to content

Commit a996d60

Browse files
chore: update dependencies
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 3f2021b commit a996d60

File tree

5 files changed

+31
-31
lines changed

5 files changed

+31
-31
lines changed

client/go.mod

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ go 1.25.3
44

55
// forked go-yaml that introduces RawYAML interface, which can be used to populate YAML fields using bytes
66
// which are then encoded as a valid YAML blocks with proper indentiation
7-
replace gopkg.in/yaml.v3 => github.com/unix4ever/yaml v0.0.0-20220527175918-f17b0f05cf2c
7+
replace gopkg.in/yaml.v3 => github.com/unix4ever/yaml/v2 v2.4.0
88

99
require (
10-
github.com/ProtonMail/gopenpgp/v2 v2.9.0
10+
github.com/ProtonMail/gopenpgp/v3 v3.3.0
1111
github.com/adrg/xdg v0.5.3
1212
github.com/blang/semver/v4 v4.0.0
1313
github.com/containers/image/v5 v5.36.2
@@ -21,12 +21,12 @@ require (
2121
github.com/hashicorp/go-multierror v1.1.1
2222
github.com/hexops/gotextdiff v1.0.3
2323
github.com/jxskiss/base62 v1.1.0
24-
github.com/klauspost/compress v1.18.0
24+
github.com/klauspost/compress v1.18.1
2525
github.com/mattn/go-isatty v0.0.20
26-
github.com/planetscale/vtprotobuf v0.6.1-0.20241121165744-79df5c4772f2
26+
github.com/planetscale/vtprotobuf ba97887b0a25
2727
github.com/sergi/go-diff v1.4.0
2828
github.com/siderolabs/gen v0.8.5
29-
github.com/siderolabs/go-api-signature v0.3.9
29+
github.com/siderolabs/go-api-signature v0.3.10
3030
github.com/siderolabs/go-kubeconfig v0.1.1
3131
github.com/siderolabs/go-pointer v1.0.1
3232
github.com/siderolabs/image-factory v0.8.4
@@ -41,9 +41,9 @@ require (
4141
golang.org/x/term v0.36.0
4242
google.golang.org/grpc v1.76.0
4343
google.golang.org/protobuf v1.36.10
44-
gopkg.in/yaml.v2 v2.4.0
44+
gopkg.in/yaml.v3 v3.0.1
4545
gopkg.in/yaml.v3 v3.0.3
46-
k8s.io/client-go v0.35.0-alpha.1
46+
k8s.io/client-go v11.0.0+incompatible
4747
)
4848

4949
require (

frontend/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959
"@eslint/compat": "^1.4.0",
6060
"@faker-js/faker": "^10.1.0",
6161
"@playwright/test": "^1.56.1",
62-
"@storybook/addon-a11y": "^9.1.13",
63-
"@storybook/vue3-vite": "^9.1.13",
62+
"@storybook/addon-a11y": "^10.0.0",
63+
"@storybook/vue3-vite": "^10.0.0",
6464
"@tailwindcss/vite": "^4.1.15",
6565
"@testing-library/jest-dom": "^6.9.1",
6666
"@testing-library/user-event": "^14.6.1",
@@ -82,7 +82,7 @@
8282
"eslint": "^9.38.0",
8383
"eslint-plugin-playwright": "^2.2.2",
8484
"eslint-plugin-simple-import-sort": "^12.1.1",
85-
"eslint-plugin-storybook": "^9.1.13",
85+
"eslint-plugin-storybook": "^10.0.0",
8686
"eslint-plugin-vue": "^10.5.1",
8787
"jsdom": "^27.0.1",
8888
"json-diff-ts": "^4.8.2",
@@ -93,7 +93,7 @@
9393
"openpgp": "^6.2.2",
9494
"prettier": "^3.6.2",
9595
"prettier-plugin-tailwindcss": "^0.7.1",
96-
"storybook": "^9.1.13",
96+
"storybook": "^10.0.0",
9797
"storybook-vue3-router": "^6.0.2",
9898
"tailwindcss": "^4.1.15",
9999
"typescript": "^5.9.3",

go.mod

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@ go 1.25.3
44

55
replace (
66
// forked saml library that has the fix for Fusion Auth ACS parsing
7-
github.com/crewjam/saml => github.com/unix4ever/saml v0.0.0-20250630213700-66b137182abe
7+
github.com/crewjam/saml => github.com/unix4ever/saml 34930b26d33b
88
// use nested module
99
github.com/siderolabs/omni/client => ./client
1010
// forked go-yaml that introduces RawYAML interface, which can be used to populate YAML fields using bytes
1111
// which are then encoded as a valid YAML blocks with proper indentiation
12-
gopkg.in/yaml.v3 => github.com/unix4ever/yaml v0.0.0-20220527175918-f17b0f05cf2c
12+
gopkg.in/yaml.v3 => github.com/unix4ever/yaml/v2 v2.4.0
1313
)
1414

1515
require (
1616
filippo.io/age v1.2.1
17-
github.com/ProtonMail/gopenpgp/v2 v2.9.0
17+
github.com/ProtonMail/gopenpgp/v3 v3.3.0
1818
github.com/adrg/xdg v0.5.3 // indirect
1919
github.com/akutz/memconn v0.1.1-0.20211110233653-dae351d188b3
2020
github.com/auth0/go-jwt-middleware/v2 v2.3.0
21-
github.com/aws/aws-sdk-go-v2 v1.39.3
22-
github.com/aws/aws-sdk-go-v2/config v1.31.12
23-
github.com/aws/aws-sdk-go-v2/credentials v1.18.16
24-
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.19.12
25-
github.com/aws/aws-sdk-go-v2/service/s3 v1.88.4
21+
github.com/aws/aws-sdk-go-v2 v1.39.5
22+
github.com/aws/aws-sdk-go-v2/config v1.31.16
23+
github.com/aws/aws-sdk-go-v2/credentials v1.18.20
24+
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.20.2
25+
github.com/aws/aws-sdk-go-v2/service/s3 v1.89.1
2626
github.com/aws/smithy-go v1.23.1
2727
github.com/benbjohnson/clock v1.3.5
2828
github.com/blang/semver/v4 v4.0.0
@@ -41,11 +41,11 @@ require (
4141
github.com/go-logr/logr v1.4.3
4242
github.com/go-logr/zapr v1.3.0
4343
github.com/go-playground/validator/v10 v10.28.0
44-
github.com/golang-jwt/jwt/v4 v4.5.2
44+
github.com/golang-jwt/jwt/v5 v5.3.0
4545
github.com/google/go-cmp v0.7.0
4646
github.com/google/go-containerregistry v0.20.6
4747
github.com/google/uuid v1.6.0
48-
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
48+
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.2
4949
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
5050
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.3
5151
github.com/hashicorp/go-cleanhttp v0.5.2
@@ -57,10 +57,10 @@ require (
5757
github.com/johannesboyne/gofakes3 v0.0.0-20250916175020-ebf3e50324d3
5858
github.com/jonboulle/clockwork v0.5.0
5959
github.com/julienschmidt/httprouter v1.3.0
60-
github.com/klauspost/compress v1.18.0
60+
github.com/klauspost/compress v1.18.1
6161
github.com/mattn/go-shellwords v1.0.12
6262
github.com/prometheus/client_golang v1.23.2
63-
github.com/prometheus/common v0.67.1
63+
github.com/prometheus/common v0.67.2
6464
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2
6565
github.com/siderolabs/crypto v0.6.4
6666
github.com/siderolabs/discovery-api v0.1.6
@@ -70,7 +70,7 @@ require (
7070
github.com/siderolabs/go-api-signature v0.3.10
7171
github.com/siderolabs/go-circular v0.2.3
7272
github.com/siderolabs/go-debug v0.6.1
73-
github.com/siderolabs/go-kubernetes v0.2.26
73+
github.com/siderolabs/go-kubernetes v0.2.27
7474
github.com/siderolabs/go-loadbalancer v0.5.0
7575
github.com/siderolabs/go-pointer v1.0.1
7676
github.com/siderolabs/go-procfs v0.1.2
@@ -110,9 +110,9 @@ require (
110110
google.golang.org/grpc v1.76.0
111111
google.golang.org/protobuf v1.36.10
112112
gopkg.in/yaml.v3 v3.0.3
113-
k8s.io/api v0.35.0-alpha.1
114-
k8s.io/apimachinery v0.35.0-alpha.1
115-
k8s.io/client-go v0.35.0-alpha.1
113+
k8s.io/api v0.35.0-alpha.2
114+
k8s.io/apimachinery v0.35.0-alpha.2
115+
k8s.io/client-go v11.0.0+incompatible
116116
k8s.io/klog/v2 v2.130.1
117117
sigs.k8s.io/controller-runtime v0.22.3
118118
)

hack/compose/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ services:
5858

5959
vault-dev:
6060
container_name: local-vault
61-
image: hashicorp/vault:1.18
61+
image: hashicorp/vault:1.21
6262
environment:
6363
- VAULT_DEV_ROOT_TOKEN_ID=dev-o-token
6464
cap_add:
@@ -71,7 +71,7 @@ services:
7171
- vault-dev
7272
restart: on-failure
7373
container_name: local-vault-init
74-
image: hashicorp/vault:1.18
74+
image: hashicorp/vault:1.21
7575
volumes:
7676
- ../../internal/backend/runtime/omni/testdata/pgp/new_key.private:/tmp/key.private:ro
7777
environment:
@@ -87,7 +87,7 @@ services:
8787
node-dev:
8888
network_mode: host
8989
container_name: local-node
90-
image: node:24.11.0-alpine
90+
image: node:25.1.0-alpine
9191
volumes:
9292
- ../../frontend:/app:rw
9393
working_dir: /app

hack/zstd-dict/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/siderolabs/omni-hack-zstd-dict
33
go 1.25.3
44

55
require (
6-
github.com/klauspost/compress v1.18.0
6+
github.com/klauspost/compress v1.18.1
77
github.com/mittwald/go-helm-client v0.12.18
88
go.uber.org/zap v1.27.0
99
gopkg.in/yaml.v3 v3.0.1

0 commit comments

Comments
 (0)