@aptre/common 0.15.6 → 0.16.0

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/Makefile CHANGED
@@ -7,7 +7,8 @@ PROJECT_DIR_REL = $(shell realpath --relative-to $(COMMON_DIR) $(PROJECT_DIR))
7
7
 
8
8
  TOOLS_DIR := .tools
9
9
  TOOLS_BIN := $(TOOLS_DIR)/bin
10
- PROJECT_TOOLS_DIR := $(PROJECT_DIR)/.tools
10
+
11
+ PROJECT_TOOLS_DIR := $(PROJECT_DIR)/$(TOOLS_DIR)
11
12
  PROJECT_TOOLS_DIR_REL = $(shell realpath --relative-to $(COMMON_DIR) $(PROJECT_TOOLS_DIR))
12
13
 
13
14
  SHELL:=bash
@@ -49,6 +50,7 @@ GOFUMPT=$(TOOLS_BIN)/gofumpt
49
50
  GOLANGCI_LINT=$(TOOLS_BIN)/golangci-lint
50
51
  GO_MOD_OUTDATED=$(TOOLS_BIN)/go-mod-outdated
51
52
  GORELEASER=$(TOOLS_BIN)/goreleaser
53
+ WASMBROWSERTEST=$(TOOLS_BIN)/wasmbrowsertest
52
54
 
53
55
  # Mappings for build tool to Go import path
54
56
  $(eval $(call build_tool,$(PROTOC_GEN_GO),github.com/aperturerobotics/protobuf-go-lite/cmd/protoc-gen-go-lite))
@@ -59,6 +61,7 @@ $(eval $(call build_tool,$(PROTOWRAP),github.com/aperturerobotics/goprotowrap/cm
59
61
  $(eval $(call build_tool,$(GOLANGCI_LINT),github.com/golangci/golangci-lint/cmd/golangci-lint))
60
62
  $(eval $(call build_tool,$(GO_MOD_OUTDATED),github.com/psampaz/go-mod-outdated))
61
63
  $(eval $(call build_tool,$(GORELEASER),github.com/goreleaser/goreleaser))
64
+ $(eval $(call build_tool,$(WASMBROWSERTEST),github.com/agnivade/wasmbrowsertest))
62
65
 
63
66
  .PHONY: protodeps
64
67
  protodeps: $(GOIMPORTS) $(PROTOWRAP) $(PROTOC_GEN_GO) $(PROTOC_GEN_GO_STARPC) $(PROJECT_DIR)/node_modules
@@ -174,6 +177,11 @@ test:
174
177
  cd $(PROJECT_DIR); \
175
178
  go test -v ./...
176
179
 
180
+ .PHONY: test-browser
181
+ test-browser: $(WASMBROWSERTEST)
182
+ cd $(PROJECT_DIR); \
183
+ GOOS=js GOARCH=wasm go test -exec $(WASMBROWSERTEST) -v ./...
184
+
177
185
  .PHONY: format
178
186
  format: $(GOFUMPT) $(GOIMPORTS)
179
187
  cd $(PROJECT_DIR); \
package/README.md CHANGED
@@ -47,12 +47,16 @@ The Makefile will download the tools using Go to a bin dir.
47
47
 
48
48
  The available make targets are:
49
49
 
50
- - `genproto`: Generate protobuf files.
51
- - `test`: run go test -v ./...
52
- - `lint`: run golangci-lint on the project.
53
- - `fix`: run golangci-lint --fix on the project.
54
- - `list`: list go module dependencies
55
- - `outdated`: list outdated go module dependencies
50
+ - `gen`: Generate protobuf files.
51
+ - `test`: Run go tests.
52
+ - `test-browser`: Run go tests in a web browser with WebAssembly.
53
+ - `lint`: Run golangci-lint on the project.
54
+ - `fix`: Run golangci-lint with --fix on the project.
55
+ - `format`: Format Go and TypeScript code.
56
+ - `release`: Create a new release using goreleaser.
57
+ - `release-bundle`: Create a bundled snapshot release using goreleaser.
58
+ - `release-build`: Build a snapshot release using goreleaser.
59
+ - `release-check`: Run goreleaser checks.
56
60
 
57
61
  To generate the TypeScript and Go code:
58
62
 
package/deps.go.tools CHANGED
@@ -26,4 +26,7 @@ import (
26
26
 
27
27
  // _ imports goreleaser
28
28
  _ "github.com/goreleaser/goreleaser"
29
+
30
+ // _ imports wasmbrowsertest
31
+ _ "github.com/agnivade/wasmbrowsertest"
29
32
  )
package/go.mod CHANGED
@@ -7,6 +7,6 @@ replace github.com/libp2p/go-libp2p => github.com/aperturerobotics/go-libp2p v0.
7
7
 
8
8
  replace github.com/ipfs/go-log/v2 => github.com/paralin/ipfs-go-logrus v0.0.0-20240410105224-e24cb05f9e98 // master
9
9
 
10
- require github.com/aperturerobotics/protobuf-go-lite v0.6.1 // latest
10
+ require github.com/aperturerobotics/protobuf-go-lite v0.6.3 // latest
11
11
 
12
12
  require github.com/aperturerobotics/json-iterator-lite v1.0.0 // indirect
package/go.mod.tools CHANGED
@@ -10,28 +10,29 @@ replace (
10
10
 
11
11
  require (
12
12
  github.com/aperturerobotics/goprotowrap v0.3.1 // latest
13
- github.com/aperturerobotics/protobuf-go-lite v0.6.1 // latest
14
- github.com/aperturerobotics/starpc v0.32.4 // latest
13
+ github.com/aperturerobotics/protobuf-go-lite v0.6.3 // latest
14
+ github.com/aperturerobotics/starpc v0.32.8 // latest
15
15
  )
16
16
 
17
17
  require (
18
18
  github.com/golangci/golangci-lint v1.58.1 // latest
19
- github.com/goreleaser/goreleaser v1.25.1 // latest
19
+ github.com/goreleaser/goreleaser v1.26.1 // latest
20
20
  github.com/psampaz/go-mod-outdated v0.9.0 // latest
21
21
  golang.org/x/tools v0.21.0 // latest
22
22
  mvdan.cc/gofumpt v0.6.0 // latest
23
23
  )
24
24
 
25
+ require github.com/agnivade/wasmbrowsertest v0.8.0
26
+
25
27
  require (
26
28
  4d63.com/gocheckcompilerdirectives v1.2.1 // indirect
27
29
  4d63.com/gochecknoglobals v0.2.1 // indirect
28
30
  cloud.google.com/go v0.112.1 // indirect
29
- cloud.google.com/go/compute v1.25.0 // indirect
30
- cloud.google.com/go/compute/metadata v0.2.3 // indirect
31
+ cloud.google.com/go/compute/metadata v0.3.0 // indirect
31
32
  cloud.google.com/go/iam v1.1.6 // indirect
32
- cloud.google.com/go/kms v1.15.7 // indirect
33
+ cloud.google.com/go/kms v1.15.8 // indirect
33
34
  cloud.google.com/go/storage v1.39.1 // indirect
34
- code.gitea.io/sdk/gitea v0.17.1 // indirect
35
+ code.gitea.io/sdk/gitea v0.18.0 // indirect
35
36
  dario.cat/mergo v1.0.0 // indirect
36
37
  github.com/4meepo/tagalign v1.3.4 // indirect
37
38
  github.com/Abirdcfly/dupword v0.0.14 // indirect
@@ -71,40 +72,47 @@ require (
71
72
  github.com/alexkohler/nakedret/v2 v2.0.4 // indirect
72
73
  github.com/alexkohler/prealloc v1.0.0 // indirect
73
74
  github.com/alingse/asasalint v0.0.11 // indirect
75
+ github.com/anchore/bubbly v0.0.0-20230518153401-87b6af8ccf22 // indirect
76
+ github.com/anchore/go-logger v0.0.0-20230725134548-c21dafa1ec5a // indirect
77
+ github.com/anchore/go-macholibre v0.0.0-20220308212642-53e6d0aaf6fb // indirect
78
+ github.com/anchore/quill v0.4.1 // indirect
74
79
  github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
75
80
  github.com/ashanbrown/forbidigo v1.6.0 // indirect
76
81
  github.com/ashanbrown/makezero v1.1.1 // indirect
77
82
  github.com/atc0005/go-teams-notify/v2 v2.10.0 // indirect
78
- github.com/aws/aws-sdk-go v1.51.1 // indirect
79
- github.com/aws/aws-sdk-go-v2 v1.25.3 // indirect
83
+ github.com/aws/aws-sdk-go v1.53.0 // indirect
84
+ github.com/aws/aws-sdk-go-v2 v1.26.0 // indirect
80
85
  github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.1 // indirect
81
- github.com/aws/aws-sdk-go-v2/config v1.27.7 // indirect
82
- github.com/aws/aws-sdk-go-v2/credentials v1.17.7 // indirect
83
- github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.15.3 // indirect
86
+ github.com/aws/aws-sdk-go-v2/config v1.27.9 // indirect
87
+ github.com/aws/aws-sdk-go-v2/credentials v1.17.9 // indirect
88
+ github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.0 // indirect
84
89
  github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.16.9 // indirect
85
- github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.3 // indirect
86
- github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.3 // indirect
90
+ github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.4 // indirect
91
+ github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.4 // indirect
87
92
  github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect
88
93
  github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.3 // indirect
89
94
  github.com/aws/aws-sdk-go-v2/service/ecr v1.20.2 // indirect
90
95
  github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.18.2 // indirect
91
96
  github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.1 // indirect
92
97
  github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.5 // indirect
93
- github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.5 // indirect
98
+ github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.6 // indirect
94
99
  github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.3 // indirect
95
- github.com/aws/aws-sdk-go-v2/service/kms v1.29.2 // indirect
100
+ github.com/aws/aws-sdk-go-v2/service/kms v1.30.0 // indirect
96
101
  github.com/aws/aws-sdk-go-v2/service/s3 v1.51.4 // indirect
97
- github.com/aws/aws-sdk-go-v2/service/sso v1.20.2 // indirect
98
- github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.2 // indirect
99
- github.com/aws/aws-sdk-go-v2/service/sts v1.28.4 // indirect
102
+ github.com/aws/aws-sdk-go-v2/service/sso v1.20.3 // indirect
103
+ github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.3 // indirect
104
+ github.com/aws/aws-sdk-go-v2/service/sts v1.28.5 // indirect
100
105
  github.com/aws/smithy-go v1.20.1 // indirect
101
106
  github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20231024185945-8841054dbdb8 // indirect
102
107
  github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
103
108
  github.com/bahlo/generic-list-go v0.2.0 // indirect
104
109
  github.com/beorn7/perks v1.0.1 // indirect
105
110
  github.com/bkielbasa/cyclop v1.2.1 // indirect
111
+ github.com/blacktop/go-dwarf v1.0.9 // indirect
112
+ github.com/blacktop/go-macho v1.1.162 // indirect
106
113
  github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb // indirect
107
114
  github.com/blizzy78/varnamelen v0.8.0 // indirect
115
+ github.com/bluesky-social/indigo v0.0.0-20240411170459-440932307e0d // indirect
108
116
  github.com/bombsimon/wsl/v4 v4.2.1 // indirect
109
117
  github.com/breml/bidichk v0.2.7 // indirect
110
118
  github.com/breml/errchkjson v0.3.6 // indirect
@@ -112,23 +120,29 @@ require (
112
120
  github.com/butuzov/ireturn v0.3.0 // indirect
113
121
  github.com/butuzov/mirror v1.2.0 // indirect
114
122
  github.com/caarlos0/ctrlc v1.2.0 // indirect
115
- github.com/caarlos0/env/v9 v9.0.0 // indirect
123
+ github.com/caarlos0/env/v11 v11.0.0 // indirect
116
124
  github.com/caarlos0/go-reddit/v3 v3.0.1 // indirect
117
125
  github.com/caarlos0/go-shellwords v1.0.12 // indirect
118
126
  github.com/caarlos0/go-version v0.1.1 // indirect
119
127
  github.com/caarlos0/log v0.4.4 // indirect
128
+ github.com/carlmjohnson/versioninfo v0.22.5 // indirect
120
129
  github.com/catenacyber/perfsprint v0.7.1 // indirect
121
130
  github.com/cavaliergopher/cpio v1.0.1 // indirect
122
131
  github.com/ccojocar/zxcvbn-go v1.0.2 // indirect
123
132
  github.com/cenkalti/backoff/v4 v4.2.1 // indirect
124
133
  github.com/cespare/xxhash/v2 v2.2.0 // indirect
125
134
  github.com/charithe/durationcheck v0.0.10 // indirect
135
+ github.com/charmbracelet/bubbletea v0.22.1 // indirect
126
136
  github.com/charmbracelet/lipgloss v0.10.0 // indirect
127
137
  github.com/charmbracelet/x/exp/ordered v0.0.0-20231010190216-1cb11efc897d // indirect
128
138
  github.com/chavacava/garif v0.1.0 // indirect
129
139
  github.com/chrismellard/docker-credential-acr-env v0.0.0-20230304212654-82a0ddb27589 // indirect
140
+ github.com/chromedp/cdproto v0.0.0-20230802225258-3cf4e6d46a89 // indirect
141
+ github.com/chromedp/chromedp v0.9.2 // indirect
142
+ github.com/chromedp/sysutil v1.0.0 // indirect
130
143
  github.com/ckaznocha/intrange v0.1.2 // indirect
131
- github.com/cloudflare/circl v1.3.7 // indirect
144
+ github.com/cloudflare/circl v1.3.8 // indirect
145
+ github.com/containerd/console v1.0.4 // indirect
132
146
  github.com/containerd/continuity v0.4.3 // indirect
133
147
  github.com/containerd/stargz-snapshotter/estargz v0.15.1 // indirect
134
148
  github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
@@ -149,6 +163,7 @@ require (
149
163
  github.com/docker/docker-credential-helpers v0.8.0 // indirect
150
164
  github.com/docker/go-connections v0.5.0 // indirect
151
165
  github.com/docker/go-units v0.5.0 // indirect
166
+ github.com/dustin/go-humanize v1.0.1 // indirect
152
167
  github.com/elliotchance/orderedmap/v2 v2.2.0 // indirect
153
168
  github.com/emirpasic/gods v1.18.1 // indirect
154
169
  github.com/ettle/strcase v0.2.0 // indirect
@@ -159,25 +174,29 @@ require (
159
174
  github.com/firefart/nonamedreturns v1.0.5 // indirect
160
175
  github.com/fsnotify/fsnotify v1.7.0 // indirect
161
176
  github.com/fzipp/gocyclo v0.6.0 // indirect
177
+ github.com/gabriel-vasile/mimetype v1.4.2 // indirect
162
178
  github.com/ghostiam/protogetter v0.3.6 // indirect
179
+ github.com/github/smimesign v0.2.0 // indirect
163
180
  github.com/go-critic/go-critic v0.11.3 // indirect
164
181
  github.com/go-fed/httpsig v1.1.0 // indirect
165
182
  github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
166
183
  github.com/go-git/go-billy/v5 v5.5.0 // indirect
167
- github.com/go-git/go-git/v5 v5.11.0 // indirect
184
+ github.com/go-git/go-git/v5 v5.12.0 // indirect
185
+ github.com/go-interpreter/wagon v0.6.0 // indirect
168
186
  github.com/go-logr/logr v1.4.1 // indirect
169
187
  github.com/go-logr/stdr v1.2.2 // indirect
170
- github.com/go-openapi/analysis v0.22.0 // indirect
171
- github.com/go-openapi/errors v0.21.0 // indirect
172
- github.com/go-openapi/jsonpointer v0.20.2 // indirect
173
- github.com/go-openapi/jsonreference v0.20.4 // indirect
174
- github.com/go-openapi/loads v0.21.5 // indirect
175
- github.com/go-openapi/runtime v0.27.1 // indirect
176
- github.com/go-openapi/spec v0.20.13 // indirect
177
- github.com/go-openapi/strfmt v0.22.0 // indirect
178
- github.com/go-openapi/swag v0.22.9 // indirect
179
- github.com/go-openapi/validate v0.22.4 // indirect
180
- github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible // indirect
188
+ github.com/go-openapi/analysis v0.23.0 // indirect
189
+ github.com/go-openapi/errors v0.22.0 // indirect
190
+ github.com/go-openapi/jsonpointer v0.21.0 // indirect
191
+ github.com/go-openapi/jsonreference v0.21.0 // indirect
192
+ github.com/go-openapi/loads v0.22.0 // indirect
193
+ github.com/go-openapi/runtime v0.28.0 // indirect
194
+ github.com/go-openapi/spec v0.21.0 // indirect
195
+ github.com/go-openapi/strfmt v0.23.0 // indirect
196
+ github.com/go-openapi/swag v0.23.0 // indirect
197
+ github.com/go-openapi/validate v0.24.0 // indirect
198
+ github.com/go-restruct/restruct v1.2.0-alpha // indirect
199
+ github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1 // indirect
181
200
  github.com/go-toolsmith/astcast v1.1.0 // indirect
182
201
  github.com/go-toolsmith/astcopy v1.1.0 // indirect
183
202
  github.com/go-toolsmith/astequal v1.2.0 // indirect
@@ -188,6 +207,9 @@ require (
188
207
  github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect
189
208
  github.com/go-xmlfmt/xmlfmt v1.1.2 // indirect
190
209
  github.com/gobwas/glob v0.2.3 // indirect
210
+ github.com/gobwas/httphead v0.1.0 // indirect
211
+ github.com/gobwas/pool v0.2.1 // indirect
212
+ github.com/gobwas/ws v1.2.1 // indirect
191
213
  github.com/gofrs/flock v0.8.1 // indirect
192
214
  github.com/gogo/protobuf v1.3.2 // indirect
193
215
  github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
@@ -203,38 +225,52 @@ require (
203
225
  github.com/golangci/unconvert v0.0.0-20240309020433-c5143eacb3ed // indirect
204
226
  github.com/google/go-cmp v0.6.0 // indirect
205
227
  github.com/google/go-containerregistry v0.19.1 // indirect
206
- github.com/google/go-github/v61 v61.0.0 // indirect
228
+ github.com/google/go-github/v62 v62.0.0 // indirect
207
229
  github.com/google/go-querystring v1.1.0 // indirect
208
230
  github.com/google/ko v0.15.2 // indirect
209
- github.com/google/rpmpack v0.6.0 // indirect
231
+ github.com/google/pprof v0.0.0-20231023181126-ff6d637d2a7b // indirect
232
+ github.com/google/rpmpack v0.6.1-0.20240329070804-c2247cbb881a // indirect
210
233
  github.com/google/s2a-go v0.1.7 // indirect
211
234
  github.com/google/safetext v0.0.0-20220905092116-b49f7bc46da2 // indirect
212
235
  github.com/google/uuid v1.6.0 // indirect
213
236
  github.com/google/wire v0.6.0 // indirect
214
237
  github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
215
- github.com/googleapis/gax-go/v2 v2.12.2 // indirect
238
+ github.com/googleapis/gax-go/v2 v2.12.3 // indirect
216
239
  github.com/gordonklaus/ineffassign v0.1.0 // indirect
217
- github.com/goreleaser/chglog v0.5.0 // indirect
240
+ github.com/goreleaser/chglog v0.6.1 // indirect
218
241
  github.com/goreleaser/fileglob v1.3.0 // indirect
219
- github.com/goreleaser/nfpm/v2 v2.36.1 // indirect
242
+ github.com/goreleaser/nfpm/v2 v2.37.1 // indirect
220
243
  github.com/gorilla/websocket v1.5.1 // indirect
221
244
  github.com/gostaticanalysis/analysisutil v0.7.1 // indirect
222
245
  github.com/gostaticanalysis/comment v1.4.2 // indirect
223
246
  github.com/gostaticanalysis/forcetypeassert v0.1.0 // indirect
224
247
  github.com/gostaticanalysis/nilerr v0.1.1 // indirect
225
- github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.0 // indirect
226
248
  github.com/hashicorp/errwrap v1.1.0 // indirect
227
249
  github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
228
250
  github.com/hashicorp/go-multierror v1.1.1 // indirect
229
251
  github.com/hashicorp/go-retryablehttp v0.7.5 // indirect
230
252
  github.com/hashicorp/go-version v1.6.0 // indirect
253
+ github.com/hashicorp/golang-lru v1.0.2 // indirect
231
254
  github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
232
255
  github.com/hexops/gotextdiff v1.0.3 // indirect
233
256
  github.com/huandu/xstrings v1.3.3 // indirect
234
257
  github.com/imdario/mergo v0.3.16 // indirect
235
258
  github.com/inconshreveable/mousetrap v1.1.0 // indirect
236
259
  github.com/invopop/jsonschema v0.12.0 // indirect
260
+ github.com/ipfs/bbloom v0.0.4 // indirect
261
+ github.com/ipfs/go-block-format v0.2.0 // indirect
262
+ github.com/ipfs/go-cid v0.4.1 // indirect
263
+ github.com/ipfs/go-datastore v0.6.0 // indirect
264
+ github.com/ipfs/go-ipfs-blockstore v1.3.1 // indirect
265
+ github.com/ipfs/go-ipfs-ds-help v1.1.1 // indirect
266
+ github.com/ipfs/go-ipfs-util v0.0.3 // indirect
267
+ github.com/ipfs/go-ipld-cbor v0.1.0 // indirect
268
+ github.com/ipfs/go-ipld-format v0.6.0 // indirect
269
+ github.com/ipfs/go-log v1.0.5 // indirect
270
+ github.com/ipfs/go-log/v2 v2.5.1 // indirect
271
+ github.com/ipfs/go-metrics-interface v0.0.1 // indirect
237
272
  github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
273
+ github.com/jbenet/goprocess v0.1.4 // indirect
238
274
  github.com/jgautheron/goconst v1.7.1 // indirect
239
275
  github.com/jingyugao/rowserrcheck v1.1.1 // indirect
240
276
  github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af // indirect
@@ -246,7 +282,8 @@ require (
246
282
  github.com/kevinburke/ssh_config v1.2.0 // indirect
247
283
  github.com/kisielk/errcheck v1.7.0 // indirect
248
284
  github.com/kkHAIKE/contextcheck v1.1.5 // indirect
249
- github.com/klauspost/compress v1.17.7 // indirect
285
+ github.com/klauspost/compress v1.17.8 // indirect
286
+ github.com/klauspost/cpuid/v2 v2.2.7 // indirect
250
287
  github.com/klauspost/pgzip v1.2.6 // indirect
251
288
  github.com/kulti/thelper v0.6.3 // indirect
252
289
  github.com/kunwardeep/paralleltest v1.0.10 // indirect
@@ -267,22 +304,31 @@ require (
267
304
  github.com/matoous/godox v0.0.0-20230222163458-006bad1f9d26 // indirect
268
305
  github.com/mattn/go-colorable v0.1.13 // indirect
269
306
  github.com/mattn/go-isatty v0.0.20 // indirect
307
+ github.com/mattn/go-localereader v0.0.1 // indirect
270
308
  github.com/mattn/go-mastodon v0.0.6 // indirect
271
309
  github.com/mattn/go-runewidth v0.0.15 // indirect
272
- github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
273
310
  github.com/mgechev/revive v1.3.7 // indirect
311
+ github.com/minio/sha256-simd v1.0.1 // indirect
274
312
  github.com/mitchellh/copystructure v1.2.0 // indirect
275
313
  github.com/mitchellh/go-homedir v1.1.0 // indirect
276
314
  github.com/mitchellh/mapstructure v1.5.0 // indirect
277
315
  github.com/mitchellh/reflectwalk v1.0.2 // indirect
278
316
  github.com/moby/docker-image-spec v1.3.1 // indirect
279
317
  github.com/moricho/tparallel v0.3.1 // indirect
318
+ github.com/mr-tron/base58 v1.2.0 // indirect
319
+ github.com/muesli/ansi v0.0.0-20211031195517-c9f0611b6c70 // indirect
320
+ github.com/muesli/cancelreader v0.2.2 // indirect
280
321
  github.com/muesli/mango v0.1.0 // indirect
281
322
  github.com/muesli/mango-cobra v1.2.0 // indirect
282
323
  github.com/muesli/mango-pflag v0.1.0 // indirect
283
324
  github.com/muesli/reflow v0.3.0 // indirect
284
325
  github.com/muesli/roff v0.1.0 // indirect
285
326
  github.com/muesli/termenv v0.15.2 // indirect
327
+ github.com/multiformats/go-base32 v0.1.0 // indirect
328
+ github.com/multiformats/go-base36 v0.2.0 // indirect
329
+ github.com/multiformats/go-multibase v0.2.0 // indirect
330
+ github.com/multiformats/go-multihash v0.2.3 // indirect
331
+ github.com/multiformats/go-varint v0.0.7 // indirect
286
332
  github.com/nakabonne/nestif v0.3.1 // indirect
287
333
  github.com/nishanths/exhaustive v0.12.0 // indirect
288
334
  github.com/nishanths/predeclared v0.2.2 // indirect
@@ -291,16 +337,18 @@ require (
291
337
  github.com/olekukonko/tablewriter v0.0.5 // indirect
292
338
  github.com/opencontainers/go-digest v1.0.0 // indirect
293
339
  github.com/opencontainers/image-spec v1.1.0 // indirect
340
+ github.com/opentracing/opentracing-go v1.2.0 // indirect
294
341
  github.com/pelletier/go-toml v1.9.5 // indirect
295
342
  github.com/pelletier/go-toml/v2 v2.2.2 // indirect
296
343
  github.com/pjbgf/sha1cd v0.3.0 // indirect
297
344
  github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
298
345
  github.com/pkg/errors v0.9.1 // indirect
299
346
  github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
347
+ github.com/polydawn/refmt v0.89.1-0.20221221234430-40501e09de1f // indirect
300
348
  github.com/polyfloyd/go-errorlint v1.5.1 // indirect
301
- github.com/prometheus/client_golang v1.18.0 // indirect
302
- github.com/prometheus/client_model v0.5.0 // indirect
303
- github.com/prometheus/common v0.45.0 // indirect
349
+ github.com/prometheus/client_golang v1.19.0 // indirect
350
+ github.com/prometheus/client_model v0.6.0 // indirect
351
+ github.com/prometheus/common v0.51.1 // indirect
304
352
  github.com/prometheus/procfs v0.12.0 // indirect
305
353
  github.com/quasilyte/go-ruleguard v0.4.2 // indirect
306
354
  github.com/quasilyte/go-ruleguard/dsl v0.3.22 // indirect
@@ -317,22 +365,24 @@ require (
317
365
  github.com/santhosh-tekuri/jsonschema/v5 v5.3.1 // indirect
318
366
  github.com/sashamelentyev/interfacebloat v1.1.0 // indirect
319
367
  github.com/sashamelentyev/usestdlibvars v1.25.0 // indirect
368
+ github.com/scylladb/go-set v1.0.3-0.20200225121959-cc7b2070d91e // indirect
320
369
  github.com/secure-systems-lab/go-securesystemslib v0.8.0 // indirect
321
370
  github.com/securego/gosec/v2 v2.19.0 // indirect
322
- github.com/sergi/go-diff v1.3.1 // indirect
371
+ github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
323
372
  github.com/shazow/go-diff v0.0.0-20160112020656-b6b7b6733b8c // indirect
324
373
  github.com/shopspring/decimal v1.2.0 // indirect
325
- github.com/sigstore/cosign/v2 v2.2.3 // indirect
326
- github.com/sigstore/rekor v1.3.4 // indirect
327
- github.com/sigstore/sigstore v1.8.1 // indirect
374
+ github.com/sigstore/cosign/v2 v2.2.4 // indirect
375
+ github.com/sigstore/rekor v1.3.6 // indirect
376
+ github.com/sigstore/sigstore v1.8.3 // indirect
328
377
  github.com/sirupsen/logrus v1.9.3 // indirect
329
378
  github.com/sivchari/containedctx v1.0.3 // indirect
330
379
  github.com/sivchari/tenv v1.7.1 // indirect
331
- github.com/skeema/knownhosts v1.2.1 // indirect
380
+ github.com/skeema/knownhosts v1.2.2 // indirect
332
381
  github.com/slack-go/slack v0.12.5 // indirect
333
382
  github.com/sonatard/noctx v0.0.2 // indirect
334
383
  github.com/sourcegraph/conc v0.3.0 // indirect
335
384
  github.com/sourcegraph/go-diff v0.7.0 // indirect
385
+ github.com/spaolacci/murmur3 v1.1.0 // indirect
336
386
  github.com/spf13/afero v1.11.0 // indirect
337
387
  github.com/spf13/cast v1.6.0 // indirect
338
388
  github.com/spf13/cobra v1.8.0 // indirect
@@ -345,7 +395,6 @@ require (
345
395
  github.com/subosito/gotenv v1.6.0 // indirect
346
396
  github.com/t-yuki/gocover-cobertura v0.0.0-20180217150009-aaee18c8195c // indirect
347
397
  github.com/tdakkota/asciicheck v0.2.0 // indirect
348
- github.com/technoweenie/multipartstreamer v1.0.1 // indirect
349
398
  github.com/tetafro/godot v1.4.16 // indirect
350
399
  github.com/timakin/bodyclose v0.0.0-20230421092635-574207250966 // indirect
351
400
  github.com/timonwong/loggercheck v0.9.4 // indirect
@@ -353,13 +402,16 @@ require (
353
402
  github.com/tomarrell/wrapcheck/v2 v2.8.3 // indirect
354
403
  github.com/tommy-muehle/go-mnd/v2 v2.5.1 // indirect
355
404
  github.com/tomnomnom/linkheader v0.0.0-20180905144013-02ca5825eb80 // indirect
356
- github.com/ulikunitz/xz v0.5.11 // indirect
405
+ github.com/ulikunitz/xz v0.5.12 // indirect
357
406
  github.com/ultraware/funlen v0.1.0 // indirect
358
407
  github.com/ultraware/whitespace v0.1.1 // indirect
359
408
  github.com/uudashr/gocognit v1.1.2 // indirect
360
409
  github.com/vbatts/tar-split v0.11.5 // indirect
410
+ github.com/wagoodman/go-partybus v0.0.0-20230516145632-8ccac152c651 // indirect
411
+ github.com/wagoodman/go-progress v0.0.0-20220614130704-4b1c25a33c7c // indirect
412
+ github.com/whyrusleeping/cbor-gen v0.1.1-0.20240311221002-68b9f235c302 // indirect
361
413
  github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
362
- github.com/xanzy/go-gitlab v0.101.0 // indirect
414
+ github.com/xanzy/go-gitlab v0.105.0 // indirect
363
415
  github.com/xanzy/ssh-agent v0.3.3 // indirect
364
416
  github.com/xen0n/gosmopolitan v1.2.2 // indirect
365
417
  github.com/yagipy/maintidx v1.0.0 // indirect
@@ -369,7 +421,7 @@ require (
369
421
  gitlab.com/digitalxero/go-conventional-commit v1.0.7 // indirect
370
422
  go-simpler.org/musttag v0.12.1 // indirect
371
423
  go-simpler.org/sloglint v0.6.0 // indirect
372
- go.mongodb.org/mongo-driver v1.13.1 // indirect
424
+ go.mongodb.org/mongo-driver v1.14.0 // indirect
373
425
  go.opencensus.io v0.24.0 // indirect
374
426
  go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
375
427
  go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
@@ -377,30 +429,29 @@ require (
377
429
  go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.22.0 // indirect
378
430
  go.opentelemetry.io/otel/metric v1.24.0 // indirect
379
431
  go.opentelemetry.io/otel/trace v1.24.0 // indirect
380
- go.opentelemetry.io/proto/otlp v1.0.0 // indirect
432
+ go.uber.org/atomic v1.11.0 // indirect
381
433
  go.uber.org/automaxprocs v1.5.3 // indirect
382
434
  go.uber.org/multierr v1.11.0 // indirect
383
435
  go.uber.org/zap v1.27.0 // indirect
384
436
  gocloud.dev v0.37.0 // indirect
385
437
  golang.org/x/crypto v0.23.0 // indirect
386
- golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f // indirect
438
+ golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
387
439
  golang.org/x/exp/typeparams v0.0.0-20240314144324-c7f7c6466f7f // indirect
388
440
  golang.org/x/mod v0.17.0 // indirect
389
441
  golang.org/x/net v0.25.0 // indirect
390
- golang.org/x/oauth2 v0.18.0 // indirect
442
+ golang.org/x/oauth2 v0.20.0 // indirect
391
443
  golang.org/x/sync v0.7.0 // indirect
392
444
  golang.org/x/sys v0.20.0 // indirect
393
445
  golang.org/x/term v0.20.0 // indirect
394
446
  golang.org/x/text v0.15.0 // indirect
395
447
  golang.org/x/time v0.5.0 // indirect
396
448
  golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
397
- google.golang.org/api v0.169.0 // indirect
398
- google.golang.org/appengine v1.6.8 // indirect
449
+ google.golang.org/api v0.172.0 // indirect
399
450
  google.golang.org/genproto v0.0.0-20240311173647-c811ad7063a7 // indirect
400
451
  google.golang.org/genproto/googleapis/api v0.0.0-20240311173647-c811ad7063a7 // indirect
401
- google.golang.org/genproto/googleapis/rpc v0.0.0-20240311173647-c811ad7063a7 // indirect
452
+ google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect
402
453
  google.golang.org/grpc v1.62.1 // indirect
403
- google.golang.org/protobuf v1.34.0 // indirect
454
+ google.golang.org/protobuf v1.34.1 // indirect
404
455
  gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
405
456
  gopkg.in/go-jose/go-jose.v2 v2.6.3 // indirect
406
457
  gopkg.in/ini.v1 v1.67.0 // indirect
@@ -410,7 +461,9 @@ require (
410
461
  gopkg.in/yaml.v3 v3.0.1 // indirect
411
462
  gotest.tools/v3 v3.5.1 // indirect
412
463
  honnef.co/go/tools v0.4.7 // indirect
464
+ lukechampine.com/blake3 v1.2.1 // indirect
413
465
  mvdan.cc/unparam v0.0.0-20240427195214-063aff900ca1 // indirect
414
466
  sigs.k8s.io/kind v0.22.0 // indirect
415
467
  sigs.k8s.io/yaml v1.4.0 // indirect
468
+ software.sslmate.com/src/go-pkcs12 v0.4.0 // indirect
416
469
  )
package/go.sum CHANGED
@@ -1,7 +1,7 @@
1
1
  github.com/aperturerobotics/json-iterator-lite v1.0.0 h1:cihbrYWoK/S2RYXhJLpDZd+GUjVvFJN+D3w1VOqqHRI=
2
2
  github.com/aperturerobotics/json-iterator-lite v1.0.0/go.mod h1:snaApCEDtrHHP6UWSLKiYNOZU9A5NyzccKenx9oZEzg=
3
- github.com/aperturerobotics/protobuf-go-lite v0.6.1 h1:dN4baS2e2qHhdpX57RJKUEukseXrXtqtiUJxGFFUbRs=
4
- github.com/aperturerobotics/protobuf-go-lite v0.6.1/go.mod h1:6Bp+C+fI1uh0NmIKpxlxyHMkKtCP9Kb3PHkhOzxG4B8=
3
+ github.com/aperturerobotics/protobuf-go-lite v0.6.3 h1:AZ821ntYqzCpq6jE5rWJwJLikYbaa63Nka7YfW9EJdE=
4
+ github.com/aperturerobotics/protobuf-go-lite v0.6.3/go.mod h1:YTbfnUj3feSULhs8VgepAHFnF3wUc0CPj4jd2axy21I=
5
5
  github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
6
6
  github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
7
7
  github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=