Skip to content
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

Update dependencies #496

Merged
merged 1 commit into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion codegen/json.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ func JSON(pkg string, debug bool) ([]byte, error) {
}

func runCmd(path, dir string, args ...string) (string, error) {
_ = os.Setenv("GO111MODULE", "on")
args = append([]string{path}, args...) // args[0] becomes exec path
c := exec.Cmd{Path: path, Args: args, Dir: dir}
b, err := c.CombinedOutput()
Expand Down
3 changes: 2 additions & 1 deletion dsl/design.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ func AddImpliedRelationships() {
// identify group of elements that should be rendered together for example.
//
// Tag may appear in Person, SoftwareSystem, Container, Component,
// DeploymentNode, InfrastructureNode, ContainerInstance.
// DeploymentNode, InfrastructureNode, ContainerInstance, Uses, InteractsWith or
// Delivers.
//
// Tag accepts the set of tag values as argument. Tag may appear multiple times
// in the same expression in which case the tags accumulate.
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module goa.design/model

go 1.17
go 1.21

require (
github.com/fsnotify/fsnotify v1.6.0
Expand All @@ -14,7 +14,7 @@ require (
github.com/AnatolyRugalev/goregen v0.1.0 // indirect
github.com/dimfeld/httppath v0.0.0-20170720192232-ee938bf73598 // indirect
github.com/dimfeld/httptreemux/v5 v5.5.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/google/uuid v1.3.1 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/manveru/faker v0.0.0-20171103152722-9fbc68a78c4d // indirect
github.com/sergi/go-diff v1.3.1 // indirect
Expand Down
Loading