Skip to content

Commit

Permalink
fix: exclude viper 1.18.0/1
Browse files Browse the repository at this point in the history
Signed-off-by: Valery Piashchynski <[email protected]>
  • Loading branch information
rustatian committed Dec 21, 2023
1 parent 5e961aa commit cfa3f4f
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 13 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@
**/target
**/plugins_dev.toml
.vscode
rr
rr
vx
26 changes: 16 additions & 10 deletions builder/templates/templateV2023.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,30 @@ module github.com/roadrunner-server/roadrunner/{{.ModuleVersion}}
go 1.21
toolchain go1.21.1
toolchain go1.21.5
require (
github.com/buger/goterm v1.0.4
github.com/dustin/go-humanize v1.0.1
github.com/joho/godotenv v1.5.1
github.com/olekukonko/tablewriter v0.0.5
github.com/spf13/cobra v1.7.0
github.com/spf13/viper v1.17.0
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.18.2
github.com/stretchr/testify v1.8.2
go.uber.org/automaxprocs v1.5.2
github.com/roadrunner-server/informer/v4 latest
github.com/roadrunner-server/resetter/v4 latest
github.com/roadrunner-server/config/v4 latest
go.uber.org/automaxprocs v1.5.2
github.com/roadrunner-server/informer/v4 latest
github.com/roadrunner-server/resetter/v4 latest
github.com/roadrunner-server/config/v4 latest
// Go module pseudo-version
{{range $v := .Entries}}{{$v.Module}} {{$v.PseudoVersion}}
{{end}}
// Go module pseudo-version
{{range $v := .Entries}}{{$v.Module}} {{$v.PseudoVersion}}
{{end}}
)
exclude (
github.com/spf13/viper v1.18.0
github.com/spf13/viper v1.18.1
go.temporal.io/api v1.26.1
)
replace (
Expand Down
4 changes: 2 additions & 2 deletions velox_rr_v2023.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build_args = [
]

[roadrunner]
ref = "v2023.3.7"
ref = "master"

[github]
[github.token]
Expand All @@ -18,7 +18,7 @@ ref = "v2023.3.7"
appLogger = { ref = "v4.2.1", owner = "roadrunner-server", repository = "app-logger" }
logger = { ref = "v4.2.4", owner = "roadrunner-server", repository = "logger" }
lock = { ref = "v4.5.2", owner = "roadrunner-server", repository = "lock" }
rpc = { ref = "v4.2.5", owner = "roadrunner-server", repository = "rpc" }
rpc = { ref = "v4.2.12", owner = "roadrunner-server", repository = "rpc" }

# CENTRIFUGE BROADCASTING PLATFORM
centrifuge = { ref = "v4.5.0", owner = "roadrunner-server", repository = "centrifuge" }
Expand Down

0 comments on commit cfa3f4f

Please sign in to comment.