@aptre/common 0.34.1 → 0.34.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.oxfmtrc.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "$schema": "./node_modules/oxfmt/configuration_schema.json",
3
+ "semi": false,
4
+ "singleQuote": true,
5
+ "tabWidth": 2,
6
+ "printWidth": 80,
7
+ "sortPackageJson": false,
8
+ "ignorePatterns": ["node_modules", "dist", "vendor", ".tools"]
9
+ }
package/.oxlintrc.json ADDED
@@ -0,0 +1,133 @@
1
+ {
2
+ "$schema": "./node_modules/oxlint/configuration_schema.json",
3
+ "plugins": ["typescript", "unicorn"],
4
+ "categories": {
5
+ "correctness": "off"
6
+ },
7
+ "env": {
8
+ "builtin": true
9
+ },
10
+ "ignorePatterns": [
11
+ "node_modules/**",
12
+ "dist/**",
13
+ "vendor/**",
14
+ ".tools/**",
15
+ "coverage/**",
16
+ "example/target/**",
17
+ "**/*.pb.ts",
18
+ "**/*.pb.js"
19
+ ],
20
+ "rules": {
21
+ "constructor-super": "error",
22
+ "for-direction": "error",
23
+ "getter-return": "error",
24
+ "no-async-promise-executor": "error",
25
+ "no-case-declarations": "error",
26
+ "no-class-assign": "error",
27
+ "no-compare-neg-zero": "error",
28
+ "no-cond-assign": "error",
29
+ "no-const-assign": "error",
30
+ "no-constant-binary-expression": "error",
31
+ "no-constant-condition": "error",
32
+ "no-control-regex": "error",
33
+ "no-debugger": "error",
34
+ "no-delete-var": "error",
35
+ "no-dupe-class-members": "error",
36
+ "no-dupe-else-if": "error",
37
+ "no-dupe-keys": "error",
38
+ "no-duplicate-case": "error",
39
+ "no-empty": "error",
40
+ "no-empty-character-class": "error",
41
+ "no-empty-pattern": "error",
42
+ "no-empty-static-block": "error",
43
+ "no-ex-assign": "error",
44
+ "no-extra-boolean-cast": "error",
45
+ "no-fallthrough": "error",
46
+ "no-func-assign": "error",
47
+ "no-global-assign": "error",
48
+ "no-import-assign": "error",
49
+ "no-invalid-regexp": "error",
50
+ "no-irregular-whitespace": "error",
51
+ "no-loss-of-precision": "error",
52
+ "no-misleading-character-class": "error",
53
+ "no-new-native-nonconstructor": "error",
54
+ "no-nonoctal-decimal-escape": "error",
55
+ "no-obj-calls": "error",
56
+ "no-prototype-builtins": "error",
57
+ "no-redeclare": "error",
58
+ "no-regex-spaces": "error",
59
+ "no-self-assign": "error",
60
+ "no-setter-return": "error",
61
+ "no-shadow-restricted-names": "error",
62
+ "no-sparse-arrays": "error",
63
+ "no-this-before-super": "error",
64
+ "no-unassigned-vars": "error",
65
+ "no-unreachable": "error",
66
+ "no-unsafe-finally": "error",
67
+ "no-unsafe-negation": "error",
68
+ "no-unsafe-optional-chaining": "error",
69
+ "no-unused-labels": "error",
70
+ "no-unused-private-class-members": "error",
71
+ "no-unused-vars": [
72
+ "error",
73
+ {
74
+ "argsIgnorePattern": "^_",
75
+ "varsIgnorePattern": "^_",
76
+ "caughtErrors": "none"
77
+ }
78
+ ],
79
+ "no-useless-backreference": "error",
80
+ "no-useless-catch": "error",
81
+ "no-useless-escape": "error",
82
+ "no-with": "error",
83
+ "preserve-caught-error": "error",
84
+ "require-yield": "error",
85
+ "use-isnan": "error",
86
+ "valid-typeof": "error",
87
+ "no-array-constructor": "error",
88
+ "no-unused-expressions": "error",
89
+ "typescript/ban-ts-comment": "error",
90
+ "typescript/no-duplicate-enum-values": "error",
91
+ "typescript/no-explicit-any": "warn",
92
+ "typescript/no-extra-non-null-assertion": "error",
93
+ "typescript/no-misused-new": "error",
94
+ "typescript/no-namespace": "error",
95
+ "typescript/no-non-null-asserted-optional-chain": "error",
96
+ "typescript/no-require-imports": "error",
97
+ "typescript/no-this-alias": "error",
98
+ "typescript/no-unnecessary-type-constraint": "error",
99
+ "typescript/no-unsafe-declaration-merging": "error",
100
+ "typescript/no-unsafe-function-type": "error",
101
+ "typescript/no-wrapper-object-types": "error",
102
+ "typescript/prefer-as-const": "error",
103
+ "typescript/prefer-namespace-keyword": "error",
104
+ "typescript/triple-slash-reference": "error"
105
+ },
106
+ "overrides": [
107
+ {
108
+ "files": ["**/*.ts", "**/*.tsx", "**/*.mts", "**/*.cts"],
109
+ "rules": {
110
+ "constructor-super": "off",
111
+ "getter-return": "off",
112
+ "no-class-assign": "off",
113
+ "no-const-assign": "off",
114
+ "no-dupe-class-members": "off",
115
+ "no-dupe-keys": "off",
116
+ "no-func-assign": "off",
117
+ "no-import-assign": "off",
118
+ "no-new-native-nonconstructor": "off",
119
+ "no-obj-calls": "off",
120
+ "no-redeclare": "off",
121
+ "no-setter-return": "off",
122
+ "no-this-before-super": "off",
123
+ "no-unreachable": "off",
124
+ "no-unsafe-negation": "off",
125
+ "no-var": "error",
126
+ "no-with": "off",
127
+ "prefer-const": "error",
128
+ "prefer-rest-params": "error",
129
+ "prefer-spread": "error"
130
+ }
131
+ }
132
+ ]
133
+ }
package/README.md CHANGED
@@ -1,13 +1,11 @@
1
1
  # common
2
2
 
3
- [![GoDoc Widget]][GoDoc] [![Go Report Card Widget]][Go Report Card] [![npm Widget]][npm]
3
+ [![GoDoc Widget]][GoDoc] [![npm Widget]][npm]
4
4
 
5
5
  > Unified protobuf code generation for Go, TypeScript, C++, and Rust with WASM.
6
6
 
7
7
  [GoDoc]: https://godoc.org/github.com/aperturerobotics/common
8
8
  [GoDoc Widget]: https://godoc.org/github.com/aperturerobotics/common?status.svg
9
- [Go Report Card Widget]: https://goreportcard.com/badge/github.com/aperturerobotics/common
10
- [Go Report Card]: https://goreportcard.com/report/github.com/aperturerobotics/common
11
9
  [npm]: https://www.npmjs.com/package/@aptre/common
12
10
  [npm Widget]: https://img.shields.io/npm/v/@aptre/common.svg
13
11
 
package/go.mod CHANGED
@@ -8,9 +8,9 @@ require (
8
8
  github.com/aperturerobotics/go-protoc-gen-prost v0.0.0-20260329113538-218ccd8f20e0 // master
9
9
  github.com/aperturerobotics/go-protoc-wasi v0.0.0-20260329113540-600516012db3 // master
10
10
  github.com/aperturerobotics/go-websocket v1.8.15-0.20260329113544-74dbfb8f11c6 // indirect
11
- github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20251104042408-0c9eb8a3f726 // indirect
11
+ github.com/aperturerobotics/json-iterator-lite v1.1.0 // indirect
12
12
  github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4 // wasi
13
- github.com/aperturerobotics/protobuf-go-lite v0.14.0 // latest
13
+ github.com/aperturerobotics/protobuf-go-lite v0.15.0 // latest
14
14
  github.com/aperturerobotics/starpc v0.49.18 // master
15
15
  github.com/aperturerobotics/util v1.34.5 // indirect
16
16
  )
package/go.mod.tools CHANGED
@@ -1,23 +1,23 @@
1
1
  module tools
2
2
 
3
- go 1.26.3
3
+ go 1.26.4
4
4
 
5
5
  require (
6
6
  github.com/aperturerobotics/abseil-cpp v0.0.0-20260131110040-4bb56e2f9017 // indirect; aperture-2
7
7
  github.com/aperturerobotics/goprotowrap v0.4.1 // latest
8
8
  github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4 // indirect; wasi
9
9
  // github.com/s4wave/goscript v0.0.61 // master
10
- github.com/aperturerobotics/protobuf-go-lite v0.14.0 // latest
10
+ github.com/aperturerobotics/protobuf-go-lite v0.15.0 // latest
11
11
  github.com/aperturerobotics/starpc v0.49.18 // latest
12
12
  )
13
13
 
14
14
  require (
15
15
  github.com/agnivade/wasmbrowsertest v0.11.0 // cancelCtx
16
16
  github.com/golangci/golangci-lint/v2 v2.12.2
17
- github.com/goreleaser/goreleaser/v2 v2.16.0 // latest
17
+ github.com/goreleaser/goreleaser/v2 v2.17.0 // latest
18
18
  github.com/psampaz/go-mod-outdated v0.9.0 // latest
19
19
  golang.org/x/tools v0.47.0 // latest
20
- google.golang.org/grpc v1.80.0 // indirect; latest
20
+ google.golang.org/grpc v1.81.1 // indirect; latest
21
21
  mvdan.cc/gofumpt v0.10.0 // latest
22
22
  )
23
23
 
@@ -26,16 +26,16 @@ require (
26
26
  4d63.com/gochecknoglobals v0.2.2 // indirect
27
27
  al.essio.dev/pkg/shellescape v1.6.0 // indirect
28
28
  cel.dev/expr v0.25.1 // indirect
29
- charm.land/lipgloss/v2 v2.0.3 // indirect
29
+ charm.land/lipgloss/v2 v2.0.5 // indirect
30
30
  cloud.google.com/go v0.123.0 // indirect
31
- cloud.google.com/go/auth v0.18.2 // indirect
31
+ cloud.google.com/go/auth v0.20.0 // indirect
32
32
  cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
33
33
  cloud.google.com/go/compute/metadata v0.9.0 // indirect
34
- cloud.google.com/go/iam v1.7.0 // indirect
34
+ cloud.google.com/go/iam v1.11.0 // indirect
35
35
  cloud.google.com/go/kms v1.31.0 // indirect
36
- cloud.google.com/go/longrunning v0.9.0 // indirect
37
- cloud.google.com/go/monitoring v1.24.3 // indirect
38
- cloud.google.com/go/storage v1.59.2 // indirect
36
+ cloud.google.com/go/longrunning v1.0.0 // indirect
37
+ cloud.google.com/go/monitoring v1.25.0 // indirect
38
+ cloud.google.com/go/storage v1.62.2 // indirect
39
39
  code.gitea.io/sdk/gitea v0.25.1 // indirect
40
40
  codeberg.org/chavacava/garif v0.2.0 // indirect
41
41
  codeberg.org/polyfloyd/go-errorlint v1.9.0 // indirect
@@ -52,14 +52,12 @@ require (
52
52
  github.com/Antonboom/nilnil v1.1.1 // indirect
53
53
  github.com/Antonboom/testifylint v1.6.4 // indirect
54
54
  github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect
55
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.21.0 // indirect
55
+ github.com/Azure/azure-sdk-for-go/sdk/azcore v1.21.1 // indirect
56
56
  github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.13.1 // indirect
57
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.11.2 // indirect
58
- github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys v0.10.0 // indirect
59
- github.com/Azure/azure-sdk-for-go/sdk/keyvault/internal v0.7.1 // indirect
60
- github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.4.0 // indirect
57
+ github.com/Azure/azure-sdk-for-go/sdk/internal v1.12.0 // indirect
58
+ github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.5.0 // indirect
61
59
  github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.2.0 // indirect
62
- github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.6.3 // indirect
60
+ github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.6.4 // indirect
63
61
  github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
64
62
  github.com/Azure/go-autorest v14.2.0+incompatible // indirect
65
63
  github.com/Azure/go-autorest/autorest v0.11.30 // indirect
@@ -67,10 +65,9 @@ require (
67
65
  github.com/Azure/go-autorest/autorest/azure/auth v0.5.13 // indirect
68
66
  github.com/Azure/go-autorest/autorest/azure/cli v0.4.7 // indirect
69
67
  github.com/Azure/go-autorest/autorest/date v0.3.1 // indirect
70
- github.com/Azure/go-autorest/autorest/to v0.4.1 // indirect
71
68
  github.com/Azure/go-autorest/logger v0.2.2 // indirect
72
69
  github.com/Azure/go-autorest/tracing v0.6.1 // indirect
73
- github.com/AzureAD/microsoft-authentication-library-for-go v1.6.0 // indirect
70
+ github.com/AzureAD/microsoft-authentication-library-for-go v1.7.2 // indirect
74
71
  github.com/BurntSushi/toml v1.6.0 // indirect
75
72
  github.com/ClickHouse/clickhouse-go-linter v1.2.0 // indirect
76
73
  github.com/Djarvur/go-err113 v0.1.1 // indirect
@@ -98,29 +95,29 @@ require (
98
95
  github.com/ashanbrown/makezero/v2 v2.2.1 // indirect
99
96
  github.com/atc0005/go-teams-notify/v2 v2.14.0 // indirect
100
97
  github.com/avast/retry-go/v4 v4.7.0 // indirect
101
- github.com/aws/aws-sdk-go-v2 v1.41.7 // indirect
102
- github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.10 // indirect
103
- github.com/aws/aws-sdk-go-v2/config v1.32.12 // indirect
104
- github.com/aws/aws-sdk-go-v2/credentials v1.19.12 // indirect
105
- github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.20 // indirect
98
+ github.com/aws/aws-sdk-go-v2 v1.42.1 // indirect
99
+ github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.14 // indirect
100
+ github.com/aws/aws-sdk-go-v2/config v1.32.20 // indirect
101
+ github.com/aws/aws-sdk-go-v2/credentials v1.19.19 // indirect
102
+ github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.25 // indirect
106
103
  github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.21.1 // indirect
107
- github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.23 // indirect
108
- github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.23 // indirect
109
- github.com/aws/aws-sdk-go-v2/internal/ini v1.8.6 // indirect
110
- github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.24 // indirect
104
+ github.com/aws/aws-sdk-go-v2/feature/s3/transfermanager v0.2.3 // indirect
105
+ github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.30 // indirect
106
+ github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.30 // indirect
107
+ github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.31 // indirect
111
108
  github.com/aws/aws-sdk-go-v2/service/ecr v1.56.0 // indirect
112
109
  github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.38.11 // indirect
113
- github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.9 // indirect
114
- github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.15 // indirect
115
- github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.23 // indirect
116
- github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.23 // indirect
117
- github.com/aws/aws-sdk-go-v2/service/kms v1.50.3 // indirect
118
- github.com/aws/aws-sdk-go-v2/service/s3 v1.101.0 // indirect
119
- github.com/aws/aws-sdk-go-v2/service/signin v1.0.8 // indirect
120
- github.com/aws/aws-sdk-go-v2/service/sso v1.30.13 // indirect
121
- github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.17 // indirect
122
- github.com/aws/aws-sdk-go-v2/service/sts v1.41.9 // indirect
123
- github.com/aws/smithy-go v1.25.1 // indirect
110
+ github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.13 // indirect
111
+ github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.23 // indirect
112
+ github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.30 // indirect
113
+ github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.31 // indirect
114
+ github.com/aws/aws-sdk-go-v2/service/kms v1.52.0 // indirect
115
+ github.com/aws/aws-sdk-go-v2/service/s3 v1.104.2 // indirect
116
+ github.com/aws/aws-sdk-go-v2/service/signin v1.1.1 // indirect
117
+ github.com/aws/aws-sdk-go-v2/service/sso v1.30.19 // indirect
118
+ github.com/aws/aws-sdk-go-v2/service/ssooidc v1.36.2 // indirect
119
+ github.com/aws/aws-sdk-go-v2/service/sts v1.42.3 // indirect
120
+ github.com/aws/smithy-go v1.27.3 // indirect
124
121
  github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.12.0 // indirect
125
122
  github.com/bahlo/generic-list-go v0.2.0 // indirect
126
123
  github.com/beorn7/perks v1.0.1 // indirect
@@ -141,7 +138,7 @@ require (
141
138
  github.com/caarlos0/env/v11 v11.4.1 // indirect
142
139
  github.com/caarlos0/go-reddit/v3 v3.0.1 // indirect
143
140
  github.com/caarlos0/go-version v0.2.2 // indirect
144
- github.com/caarlos0/log v0.6.0 // indirect
141
+ github.com/caarlos0/log v0.6.2 // indirect
145
142
  github.com/carlmjohnson/versioninfo v0.22.5 // indirect
146
143
  github.com/catenacyber/perfsprint v0.10.1 // indirect
147
144
  github.com/cavaliergopher/cpio v1.0.1 // indirect
@@ -166,7 +163,7 @@ require (
166
163
  github.com/clipperhouse/displaywidth v0.11.0 // indirect
167
164
  github.com/clipperhouse/uax29/v2 v2.7.0 // indirect
168
165
  github.com/cloudflare/circl v1.6.3 // indirect
169
- github.com/cncf/xds/go v0.0.0-20251210132809-ee656c7534f5 // indirect
166
+ github.com/cncf/xds/go v0.0.0-20260202195803-dba9d589def2 // indirect
170
167
  github.com/containerd/errdefs v1.0.0 // indirect
171
168
  github.com/containerd/errdefs/pkg v0.3.0 // indirect
172
169
  github.com/coreos/go-oidc/v3 v3.18.0 // indirect
@@ -186,21 +183,21 @@ require (
186
183
  github.com/dimchansky/utfbom v1.1.1 // indirect
187
184
  github.com/distribution/reference v0.6.0 // indirect
188
185
  github.com/dlclark/regexp2 v1.12.0 // indirect
189
- github.com/docker/cli v29.4.3+incompatible // indirect
186
+ github.com/docker/cli v29.5.3+incompatible // indirect
190
187
  github.com/docker/docker-credential-helpers v0.9.5 // indirect
191
188
  github.com/docker/go-connections v0.7.0 // indirect
192
189
  github.com/docker/go-units v0.5.0 // indirect
193
190
  github.com/dustin/go-humanize v1.0.1 // indirect
194
191
  github.com/emirpasic/gods v1.18.1 // indirect
195
- github.com/envoyproxy/go-control-plane/envoy v1.36.0 // indirect
196
- github.com/envoyproxy/protoc-gen-validate v1.3.0 // indirect
192
+ github.com/envoyproxy/go-control-plane/envoy v1.37.0 // indirect
193
+ github.com/envoyproxy/protoc-gen-validate v1.3.3 // indirect
197
194
  github.com/ettle/strcase v0.2.0 // indirect
198
195
  github.com/evanphx/json-patch/v5 v5.9.11 // indirect
199
196
  github.com/fatih/color v1.19.0 // indirect
200
197
  github.com/fatih/structtag v1.2.0 // indirect
201
198
  github.com/felixge/httpsnoop v1.0.4 // indirect
202
199
  github.com/firefart/nonamedreturns v1.0.6 // indirect
203
- github.com/fsnotify/fsnotify v1.9.0 // indirect
200
+ github.com/fsnotify/fsnotify v1.10.1 // indirect
204
201
  github.com/fzipp/gocyclo v0.6.0 // indirect
205
202
  github.com/gabriel-vasile/mimetype v1.4.13 // indirect
206
203
  github.com/ghostiam/protogetter v0.3.20 // indirect
@@ -214,27 +211,28 @@ require (
214
211
  github.com/go-jose/go-jose/v4 v4.1.4 // indirect
215
212
  github.com/go-logr/logr v1.4.3 // indirect
216
213
  github.com/go-logr/stdr v1.2.2 // indirect
217
- github.com/go-openapi/analysis v0.24.3 // indirect
214
+ github.com/go-openapi/analysis v0.25.2 // indirect
218
215
  github.com/go-openapi/errors v0.22.7 // indirect
219
- github.com/go-openapi/jsonpointer v0.22.5 // indirect
220
- github.com/go-openapi/jsonreference v0.21.5 // indirect
216
+ github.com/go-openapi/jsonpointer v0.23.1 // indirect
217
+ github.com/go-openapi/jsonreference v0.21.6 // indirect
221
218
  github.com/go-openapi/loads v0.23.3 // indirect
222
- github.com/go-openapi/runtime v0.29.3 // indirect
223
- github.com/go-openapi/spec v0.22.4 // indirect
224
- github.com/go-openapi/strfmt v0.26.1 // indirect
225
- github.com/go-openapi/swag v0.25.5 // indirect
226
- github.com/go-openapi/swag/cmdutils v0.25.5 // indirect
227
- github.com/go-openapi/swag/conv v0.25.5 // indirect
228
- github.com/go-openapi/swag/fileutils v0.25.5 // indirect
229
- github.com/go-openapi/swag/jsonname v0.25.5 // indirect
230
- github.com/go-openapi/swag/jsonutils v0.25.5 // indirect
231
- github.com/go-openapi/swag/loading v0.25.5 // indirect
232
- github.com/go-openapi/swag/mangling v0.25.5 // indirect
233
- github.com/go-openapi/swag/netutils v0.25.5 // indirect
234
- github.com/go-openapi/swag/stringutils v0.25.5 // indirect
235
- github.com/go-openapi/swag/typeutils v0.25.5 // indirect
236
- github.com/go-openapi/swag/yamlutils v0.25.5 // indirect
237
- github.com/go-openapi/validate v0.25.2 // indirect
219
+ github.com/go-openapi/runtime v0.32.3 // indirect
220
+ github.com/go-openapi/runtime/server-middleware v0.30.0 // indirect
221
+ github.com/go-openapi/spec v0.22.5 // indirect
222
+ github.com/go-openapi/strfmt v0.26.3 // indirect
223
+ github.com/go-openapi/swag v0.26.0 // indirect
224
+ github.com/go-openapi/swag/cmdutils v0.26.0 // indirect
225
+ github.com/go-openapi/swag/conv v0.26.1 // indirect
226
+ github.com/go-openapi/swag/fileutils v0.26.0 // indirect
227
+ github.com/go-openapi/swag/jsonname v0.26.0 // indirect
228
+ github.com/go-openapi/swag/jsonutils v0.26.0 // indirect
229
+ github.com/go-openapi/swag/loading v0.26.0 // indirect
230
+ github.com/go-openapi/swag/mangling v0.26.0 // indirect
231
+ github.com/go-openapi/swag/netutils v0.26.0 // indirect
232
+ github.com/go-openapi/swag/stringutils v0.26.0 // indirect
233
+ github.com/go-openapi/swag/typeutils v0.26.1 // indirect
234
+ github.com/go-openapi/swag/yamlutils v0.26.0 // indirect
235
+ github.com/go-openapi/validate v0.25.3 // indirect
238
236
  github.com/go-restruct/restruct v1.2.0-alpha // indirect
239
237
  github.com/go-toolsmith/astcast v1.1.0 // indirect
240
238
  github.com/go-toolsmith/astcopy v1.1.0 // indirect
@@ -269,29 +267,29 @@ require (
269
267
  github.com/golangci/unconvert v0.0.0-20250410112200-a129a6e6413e // indirect
270
268
  github.com/google/certificate-transparency-go v1.3.3 // indirect
271
269
  github.com/google/go-cmp v0.7.0 // indirect
272
- github.com/google/go-containerregistry v0.21.6 // indirect
270
+ github.com/google/go-containerregistry v0.21.7 // indirect
273
271
  github.com/google/go-github/v88 v88.0.0 // indirect
274
272
  github.com/google/go-querystring v1.2.0 // indirect
275
- github.com/google/ko v0.18.2-0.20260407063826-ae9c7272d7de // indirect
276
- github.com/google/pprof v0.0.0-20260115054156-294ebfa9ad83 // indirect
273
+ github.com/google/ko v0.19.1 // indirect
274
+ github.com/google/pprof v0.0.0-20260402051712-545e8a4df936 // indirect
277
275
  github.com/google/rpmpack v0.7.1 // indirect
278
276
  github.com/google/s2a-go v0.1.9 // indirect
279
277
  github.com/google/uuid v1.6.0 // indirect
280
278
  github.com/google/wire v0.7.0 // indirect
281
- github.com/googleapis/enterprise-certificate-proxy v0.3.14 // indirect
282
- github.com/googleapis/gax-go/v2 v2.21.0 // indirect
279
+ github.com/googleapis/enterprise-certificate-proxy v0.3.16 // indirect
280
+ github.com/googleapis/gax-go/v2 v2.22.0 // indirect
283
281
  github.com/gordonklaus/ineffassign v0.2.0 // indirect
284
282
  github.com/goreleaser/chglog v0.7.4 // indirect
285
283
  github.com/goreleaser/fileglob v1.4.0 // indirect
286
284
  github.com/goreleaser/go-shellwords v1.0.13 // indirect
287
- github.com/goreleaser/nfpm/v2 v2.46.3 // indirect
288
- github.com/goreleaser/quill v0.0.0-20260503024558-dbc159c51d43 // indirect
285
+ github.com/goreleaser/nfpm/v2 v2.47.0 // indirect
286
+ github.com/goreleaser/quill v0.0.0-20260630015114-8310f3e9a321 // indirect
289
287
  github.com/gorilla/websocket v1.5.3 // indirect
290
288
  github.com/gostaticanalysis/analysisutil v0.7.1 // indirect
291
289
  github.com/gostaticanalysis/comment v1.5.0 // indirect
292
290
  github.com/gostaticanalysis/forcetypeassert v0.2.0 // indirect
293
291
  github.com/gostaticanalysis/nilerr v0.1.2 // indirect
294
- github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0 // indirect
292
+ github.com/grpc-ecosystem/grpc-gateway/v2 v2.29.0 // indirect
295
293
  github.com/hashicorp/errwrap v1.1.0 // indirect
296
294
  github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
297
295
  github.com/hashicorp/go-immutable-radix/v2 v2.1.0 // indirect
@@ -302,7 +300,7 @@ require (
302
300
  github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
303
301
  github.com/hexops/gotextdiff v1.0.3 // indirect
304
302
  github.com/huandu/xstrings v1.5.0 // indirect
305
- github.com/in-toto/attestation v1.1.2 // indirect
303
+ github.com/in-toto/attestation v1.2.0 // indirect
306
304
  github.com/in-toto/in-toto-golang v0.11.0 // indirect
307
305
  github.com/inconshreveable/mousetrap v1.1.0 // indirect
308
306
  github.com/invopop/jsonschema v0.14.0 // indirect
@@ -329,7 +327,7 @@ require (
329
327
  github.com/kevinburke/ssh_config v1.2.0 // indirect
330
328
  github.com/kisielk/errcheck v1.10.0 // indirect
331
329
  github.com/kkHAIKE/contextcheck v1.1.6 // indirect
332
- github.com/klauspost/compress v1.18.6 // indirect
330
+ github.com/klauspost/compress v1.19.0 // indirect
333
331
  github.com/klauspost/cpuid/v2 v2.3.0 // indirect
334
332
  github.com/klauspost/pgzip v1.2.6 // indirect
335
333
  github.com/kulti/thelper v0.7.1 // indirect
@@ -361,8 +359,8 @@ require (
361
359
  github.com/mitchellh/go-homedir v1.1.0 // indirect
362
360
  github.com/mitchellh/reflectwalk v1.0.2 // indirect
363
361
  github.com/moby/docker-image-spec v1.3.1 // indirect
364
- github.com/moby/moby/api v1.54.2 // indirect
365
- github.com/moby/moby/client v0.4.1 // indirect
362
+ github.com/moby/moby/api v1.55.0 // indirect
363
+ github.com/moby/moby/client v0.5.0 // indirect
366
364
  github.com/moby/term v0.5.2 // indirect
367
365
  github.com/modelcontextprotocol/registry v1.7.9 // indirect
368
366
  github.com/moricho/tparallel v0.3.2 // indirect
@@ -419,22 +417,22 @@ require (
419
417
  github.com/sashamelentyev/usestdlibvars v1.29.0 // indirect
420
418
  github.com/sassoftware/relic v7.2.1+incompatible // indirect
421
419
  github.com/scylladb/go-set v1.0.3-0.20200225121959-cc7b2070d91e // indirect
422
- github.com/secure-systems-lab/go-securesystemslib v0.10.0 // indirect
420
+ github.com/secure-systems-lab/go-securesystemslib v0.11.0 // indirect
423
421
  github.com/securego/gosec/v2 v2.26.1 // indirect
424
422
  github.com/sergi/go-diff v1.4.0 // indirect
425
423
  github.com/shibumi/go-pathspec v1.3.0 // indirect
426
424
  github.com/shopspring/decimal v1.4.0 // indirect
427
- github.com/sigstore/cosign/v3 v3.0.6 // indirect
428
- github.com/sigstore/protobuf-specs v0.5.0 // indirect
429
- github.com/sigstore/rekor v1.5.1 // indirect
430
- github.com/sigstore/rekor-tiles/v2 v2.2.1 // indirect
431
- github.com/sigstore/sigstore v1.10.5 // indirect
432
- github.com/sigstore/sigstore-go v1.1.4 // indirect
433
- github.com/sigstore/timestamp-authority/v2 v2.0.6 // indirect
425
+ github.com/sigstore/cosign/v3 v3.1.1 // indirect
426
+ github.com/sigstore/protobuf-specs v0.5.1 // indirect
427
+ github.com/sigstore/rekor v1.5.2 // indirect
428
+ github.com/sigstore/rekor-tiles/v2 v2.2.2-0.20260601073857-5d098a2b6443 // indirect
429
+ github.com/sigstore/sigstore v1.10.8 // indirect
430
+ github.com/sigstore/sigstore-go v1.2.0 // indirect
431
+ github.com/sigstore/timestamp-authority/v2 v2.1.2 // indirect
434
432
  github.com/sirupsen/logrus v1.9.5-0.20260508084601-d4a50659cfd6 // indirect
435
433
  github.com/sivchari/containedctx v1.0.3 // indirect
436
434
  github.com/skeema/knownhosts v1.3.1 // indirect
437
- github.com/slack-go/slack v0.23.1 // indirect
435
+ github.com/slack-go/slack v0.27.0 // indirect
438
436
  github.com/sonatard/noctx v0.5.1 // indirect
439
437
  github.com/sourcegraph/go-diff v0.8.0 // indirect
440
438
  github.com/spaolacci/murmur3 v1.1.0 // indirect
@@ -443,7 +441,7 @@ require (
443
441
  github.com/spf13/cobra v1.10.2 // indirect
444
442
  github.com/spf13/pflag v1.0.10 // indirect
445
443
  github.com/spf13/viper v1.21.0 // indirect
446
- github.com/spiffe/go-spiffe/v2 v2.6.0 // indirect
444
+ github.com/spiffe/go-spiffe/v2 v2.7.0 // indirect
447
445
  github.com/ssgreg/nlreturn/v2 v2.2.1 // indirect
448
446
  github.com/stbenjam/no-sprintf-host-port v0.3.1 // indirect
449
447
  github.com/stretchr/objx v0.5.2 // indirect
@@ -451,13 +449,13 @@ require (
451
449
  github.com/subosito/gotenv v1.6.0 // indirect
452
450
  github.com/tetafro/godot v1.5.6 // indirect
453
451
  github.com/theupdateframework/go-tuf v0.7.0 // indirect
454
- github.com/theupdateframework/go-tuf/v2 v2.4.1 // indirect
452
+ github.com/theupdateframework/go-tuf/v2 v2.4.2 // indirect
455
453
  github.com/timakin/bodyclose v0.0.0-20260129054331-73d1f95b84b4 // indirect
456
454
  github.com/timonwong/loggercheck v0.11.0 // indirect
457
455
  github.com/tomarrell/wrapcheck/v2 v2.12.0 // indirect
458
456
  github.com/tommy-muehle/go-mnd/v2 v2.5.1 // indirect
459
457
  github.com/tomnomnom/linkheader v0.0.0-20250811210735-e5fe3b51442e // indirect
460
- github.com/transparency-dev/formats v0.1.0 // indirect
458
+ github.com/transparency-dev/formats v0.1.1 // indirect
461
459
  github.com/transparency-dev/merkle v0.0.2 // indirect
462
460
  github.com/ulikunitz/xz v0.5.15 // indirect
463
461
  github.com/ultraware/funlen v0.2.0 // indirect
@@ -472,6 +470,7 @@ require (
472
470
  github.com/yagipy/maintidx v1.0.0 // indirect
473
471
  github.com/yeya24/promlinter v0.3.0 // indirect
474
472
  github.com/ykadowak/zerologlint v0.1.5 // indirect
473
+ github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 // indirect
475
474
  gitlab.com/bosi/decorder v0.4.2 // indirect
476
475
  gitlab.com/digitalxero/go-conventional-commit v1.0.7 // indirect
477
476
  gitlab.com/gitlab-org/api/client-go v1.46.0 // indirect
@@ -479,22 +478,24 @@ require (
479
478
  go-simpler.org/sloglint v0.12.0 // indirect
480
479
  go.augendre.info/arangolint v0.4.0 // indirect
481
480
  go.augendre.info/fatcontext v0.9.0 // indirect
481
+ go.digitalxero.dev/go-msix v0.3.1 // indirect
482
+ go.mozilla.org/pkcs7 v0.9.0 // indirect
482
483
  go.opentelemetry.io/auto/sdk v1.2.1 // indirect
483
- go.opentelemetry.io/contrib/detectors/gcp v1.40.0 // indirect
484
- go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.64.0 // indirect
485
- go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0 // indirect
486
- go.opentelemetry.io/otel v1.43.0 // indirect
487
- go.opentelemetry.io/otel/metric v1.43.0 // indirect
488
- go.opentelemetry.io/otel/sdk v1.43.0 // indirect
489
- go.opentelemetry.io/otel/sdk/metric v1.43.0 // indirect
490
- go.opentelemetry.io/otel/trace v1.43.0 // indirect
484
+ go.opentelemetry.io/contrib/detectors/gcp v1.42.0 // indirect
485
+ go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.68.0 // indirect
486
+ go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.68.0 // indirect
487
+ go.opentelemetry.io/otel v1.44.0 // indirect
488
+ go.opentelemetry.io/otel/metric v1.44.0 // indirect
489
+ go.opentelemetry.io/otel/sdk v1.44.0 // indirect
490
+ go.opentelemetry.io/otel/sdk/metric v1.44.0 // indirect
491
+ go.opentelemetry.io/otel/trace v1.44.0 // indirect
491
492
  go.uber.org/atomic v1.11.0 // indirect
492
493
  go.uber.org/multierr v1.11.0 // indirect
493
- go.uber.org/zap v1.27.1 // indirect
494
+ go.uber.org/zap v1.28.0 // indirect
494
495
  go.yaml.in/yaml/v2 v2.4.4 // indirect
495
496
  go.yaml.in/yaml/v3 v3.0.4 // indirect
496
- go.yaml.in/yaml/v4 v4.0.0-rc.4 // indirect
497
- gocloud.dev v0.45.0 // indirect
497
+ go.yaml.in/yaml/v4 v4.0.0-rc.6 // indirect
498
+ gocloud.dev v0.46.0 // indirect
498
499
  golang.org/x/crypto v0.53.0 // indirect
499
500
  golang.org/x/exp/typeparams v0.0.0-20260209203927-2842357ff358 // indirect
500
501
  golang.org/x/mod v0.37.0 // indirect
@@ -507,11 +508,11 @@ require (
507
508
  golang.org/x/text v0.38.0 // indirect
508
509
  golang.org/x/time v0.15.0 // indirect
509
510
  golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
510
- google.golang.org/api v0.274.0 // indirect
511
- google.golang.org/genproto v0.0.0-20260319201613-d00831a3d3e7 // indirect
512
- google.golang.org/genproto/googleapis/api v0.0.0-20260401024825-9d38bb4040a9 // indirect
513
- google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9 // indirect
514
- google.golang.org/protobuf v1.36.11 // indirect
511
+ google.golang.org/api v0.283.0 // indirect
512
+ google.golang.org/genproto v0.0.0-20260406210006-6f92a3bedf2d // indirect
513
+ google.golang.org/genproto/googleapis/api v0.0.0-20260526163538-3dc84a4a5aaa // indirect
514
+ google.golang.org/genproto/googleapis/rpc v0.0.0-20260523011958-0a33c5d7ca68 // indirect
515
+ google.golang.org/protobuf v1.36.12-0.20260120151049-f2248ac996af // indirect
515
516
  gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
516
517
  gopkg.in/mail.v2 v2.3.1 // indirect
517
518
  gopkg.in/warnings.v0 v0.1.2 // indirect
@@ -520,7 +521,7 @@ require (
520
521
  k8s.io/klog/v2 v2.140.0 // indirect
521
522
  lukechampine.com/blake3 v1.4.1 // indirect
522
523
  mvdan.cc/unparam v0.0.0-20251027182757-5beb8c8f8f15 // indirect
523
- sigs.k8s.io/kind v0.31.0 // indirect
524
+ sigs.k8s.io/kind v0.32.0 // indirect
524
525
  sigs.k8s.io/yaml v1.6.0 // indirect
525
- software.sslmate.com/src/go-pkcs12 v0.7.1 // indirect
526
+ software.sslmate.com/src/go-pkcs12 v0.7.3 // indirect
526
527
  )
package/go.sum CHANGED
@@ -10,10 +10,14 @@ github.com/aperturerobotics/go-websocket v1.8.15-0.20260329113544-74dbfb8f11c6 h
10
10
  github.com/aperturerobotics/go-websocket v1.8.15-0.20260329113544-74dbfb8f11c6/go.mod h1:9KnSGuqxSXbdB/Oi0I6vvfPLkclfJwMGAQaDDGVgGow=
11
11
  github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20251104042408-0c9eb8a3f726 h1:4B1F0DzuqPzb6WqgCjWaqDD7JU9RDsevQG5OP0DFBgs=
12
12
  github.com/aperturerobotics/json-iterator-lite v1.0.1-0.20251104042408-0c9eb8a3f726/go.mod h1:SvGGBv3OVxUyqO0ZxA/nvs6z3cg7NIbZ64TnbV2OISo=
13
+ github.com/aperturerobotics/json-iterator-lite v1.1.0 h1:ZLLqHhHTKYlmCAP873ras2e/yVU/THtwC+ji3tXLMMg=
14
+ github.com/aperturerobotics/json-iterator-lite v1.1.0/go.mod h1:SvGGBv3OVxUyqO0ZxA/nvs6z3cg7NIbZ64TnbV2OISo=
13
15
  github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4 h1:4Dy3BAHh2kgVdHAqtlwcFsgY0kAwUe2m3rfFcaGwGQg=
14
16
  github.com/aperturerobotics/protobuf v0.0.0-20260203024654-8201686529c4/go.mod h1:tMgO7y6SJo/d9ZcvrpNqIQtdYT9de+QmYaHOZ4KnhOg=
15
17
  github.com/aperturerobotics/protobuf-go-lite v0.14.0 h1:6YhovtoUZtXgXLHZ2VV2GCYUzFfi8UN6172Vl2flNlE=
16
18
  github.com/aperturerobotics/protobuf-go-lite v0.14.0/go.mod h1:lGH3s5ArCTXKI4wJdlNpaybUtwSjfAG0vdWjxOfMcF8=
19
+ github.com/aperturerobotics/protobuf-go-lite v0.15.0 h1:Ke9pkt5zO5iQf2q7iAYsXHlCDhGeQH0cvhCTIiiWUIg=
20
+ github.com/aperturerobotics/protobuf-go-lite v0.15.0/go.mod h1:3Ay/E7iaw2KWLirK3+dDdNJZHK0hu8Y1/kKeYeUa+8s=
17
21
  github.com/aperturerobotics/starpc v0.49.18 h1:ZDxYN6Dncm+e7WzVvvF/9ja3Bh34ETgZyciL+BIvqbU=
18
22
  github.com/aperturerobotics/starpc v0.49.18/go.mod h1:5SIPOGIoUG7dLpb1NzZG2qK9l1T5oZ2454yzyMukviw=
19
23
  github.com/aperturerobotics/util v1.34.5 h1:007MaOJrrsiGm5o1c8Tt7p8nVwUAxkM6pmGflrBww/U=