-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade Go version to 1.20.2, alpine to 3.17 and other dependencies
- Loading branch information
1 parent
901beb5
commit dc1caa7
Showing
5 changed files
with
64 additions
and
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,39 @@ | ||
module github.com/quiq/docker-registry-ui | ||
|
||
require ( | ||
github.com/CloudyKit/fastprinter v0.0.0-20200109182630-33d98a066a53 // indirect | ||
github.com/CloudyKit/jet v2.1.3-0.20180809161101-62edd43e4f88+incompatible | ||
github.com/elazarl/goproxy v0.0.0-20220529153421-8ea89ba92021 // indirect | ||
github.com/go-sql-driver/mysql v1.6.0 | ||
github.com/labstack/echo/v4 v4.8.0 | ||
github.com/mattn/go-sqlite3 v1.14.15 | ||
github.com/go-sql-driver/mysql v1.7.0 | ||
github.com/labstack/echo/v4 v4.10.2 | ||
github.com/mattn/go-sqlite3 v1.14.16 | ||
github.com/parnurzeal/gorequest v0.2.16 | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/robfig/cron v1.2.0 | ||
github.com/sirupsen/logrus v1.9.0 | ||
github.com/smartystreets/goconvey v1.7.2 | ||
github.com/tidwall/gjson v1.14.3 | ||
github.com/tidwall/gjson v1.14.4 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
require ( | ||
github.com/CloudyKit/fastprinter v0.0.0-20200109182630-33d98a066a53 // indirect | ||
github.com/elazarl/goproxy v0.0.0-20220529153421-8ea89ba92021 // indirect | ||
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 // indirect | ||
github.com/jtolds/gls v4.20.0+incompatible // indirect | ||
github.com/labstack/gommon v0.4.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/smartystreets/assertions v1.2.0 // indirect | ||
github.com/tidwall/match v1.1.1 // indirect | ||
github.com/tidwall/pretty v1.2.0 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.2 // indirect | ||
golang.org/x/crypto v0.6.0 // indirect | ||
golang.org/x/net v0.7.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
golang.org/x/time v0.3.0 // indirect | ||
moul.io/http2curl v1.0.0 // indirect | ||
) | ||
|
||
go 1.15 | ||
go 1.19 |
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,3 +1,3 @@ | ||
package main | ||
|
||
const version = "0.9.5" | ||
const version = "0.9.6" |