forked from pingcap/errcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from gregwebs/goa-upgrade
upgrade errcode and errors
- Loading branch information
Showing
5 changed files
with
37 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
module github.com/gregwebs/errcode/goa | ||
|
||
go 1.18 | ||
go 1.23.3 | ||
|
||
require ( | ||
github.com/gregwebs/errcode v0.11.0 | ||
github.com/gregwebs/errors v1.0.0 | ||
github.com/gregwebs/errcode v0.30.0 | ||
github.com/gregwebs/errors v1.40.1 | ||
goa.design/goa/v3 v3.10.0 | ||
) | ||
|
||
require ( | ||
github.com/dimfeld/httptreemux/v5 v5.4.0 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/gregwebs/errors/errwrap v0.1.1 // indirect | ||
github.com/gregwebs/errors/slogerr v0.1.1 // indirect | ||
github.com/gregwebs/stackfmt v0.1.1 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.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
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,15 +1,18 @@ | ||
module github.com/gregwebs/errcode/grpc | ||
|
||
require ( | ||
github.com/gregwebs/errcode v0.11.0 | ||
github.com/gregwebs/errors v1.0.0 | ||
github.com/gregwebs/errcode v0.30.0 | ||
github.com/gregwebs/errors v1.40.1 | ||
google.golang.org/grpc v1.58.2 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/gregwebs/errors/errwrap v0.1.1 // indirect | ||
github.com/gregwebs/errors/slogerr v0.1.1 // indirect | ||
github.com/gregwebs/stackfmt v0.1.1 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
) | ||
|
||
go 1.18 | ||
go 1.23.3 |
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