Skip to content

Commit d8cdd9b

Browse files
authored
Update dependencies (#189)
* Update deps * fmt
1 parent b33ed1a commit d8cdd9b

140 files changed

Lines changed: 214 additions & 214 deletions

File tree

Some content is hidden

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

generate/generate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ import (
44
"bytes"
55
"fmt"
66
"go/format"
7-
"text/template"
87
"os"
98
"path"
109
"path/filepath"
1110
"slices"
1211
"strings"
12+
"text/template"
1313

1414
sprig "github.com/go-task/slim-sprig/v3"
1515
v2 "github.com/metal-stack/api/go/metalstack/api/v2"

go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module github.com/metal-stack/api
22

3-
go 1.26.0
3+
go 1.27
44

55
require (
66
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.12-20260825204119-511051f7f437.1
7-
buf.build/go/protovalidate v1.3.0
7+
buf.build/go/protovalidate v1.4.0
88
connectrpc.com/connect v1.20.0
99
github.com/bufbuild/protocompile v0.14.1
1010
github.com/go-task/slim-sprig/v3 v3.0.0
@@ -18,15 +18,15 @@ require (
1818
)
1919

2020
require (
21+
cel.dev/cel-go v0.32.0 // indirect
2122
cel.dev/expr v0.25.3 // indirect
2223
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
23-
github.com/google/cel-go v0.31.0 // indirect
24-
github.com/klauspost/compress v1.19.2 // indirect
24+
github.com/klauspost/compress v1.20.0 // indirect
2525
github.com/minio/minlz v1.2.0 // indirect
2626
go.yaml.in/yaml/v3 v3.0.5 // indirect
2727
golang.org/x/exp v0.0.0-20260824195058-e88cd73687aa // indirect
2828
golang.org/x/sys v0.47.0 // indirect
2929
golang.org/x/text v0.41.0 // indirect
30-
google.golang.org/genproto/googleapis/api v0.0.0-20260825221802-da73d73af1c5 // indirect
31-
google.golang.org/genproto/googleapis/rpc v0.0.0-20260825221802-da73d73af1c5 // indirect
30+
google.golang.org/genproto/googleapis/api v0.0.0-20260831171406-18b4a7587f8a // indirect
31+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260831171406-18b4a7587f8a // indirect
3232
)

go.sum

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.12-20260825204119-511051f7f437.1 h1:Slv0uGxx219srASyiaI5C9cDlyG8kNDcXpTSYcuAeE4=
22
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.12-20260825204119-511051f7f437.1/go.mod h1:TCt1lluMFnctISJXvkIQ4x3ABrPuUKCWKyjKdkJNBpw=
3-
buf.build/go/protovalidate v1.3.0 h1:8ITcnZGkAHx6TyhZvro+iET/AyqU8gEWQJK2WsT62ms=
4-
buf.build/go/protovalidate v1.3.0/go.mod h1:82s5g+rFRj1CZPiLv6OTA31jBu2fpq7mLXHwa9mZfEs=
3+
buf.build/go/protovalidate v1.4.0 h1:UjLrYbt5VX7+TMOs2+pG5FhZhIG1mSfK4EIopbb4LcM=
4+
buf.build/go/protovalidate v1.4.0/go.mod h1:8vJfzNT6NIG2qm3uFsJDXMlRmG+bQJzbcIn1Aa0vPGs=
5+
cel.dev/cel-go v0.32.0 h1:irvpFKr5EuGPyxeME03ERh0rii1TX+BDAnB9eL3IvNk=
6+
cel.dev/cel-go v0.32.0/go.mod h1:DnVip7tpJSsgZymwfT+m1tnEVy3ivAjSMXPx12YrMkU=
57
cel.dev/expr v0.25.3 h1:A2jO8jwOugrrovveCWfj0KEZOfqiLgAcwjpHPhzIGw0=
68
cel.dev/expr v0.25.3/go.mod h1:hrXvqGP6G6gyx8UAHSHJ5RGk//1Oj5nXQ2NI02Nrsg4=
79
connectrpc.com/connect v1.20.0 h1:6TNDAB+WeNd2uolWNlYczB5E0KNNaVMNUEx8JEUsPmQ=
@@ -18,14 +20,12 @@ github.com/golang-jwt/jwt/v5 v5.3.1 h1:kYf81DTWFe7t+1VvL7eS+jKFVWaUnK9cB1qbwn63Y
1820
github.com/golang-jwt/jwt/v5 v5.3.1/go.mod h1:fxCRLWMO43lRc8nhHWY6LGqRcf+1gQWArsqaEUEa5bE=
1921
github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek=
2022
github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps=
21-
github.com/google/cel-go v0.31.0 h1:H0bhpFTqOvmHrBGrWKp7ZlhBm5Hh8PYUEXnwxT1LL7A=
22-
github.com/google/cel-go v0.31.0/go.mod h1:X0bD6iVNR8pkROSOoHVdgTkzmRcosof7WQqCD6wcMc8=
2323
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
2424
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
2525
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
2626
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
27-
github.com/klauspost/compress v1.19.2 h1:hMRETovs/pu/dVWN7zIT1PGG8t509MwT6bO7XSi26R8=
28-
github.com/klauspost/compress v1.19.2/go.mod h1:cwPg85FWrGar70rWktvGQj8/hthj3wpl0PGDogxkrSQ=
27+
github.com/klauspost/compress v1.20.0 h1:a3C1ke2ohxFymNlb2HWAHjDeKCI90scRskErZkR0ezA=
28+
github.com/klauspost/compress v1.20.0/go.mod h1:LUdAzn7YLVvxLpc7y3V1m40wESHTgc1422pwwBSKYuI=
2929
github.com/klauspost/connect-compress/v2 v2.1.1 h1:ycZNp4rWOZBodVE2Ls5AzK4aHkyK+GteEfzRZgKNs+c=
3030
github.com/klauspost/connect-compress/v2 v2.1.1/go.mod h1:9oilsPHJMzGKkjafSBk9J7iVo4mO+dw0G0KSdVpnlVE=
3131
github.com/minio/minlz v1.2.0 h1:6IOBuiHg04QxvbFfgFLT/9sMaO/UhL7S+ApW1mK8q5A=
@@ -44,10 +44,10 @@ golang.org/x/sys v0.47.0 h1:o7XGOvZQCADBQQ4Y7VNq2dRWQR7JmOUW8Kxx4ZsNgWs=
4444
golang.org/x/sys v0.47.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
4545
golang.org/x/text v0.41.0 h1:vz/seA0lnX87Othu2f/0L24RcgrXD9/YFTSuGjj3rH8=
4646
golang.org/x/text v0.41.0/go.mod h1:jvf1O8ajNzZqhSrQBPbutR/EB83Cc0CFrezNQIwbb5M=
47-
google.golang.org/genproto/googleapis/api v0.0.0-20260825221802-da73d73af1c5 h1:izFU9hz7aeLI/Mi1J0991ae+xcwRLr7hTqWnB/9aIIU=
48-
google.golang.org/genproto/googleapis/api v0.0.0-20260825221802-da73d73af1c5/go.mod h1:3LhxRw4YYkf+ylAfgaY9JlVLFKhokkCV8duhLLe7+t0=
49-
google.golang.org/genproto/googleapis/rpc v0.0.0-20260825221802-da73d73af1c5 h1:1VUiZAXyC+zmiFYi+WLtBzr68Cj8wOofHjjrA/kkizc=
50-
google.golang.org/genproto/googleapis/rpc v0.0.0-20260825221802-da73d73af1c5/go.mod h1:DjtHYE8FKJLivXcBEjGwndXfIC23G0VpXiXKqG179uA=
47+
google.golang.org/genproto/googleapis/api v0.0.0-20260831171406-18b4a7587f8a h1:i3TAXhpKc7TUP1VAPiBBrv45kamjoizCC3rOC0cAbOs=
48+
google.golang.org/genproto/googleapis/api v0.0.0-20260831171406-18b4a7587f8a/go.mod h1:CvYJHpbzPlT0fb/PsgtAamdwru/GVxUsomFdXTpOTI8=
49+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260831171406-18b4a7587f8a h1:3Dnd1cDaZlB68lziofO+bJXpjOy8UfRv8Unt+yH8tQ4=
50+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260831171406-18b4a7587f8a/go.mod h1:DjtHYE8FKJLivXcBEjGwndXfIC23G0VpXiXKqG179uA=
5151
google.golang.org/grpc v1.83.2 h1:EManeRomTObA0BU7I8vXgg/78uE5MJ9M8B39EX2WscU=
5252
google.golang.org/grpc v1.83.2/go.mod h1:YPI1hK3kDked6iHvgX3tR0y+nX/qpMFKhPgFsokw1S8=
5353
google.golang.org/protobuf v1.36.12 h1:pJOKDDOyeXErUroCihFAd5LQuwXBSpVnKGrj5o/fwxc=

js/buf/validate/validate_pb.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export declare const file_buf_validate_validate: GenFile;
99
* `Rule` represents a validation rule written in the Common Expression
1010
* Language (CEL) syntax. Each Rule includes a unique identifier, an
1111
* optional error message, and the CEL expression to evaluate. For more
12-
* information, [see our documentation](https://buf.build/docs/protovalidate/schemas/custom-rules/).
12+
* information, [see our documentation](https://protovalidate.com/schemas/custom-rules/).
1313
*
1414
* ```proto
1515
* message Foo {
@@ -71,7 +71,7 @@ export type MessageRules = Message<"buf.validate.MessageRules"> & {
7171
* simpler syntax when defining CEL Rules where `id` and `message` derived from the `expression`. `id` will
7272
* be same as the `expression`.
7373
*
74-
* For more information, [see our documentation](https://buf.build/docs/protovalidate/schemas/custom-rules/).
74+
* For more information, [see our documentation](https://protovalidate.com/schemas/custom-rules/).
7575
*
7676
* ```proto
7777
* message MyMessage {
@@ -89,7 +89,7 @@ export type MessageRules = Message<"buf.validate.MessageRules"> & {
8989
/**
9090
* `cel` is a repeated field of type Rule. Each Rule specifies a validation rule to be applied to this message.
9191
* These rules are written in Common Expression Language (CEL) syntax. For more information,
92-
* [see our documentation](https://buf.build/docs/protovalidate/schemas/custom-rules/).
92+
* [see our documentation](https://protovalidate.com/schemas/custom-rules/).
9393
*
9494
*
9595
* ```proto
@@ -225,7 +225,7 @@ export type FieldRules = Message<"buf.validate.FieldRules"> & {
225225
* simpler syntax when defining CEL Rules where `id` and `message` derived from the `expression`. `id` will
226226
* be same as the `expression`.
227227
*
228-
* For more information, [see our documentation](https://buf.build/docs/protovalidate/schemas/custom-rules/).
228+
* For more information, [see our documentation](https://protovalidate.com/schemas/custom-rules/).
229229
*
230230
* ```proto
231231
* message MyMessage {
@@ -240,7 +240,7 @@ export type FieldRules = Message<"buf.validate.FieldRules"> & {
240240
/**
241241
* `cel` is a repeated field used to represent a textual expression
242242
* in the Common Expression Language (CEL) syntax. For more information,
243-
* [see our documentation](https://buf.build/docs/protovalidate/schemas/custom-rules/).
243+
* [see our documentation](https://protovalidate.com/schemas/custom-rules/).
244244
*
245245
* ```proto
246246
* message MyMessage {
@@ -495,7 +495,7 @@ export type PredefinedRules = Message<"buf.validate.PredefinedRules"> & {
495495
/**
496496
* `cel` is a repeated field used to represent a textual expression
497497
* in the Common Expression Language (CEL) syntax. For more information,
498-
* [see our documentation](https://buf.build/docs/protovalidate/schemas/predefined-rules/).
498+
* [see our documentation](https://protovalidate.com/schemas/predefined-rules/).
499499
*
500500
* ```proto
501501
* message MyMessage {

js/buf/validate/validate_pb.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
// @generated by protoc-gen-es v2.14.0 with parameter "target=ts"
15+
// @generated by protoc-gen-es v2.14.1 with parameter "target=ts"
1616
// @generated from file buf/validate/validate.proto (package buf.validate, syntax proto2)
1717
/* eslint-disable */
1818

@@ -42,7 +42,7 @@
4242
// [Go](https://github.com/bufbuild/protovalidate-go),
4343
// [JavaScript/TypeScript](https://github.com/bufbuild/protovalidate-es),
4444
// [Java](https://github.com/bufbuild/protovalidate-java),
45-
// [Python](https://github.com/bufbuild/protovalidate-python),
45+
// [Python](https://github.com/bufbuild/protovalidate-py),
4646
// or [C++](https://github.com/bufbuild/protovalidate-cc).
4747

4848
import type { GenEnum, GenExtension, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
@@ -61,7 +61,7 @@ export const file_buf_validate_validate: GenFile = /*@__PURE__*/
6161
* `Rule` represents a validation rule written in the Common Expression
6262
* Language (CEL) syntax. Each Rule includes a unique identifier, an
6363
* optional error message, and the CEL expression to evaluate. For more
64-
* information, [see our documentation](https://buf.build/docs/protovalidate/schemas/custom-rules/).
64+
* information, [see our documentation](https://protovalidate.com/schemas/custom-rules/).
6565
*
6666
* ```proto
6767
* message Foo {
@@ -128,7 +128,7 @@ export type MessageRules = Message<"buf.validate.MessageRules"> & {
128128
* simpler syntax when defining CEL Rules where `id` and `message` derived from the `expression`. `id` will
129129
* be same as the `expression`.
130130
*
131-
* For more information, [see our documentation](https://buf.build/docs/protovalidate/schemas/custom-rules/).
131+
* For more information, [see our documentation](https://protovalidate.com/schemas/custom-rules/).
132132
*
133133
* ```proto
134134
* message MyMessage {
@@ -147,7 +147,7 @@ export type MessageRules = Message<"buf.validate.MessageRules"> & {
147147
/**
148148
* `cel` is a repeated field of type Rule. Each Rule specifies a validation rule to be applied to this message.
149149
* These rules are written in Common Expression Language (CEL) syntax. For more information,
150-
* [see our documentation](https://buf.build/docs/protovalidate/schemas/custom-rules/).
150+
* [see our documentation](https://protovalidate.com/schemas/custom-rules/).
151151
*
152152
*
153153
* ```proto
@@ -294,7 +294,7 @@ export type FieldRules = Message<"buf.validate.FieldRules"> & {
294294
* simpler syntax when defining CEL Rules where `id` and `message` derived from the `expression`. `id` will
295295
* be same as the `expression`.
296296
*
297-
* For more information, [see our documentation](https://buf.build/docs/protovalidate/schemas/custom-rules/).
297+
* For more information, [see our documentation](https://protovalidate.com/schemas/custom-rules/).
298298
*
299299
* ```proto
300300
* message MyMessage {
@@ -310,7 +310,7 @@ export type FieldRules = Message<"buf.validate.FieldRules"> & {
310310
/**
311311
* `cel` is a repeated field used to represent a textual expression
312312
* in the Common Expression Language (CEL) syntax. For more information,
313-
* [see our documentation](https://buf.build/docs/protovalidate/schemas/custom-rules/).
313+
* [see our documentation](https://protovalidate.com/schemas/custom-rules/).
314314
*
315315
* ```proto
316316
* message MyMessage {
@@ -568,7 +568,7 @@ export type PredefinedRules = Message<"buf.validate.PredefinedRules"> & {
568568
/**
569569
* `cel` is a repeated field used to represent a textual expression
570570
* in the Common Expression Language (CEL) syntax. For more information,
571-
* [see our documentation](https://buf.build/docs/protovalidate/schemas/predefined-rules/).
571+
* [see our documentation](https://protovalidate.com/schemas/predefined-rules/).
572572
*
573573
* ```proto
574574
* message MyMessage {

js/metalstack/admin/v2/audit_pb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// @generated by protoc-gen-es v2.14.0 with parameter "target=ts"
1+
// @generated by protoc-gen-es v2.14.1 with parameter "target=ts"
22
// @generated from file metalstack/admin/v2/audit.proto (package metalstack.admin.v2, syntax proto3)
33
/* eslint-disable */
44
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";

js/metalstack/admin/v2/audit_pb.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// @generated by protoc-gen-es v2.14.0 with parameter "target=ts"
1+
// @generated by protoc-gen-es v2.14.1 with parameter "target=ts"
22
// @generated from file metalstack/admin/v2/audit.proto (package metalstack.admin.v2, syntax proto3)
33
/* eslint-disable */
44

js/metalstack/admin/v2/component_pb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// @generated by protoc-gen-es v2.14.0 with parameter "target=ts"
1+
// @generated by protoc-gen-es v2.14.1 with parameter "target=ts"
22
// @generated from file metalstack/admin/v2/component.proto (package metalstack.admin.v2, syntax proto3)
33
/* eslint-disable */
44
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";

js/metalstack/admin/v2/component_pb.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// @generated by protoc-gen-es v2.14.0 with parameter "target=ts"
1+
// @generated by protoc-gen-es v2.14.1 with parameter "target=ts"
22
// @generated from file metalstack/admin/v2/component.proto (package metalstack.admin.v2, syntax proto3)
33
/* eslint-disable */
44

js/metalstack/admin/v2/filesystem_pb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// @generated by protoc-gen-es v2.14.0 with parameter "target=ts"
1+
// @generated by protoc-gen-es v2.14.1 with parameter "target=ts"
22
// @generated from file metalstack/admin/v2/filesystem.proto (package metalstack.admin.v2, syntax proto3)
33
/* eslint-disable */
44
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";

0 commit comments

Comments
 (0)