-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies and enhance lint script
Upgrade various modules including go.opentelemetry to v1.32.0 and fasthttp to v1.57.0. Add `--path-prefix` and `--fix` to golangci-lint command in cleanup script for better code linting and auto-fix support.
- Loading branch information
Showing
5 changed files
with
46 additions
and
30 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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,26 +1,28 @@ | ||
module github.com/clubpay/ronykit/std/gateways/fasthttp | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
toolchain go1.22.5 | ||
|
||
require ( | ||
github.com/clubpay/ronykit/kit v0.17.19 | ||
github.com/fasthttp/router v1.5.2 | ||
github.com/fasthttp/websocket v1.5.10 | ||
github.com/goccy/go-reflect v1.2.0 | ||
github.com/valyala/bytebufferpool v1.0.0 | ||
github.com/valyala/fasthttp v1.56.0 | ||
github.com/valyala/fasthttp v1.57.0 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.1.0 // indirect | ||
github.com/andybalholm/brotli v1.1.1 // indirect | ||
github.com/goccy/go-json v0.10.3 // indirect | ||
github.com/jedib0t/go-pretty/v6 v6.6.1 // indirect | ||
github.com/klauspost/compress v1.17.9 // indirect | ||
github.com/klauspost/compress v1.17.11 // indirect | ||
github.com/mattn/go-runewidth v0.0.15 // indirect | ||
github.com/rivo/uniseg v0.4.3 // indirect | ||
github.com/savsgio/gotils v0.0.0-20240704082632-aef3928b8a38 // indirect | ||
github.com/valyala/tcplisten v1.0.0 // indirect | ||
golang.org/x/net v0.29.0 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
golang.org/x/net v0.30.0 // indirect | ||
golang.org/x/sys v0.26.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains 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