Skip to content

Commit 2346379

Browse files
author
sapcc-bot
committed
Run go-makefile-maker and autoupdate dependencies
go: upgraded github.com/sapcc/go-bits v0.0.0-20260306103145-db6bddb66aec => v0.0.0-20260312170110-034b497ebb7e
1 parent 14ee00e commit 2346379

File tree

8 files changed

+36
-32
lines changed

8 files changed

+36
-32
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Check out code
4646
uses: actions/checkout@v6
4747
- name: Post coverage report
48-
uses: fgrosse/go-coverage-report@v1.2.0
48+
uses: fgrosse/go-coverage-report@v1.3.0
4949
with:
5050
coverage-artifact-name: code-coverage
5151
coverage-file-name: cover.out

.golangci.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,9 @@ linters:
138138
- G112
139139
# if we put a password or token into a serialized payload, guess what, we probably did that on purpose
140140
- G117
141+
# this triggers on net/http.Request.ParseForm() and its callers, e.g. net/http.Request.FormValue(), complaining about potential memory exhaustion from unbounded form parsing;
142+
# but that is incorrect, ParseForm() by default never parses more than 10 MiB for this specific reason
143+
- G120
141144
# created file permissions are restricted by umask if necessary
142145
- G306
143146
# the following lints cause false-positives in many repositories, should be fixed with the next release. (see https://github.com/securego/gosec/issues/1500)

.license-scan-overrides.jsonl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
{"name": "github.com/mattn/go-localereader", "licenceType": "MIT"}
77
{"name": "github.com/miekg/dns", "licenceType": "BSD-3-Clause"}
88
{"name": "github.com/pashagolub/pgxmock/v4", "licenceType": "BSD-3-Clause"}
9+
{"name": "github.com/pashagolub/pgxmock/v5", "licenceType": "BSD-3-Clause"}
910
{"name": "github.com/spdx/tools-golang", "licenceTextOverrideFile": "vendor/github.com/spdx/tools-golang/LICENSE.code"}
1011
{"name": "github.com/xeipuuv/gojsonpointer", "licenceType": "Apache-2.0"}
1112
{"name": "github.com/xeipuuv/gojsonreference", "licenceType": "Apache-2.0"}

REUSE.toml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -36,206 +36,206 @@ SPDX-License-Identifier = "Apache-2.0"
3636
path = [
3737
"vendor/github.com/prometheus/client_golang/**",
3838
]
39-
precedence = "aggregate"
39+
precedence = "override"
4040
SPDX-FileCopyrightText = "Other"
4141
SPDX-License-Identifier = "Apache-2.0"
4242

4343
[[annotations]]
4444
path = [
4545
"vendor/github.com/sapcc/go-api-declarations/**",
4646
]
47-
precedence = "aggregate"
47+
precedence = "override"
4848
SPDX-FileCopyrightText = "Other"
4949
SPDX-License-Identifier = "Apache-2.0"
5050

5151
[[annotations]]
5252
path = [
5353
"vendor/github.com/sapcc/go-bits/**",
5454
]
55-
precedence = "aggregate"
55+
precedence = "override"
5656
SPDX-FileCopyrightText = "Other"
5757
SPDX-License-Identifier = "Apache-2.0"
5858

5959
[[annotations]]
6060
path = [
6161
"vendor/gopkg.in/yaml.v2/**",
6262
]
63-
precedence = "aggregate"
63+
precedence = "override"
6464
SPDX-FileCopyrightText = "Other"
6565
SPDX-License-Identifier = "Apache-2.0"
6666

6767
[[annotations]]
6868
path = [
6969
"vendor/github.com/beorn7/perks/**",
7070
]
71-
precedence = "aggregate"
71+
precedence = "override"
7272
SPDX-FileCopyrightText = "Other"
7373
SPDX-License-Identifier = "MIT"
7474

7575
[[annotations]]
7676
path = [
7777
"vendor/github.com/cespare/xxhash/v2/**",
7878
]
79-
precedence = "aggregate"
79+
precedence = "override"
8080
SPDX-FileCopyrightText = "Other"
8181
SPDX-License-Identifier = "MIT"
8282

8383
[[annotations]]
8484
path = [
8585
"vendor/github.com/davecgh/go-spew/**",
8686
]
87-
precedence = "aggregate"
87+
precedence = "override"
8888
SPDX-FileCopyrightText = "Other"
8989
SPDX-License-Identifier = "ISC"
9090

9191
[[annotations]]
9292
path = [
9393
"vendor/github.com/google/go-cmp/**",
9494
]
95-
precedence = "aggregate"
95+
precedence = "override"
9696
SPDX-FileCopyrightText = "Other"
9797
SPDX-License-Identifier = "BSD-3-Clause"
9898

9999
[[annotations]]
100100
path = [
101101
"vendor/github.com/klauspost/compress/**",
102102
]
103-
precedence = "aggregate"
103+
precedence = "override"
104104
SPDX-FileCopyrightText = "Other"
105105
SPDX-License-Identifier = "Apache-2.0"
106106

107107
[[annotations]]
108108
path = [
109109
"vendor/github.com/kr/pretty/**",
110110
]
111-
precedence = "aggregate"
111+
precedence = "override"
112112
SPDX-FileCopyrightText = "Other"
113113
SPDX-License-Identifier = "MIT"
114114

115115
[[annotations]]
116116
path = [
117117
"vendor/github.com/kr/text/**",
118118
]
119-
precedence = "aggregate"
119+
precedence = "override"
120120
SPDX-FileCopyrightText = "Other"
121121
SPDX-License-Identifier = "MIT"
122122

123123
[[annotations]]
124124
path = [
125125
"vendor/github.com/kylelemons/godebug/**",
126126
]
127-
precedence = "aggregate"
127+
precedence = "override"
128128
SPDX-FileCopyrightText = "Other"
129129
SPDX-License-Identifier = "Apache-2.0"
130130

131131
[[annotations]]
132132
path = [
133133
"vendor/github.com/munnerz/goautoneg/**",
134134
]
135-
precedence = "aggregate"
135+
precedence = "override"
136136
SPDX-FileCopyrightText = "Other"
137137
SPDX-License-Identifier = "BSD-3-Clause"
138138

139139
[[annotations]]
140140
path = [
141141
"vendor/github.com/pmezard/go-difflib/**",
142142
]
143-
precedence = "aggregate"
143+
precedence = "override"
144144
SPDX-FileCopyrightText = "Other"
145145
SPDX-License-Identifier = "BSD-3-Clause"
146146

147147
[[annotations]]
148148
path = [
149149
"vendor/github.com/prometheus/client_model/**",
150150
]
151-
precedence = "aggregate"
151+
precedence = "override"
152152
SPDX-FileCopyrightText = "Other"
153153
SPDX-License-Identifier = "Apache-2.0"
154154

155155
[[annotations]]
156156
path = [
157157
"vendor/github.com/prometheus/common/**",
158158
]
159-
precedence = "aggregate"
159+
precedence = "override"
160160
SPDX-FileCopyrightText = "Other"
161161
SPDX-License-Identifier = "Apache-2.0"
162162

163163
[[annotations]]
164164
path = [
165165
"vendor/github.com/prometheus/procfs/**",
166166
]
167-
precedence = "aggregate"
167+
precedence = "override"
168168
SPDX-FileCopyrightText = "Other"
169169
SPDX-License-Identifier = "Apache-2.0"
170170

171171
[[annotations]]
172172
path = [
173173
"vendor/github.com/rogpeppe/go-internal/**",
174174
]
175-
precedence = "aggregate"
175+
precedence = "override"
176176
SPDX-FileCopyrightText = "Other"
177177
SPDX-License-Identifier = "BSD-3-Clause"
178178

179179
[[annotations]]
180180
path = [
181181
"vendor/github.com/sergi/go-diff/**",
182182
]
183-
precedence = "aggregate"
183+
precedence = "override"
184184
SPDX-FileCopyrightText = "Other"
185185
SPDX-License-Identifier = "MIT"
186186

187187
[[annotations]]
188188
path = [
189189
"vendor/github.com/stretchr/testify/**",
190190
]
191-
precedence = "aggregate"
191+
precedence = "override"
192192
SPDX-FileCopyrightText = "Other"
193193
SPDX-License-Identifier = "MIT"
194194

195195
[[annotations]]
196196
path = [
197197
"vendor/go.uber.org/goleak/**",
198198
]
199-
precedence = "aggregate"
199+
precedence = "override"
200200
SPDX-FileCopyrightText = "Other"
201201
SPDX-License-Identifier = "MIT"
202202

203203
[[annotations]]
204204
path = [
205205
"vendor/go.yaml.in/yaml/v2/**",
206206
]
207-
precedence = "aggregate"
207+
precedence = "override"
208208
SPDX-FileCopyrightText = "Other"
209209
SPDX-License-Identifier = "Apache-2.0"
210210

211211
[[annotations]]
212212
path = [
213213
"vendor/golang.org/x/sys/**",
214214
]
215-
precedence = "aggregate"
215+
precedence = "override"
216216
SPDX-FileCopyrightText = "Other"
217217
SPDX-License-Identifier = "BSD-3-Clause"
218218

219219
[[annotations]]
220220
path = [
221221
"vendor/google.golang.org/protobuf/**",
222222
]
223-
precedence = "aggregate"
223+
precedence = "override"
224224
SPDX-FileCopyrightText = "Other"
225225
SPDX-License-Identifier = "BSD-3-Clause"
226226

227227
[[annotations]]
228228
path = [
229229
"vendor/gopkg.in/check.v1/**",
230230
]
231-
precedence = "aggregate"
231+
precedence = "override"
232232
SPDX-FileCopyrightText = "Other"
233233
SPDX-License-Identifier = "BSD-2-Clause"
234234

235235
[[annotations]]
236236
path = [
237237
"vendor/gopkg.in/yaml.v3/**",
238238
]
239-
precedence = "aggregate"
239+
precedence = "override"
240240
SPDX-FileCopyrightText = "Other"
241241
SPDX-License-Identifier = "MIT"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.26
55
require (
66
github.com/prometheus/client_golang v1.23.2
77
github.com/sapcc/go-api-declarations v1.20.2
8-
github.com/sapcc/go-bits v0.0.0-20260306103145-db6bddb66aec
8+
github.com/sapcc/go-bits v0.0.0-20260312170110-034b497ebb7e
99
gopkg.in/yaml.v2 v2.4.0
1010
)
1111

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjR
3131
github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog=
3232
github.com/sapcc/go-api-declarations v1.20.2 h1:GWqv8VgsF4k9id6N051AVTaEpcjT02APsOuz2yCvTPQ=
3333
github.com/sapcc/go-api-declarations v1.20.2/go.mod h1:eiRrXXUeQS5C/1kKn8/KMjk0Y0goUzgDQswj30rH0Zc=
34-
github.com/sapcc/go-bits v0.0.0-20260306103145-db6bddb66aec h1:Uv797QZSKBvgVdNwbYHzX+TMnPl3c7/a+x2BI9uy520=
35-
github.com/sapcc/go-bits v0.0.0-20260306103145-db6bddb66aec/go.mod h1:HfqXnCZz9QbG/i342+dsxIUNlFXI+o1+5EzkowBWD/k=
34+
github.com/sapcc/go-bits v0.0.0-20260312170110-034b497ebb7e h1:4wgkrfAlnL6ffM7HTNoHn1HrBBurCRR71WNOszdiDNQ=
35+
github.com/sapcc/go-bits v0.0.0-20260312170110-034b497ebb7e/go.mod h1:NZjMiGVm04U25vwR6ZWvMw0XOOnvS1jkmXpjiepOeUw=
3636
github.com/sergi/go-diff v1.4.0 h1:n/SP9D5ad1fORl+llWyN+D6qoUETXNZARKjyY2/KVCw=
3737
github.com/sergi/go-diff v1.4.0/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4=
3838
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=

vendor/github.com/sapcc/go-bits/httpext/server.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ github.com/prometheus/procfs/internal/util
3232
# github.com/sapcc/go-api-declarations v1.20.2
3333
## explicit; go 1.24
3434
github.com/sapcc/go-api-declarations/bininfo
35-
# github.com/sapcc/go-bits v0.0.0-20260306103145-db6bddb66aec
35+
# github.com/sapcc/go-bits v0.0.0-20260312170110-034b497ebb7e
3636
## explicit; go 1.26
3737
github.com/sapcc/go-bits/httpext
3838
github.com/sapcc/go-bits/logg

0 commit comments

Comments
 (0)