vendor: update buildkit to v0.32.0-rc1

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
Tonis Tiigi
2026-07-22 15:27:47 -07:00
parent efd9aa1dea
commit 0cf7592d41
464 changed files with 19941 additions and 15772 deletions
+1
View File
@@ -2,6 +2,7 @@ version: "2"
linters:
default: all
disable:
- goconst # has become too noisy. Disabled
- depguard
- funlen
- gomoddirectives
+2 -2
View File
@@ -4,12 +4,12 @@
| Total Contributors | Total Contributions |
| --- | --- |
| 40 | 234 |
| 40 | 239 |
| Username | All Time Contribution Count | All Commits |
| --- | --- | --- |
| @casualjim | 88 | <https://github.com/go-openapi/strfmt/commits?author=casualjim> |
| @fredbi | 66 | <https://github.com/go-openapi/strfmt/commits?author=fredbi> |
| @fredbi | 71 | <https://github.com/go-openapi/strfmt/commits?author=fredbi> |
| @youyuanwu | 13 | <https://github.com/go-openapi/strfmt/commits?author=youyuanwu> |
| @jlambatl | 9 | <https://github.com/go-openapi/strfmt/commits?author=jlambatl> |
| @GlenDC | 5 | <https://github.com/go-openapi/strfmt/commits?author=GlenDC> |
+8
View File
@@ -1978,6 +1978,14 @@ func (r *Password) DeepCopy() *Password {
}
func isRequestURI(rawurl string) bool {
// url.ParseRequestURI assumes the input contains no "#fragment"
// (RFC 3986 §3.5). A URI with a fragment and an empty path, such as
// "https://host#@frag", is therefore misread as userinfo and rejected
// as "invalid userinfo". Strip the fragment first so the absolute
// request URI validates, matching url.Parse's RFC 3986 handling.
if i := strings.IndexByte(rawurl, '#'); i >= 0 {
rawurl = rawurl[:i]
}
_, err := url.ParseRequestURI(rawurl)
return err == nil
}