diff options
author | 2024-11-25 16:15:33 +0100 | |
---|---|---|
committer | 2024-11-25 16:15:33 +0100 | |
commit | c454b1b4882389122964c75d7d764b51312743f7 (patch) | |
tree | 919fafe8c2983a54d7e48371c7bfc7d494073df7 /vendor/github.com | |
parent | [docs] Added note to documentation about mutuals-only posts not being functio... (diff) | |
download | gotosocial-c454b1b4882389122964c75d7d764b51312743f7.tar.xz |
[chore] Bump tooling versions, bump go -> v1.23.0 (#3258)
* [chore] Bump tooling versions, bump go -> v1.23.0
* undo silly change
* sign
* bump go version in go.mod
* allow overflow in imaging
* goreleaser deprecation notices
* bump versions
* undo accidental rebase change
* update container versions to just use latest major version
* update swagger to our release with go1.23 fix
* update goreleaser to use our vendored swagger version
---------
Co-authored-by: kim <grufwub@gmail.com>
Diffstat (limited to 'vendor/github.com')
-rw-r--r-- | vendor/github.com/go-swagger/go-swagger/codescan/schema.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/github.com/go-swagger/go-swagger/codescan/schema.go b/vendor/github.com/go-swagger/go-swagger/codescan/schema.go index dce74fc30..98bdecba6 100644 --- a/vendor/github.com/go-swagger/go-swagger/codescan/schema.go +++ b/vendor/github.com/go-swagger/go-swagger/codescan/schema.go @@ -303,6 +303,8 @@ func (s *schemaBuilder) buildFromType(tpe types.Type, tgt swaggerTypable) error } switch titpe := tpe.(type) { + case *types.Alias: + return nil // resolves panic case *types.Basic: return swaggerSchemaForType(titpe.String(), tgt) case *types.Pointer: |