-
-
Notifications
You must be signed in to change notification settings - Fork 234
fix: dependency upgrades, fixes #569 #601
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,66 +1,69 @@ | ||
| module github.com/danielgtaylor/huma/v2 | ||
|
|
||
| go 1.21 | ||
| go 1.22 | ||
|
|
||
| toolchain go1.22.0 | ||
|
|
||
| require ( | ||
| github.com/danielgtaylor/shorthand/v2 v2.2.0 | ||
| github.com/evanphx/json-patch/v5 v5.9.0 | ||
| github.com/fxamacker/cbor/v2 v2.6.0 | ||
| github.com/gin-gonic/gin v1.9.1 | ||
| github.com/go-chi/chi/v5 v5.0.12 | ||
| github.com/fxamacker/cbor/v2 v2.7.0 | ||
| github.com/gin-gonic/gin v1.10.0 | ||
| github.com/go-chi/chi/v5 v5.1.0 | ||
| github.com/gofiber/fiber/v2 v2.52.5 | ||
| github.com/google/uuid v1.6.0 | ||
| github.com/gorilla/mux v1.8.1 | ||
| github.com/julienschmidt/httprouter v1.3.0 | ||
| github.com/labstack/echo/v4 v4.11.4 | ||
| github.com/spf13/cobra v1.8.0 | ||
| github.com/labstack/echo/v4 v4.12.0 | ||
| github.com/spf13/cobra v1.8.1 | ||
| github.com/stretchr/testify v1.9.0 | ||
| github.com/uptrace/bunrouter v1.0.21 | ||
| github.com/uptrace/bunrouter v1.0.22 | ||
| ) | ||
|
|
||
| require ( | ||
| github.com/andybalholm/brotli v1.1.0 // indirect | ||
| github.com/bytedance/sonic v1.11.2 // indirect | ||
| github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect | ||
| github.com/chenzhuoyu/iasm v0.9.1 // indirect | ||
| github.com/bytedance/sonic v1.12.3 // indirect | ||
| github.com/bytedance/sonic/loader v0.2.0 // indirect | ||
| github.com/cloudwego/base64x v0.1.4 // indirect | ||
| github.com/cloudwego/iasm v0.2.0 // indirect | ||
| github.com/danielgtaylor/mexpr v1.9.0 // indirect | ||
| github.com/davecgh/go-spew v1.1.1 // indirect | ||
| github.com/gabriel-vasile/mimetype v1.4.3 // indirect | ||
| github.com/gabriel-vasile/mimetype v1.4.5 // indirect | ||
| github.com/gin-contrib/sse v0.1.0 // indirect | ||
| github.com/go-playground/locales v0.14.1 // indirect | ||
| github.com/go-playground/universal-translator v0.18.1 // indirect | ||
| github.com/go-playground/validator/v10 v10.18.0 // indirect | ||
| github.com/goccy/go-json v0.10.2 // indirect | ||
| github.com/go-playground/validator/v10 v10.22.1 // indirect | ||
| github.com/goccy/go-json v0.10.3 // indirect | ||
| github.com/google/go-cmp v0.6.0 // indirect | ||
| github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
| github.com/json-iterator/go v1.1.12 // indirect | ||
| github.com/klauspost/compress v1.17.7 // indirect | ||
| github.com/klauspost/cpuid/v2 v2.2.7 // indirect | ||
| github.com/klauspost/compress v1.17.10 // indirect | ||
| github.com/klauspost/cpuid/v2 v2.2.8 // indirect | ||
| github.com/kr/pretty v0.3.1 // indirect | ||
| github.com/labstack/gommon v0.4.2 // indirect | ||
| github.com/leodido/go-urn v1.4.0 // indirect | ||
| github.com/mattn/go-colorable v0.1.13 // indirect | ||
| github.com/mattn/go-isatty v0.0.20 // indirect | ||
| github.com/mattn/go-runewidth v0.0.15 // indirect | ||
| github.com/mattn/go-runewidth v0.0.16 // indirect | ||
| github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
| github.com/modern-go/reflect2 v1.0.2 // indirect | ||
| github.com/pelletier/go-toml/v2 v2.1.1 // indirect | ||
| github.com/pelletier/go-toml/v2 v2.2.3 // indirect | ||
| github.com/pkg/errors v0.9.1 // indirect | ||
| github.com/pmezard/go-difflib v1.0.0 // indirect | ||
| github.com/rivo/uniseg v0.4.7 // indirect | ||
| github.com/spf13/pflag v1.0.5 // indirect | ||
| github.com/twitchyliquid64/golang-asm v0.15.1 // indirect | ||
| github.com/ugorji/go/codec v1.2.12 // indirect | ||
| github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
| github.com/valyala/fasthttp v1.52.0 // indirect | ||
| github.com/valyala/fasthttp v1.56.0 // indirect | ||
| github.com/valyala/fasttemplate v1.2.2 // indirect | ||
| github.com/valyala/tcplisten v1.0.0 // indirect | ||
| github.com/x448/float16 v0.8.4 // indirect | ||
| golang.org/x/arch v0.7.0 // indirect | ||
| golang.org/x/crypto v0.21.0 // indirect | ||
| golang.org/x/net v0.23.0 // indirect | ||
| golang.org/x/sys v0.18.0 // indirect | ||
| golang.org/x/text v0.14.0 // indirect | ||
| google.golang.org/protobuf v1.33.0 // indirect | ||
| golang.org/x/arch v0.11.0 // indirect | ||
| golang.org/x/crypto v0.28.0 // indirect | ||
| golang.org/x/net v0.30.0 // indirect | ||
| golang.org/x/sys v0.26.0 // indirect | ||
| golang.org/x/text v0.19.0 // indirect | ||
| google.golang.org/protobuf v1.35.1 // indirect | ||
| gopkg.in/yaml.v3 v3.0.1 // indirect | ||
| ) | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.