Skip to content

Commit 936287f

Browse files
author
George Vine
committed
BUG/MEDIUM: support multiple ignore-persist statements in backends
1 parent e3695b7 commit 936287f

File tree

4 files changed

+298
-106
lines changed

4 files changed

+298
-106
lines changed

embedded_spec.go

Lines changed: 168 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ require (
1313
github.com/dustinkirkland/golang-petname v0.0.0-20231002161417-6a283f1aaaf2
1414
github.com/fsnotify/fsnotify v1.7.0
1515
github.com/getkin/kin-openapi v0.123.0
16-
github.com/go-openapi/errors v0.21.0
17-
github.com/go-openapi/loads v0.21.5
16+
github.com/go-openapi/errors v0.22.0
17+
github.com/go-openapi/loads v0.22.0
1818
github.com/go-openapi/runtime v0.27.1
19-
github.com/go-openapi/spec v0.20.14
20-
github.com/go-openapi/strfmt v0.22.0
21-
github.com/go-openapi/swag v0.22.9
22-
github.com/go-openapi/validate v0.23.0
19+
github.com/go-openapi/spec v0.21.0
20+
github.com/go-openapi/strfmt v0.23.0
21+
github.com/go-openapi/swag v0.23.0
22+
github.com/go-openapi/validate v0.24.0
2323
github.com/google/renameio v1.0.1
2424
github.com/google/uuid v1.6.0
25-
github.com/haproxytech/client-native/v5 v5.0.6
26-
github.com/haproxytech/config-parser/v5 v5.1.1-0.20240221073837-5b782186def2
25+
github.com/haproxytech/client-native/v5 v5.0.7
26+
github.com/haproxytech/config-parser/v5 v5.1.4
2727
github.com/jessevdk/go-flags v1.5.0
2828
github.com/json-iterator/go v1.1.12
2929
github.com/lestrrat-go/apache-logformat v0.0.0-20210106032603-24d066f940f8
@@ -32,9 +32,9 @@ require (
3232
github.com/rubyist/circuitbreaker v2.2.1+incompatible
3333
github.com/shirou/gopsutil v3.21.11+incompatible
3434
github.com/sirupsen/logrus v1.9.3
35-
github.com/stretchr/testify v1.8.4
35+
github.com/stretchr/testify v1.9.0
3636
golang.org/x/net v0.21.0
37-
golang.org/x/sys v0.18.0
37+
golang.org/x/sys v0.19.0
3838
gopkg.in/yaml.v2 v2.4.0
3939
)
4040

@@ -54,9 +54,9 @@ require (
5454
github.com/davecgh/go-spew v1.1.1 // indirect
5555
github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect
5656
github.com/go-ole/go-ole v1.3.0 // indirect
57-
github.com/go-openapi/analysis v0.22.2 // indirect
58-
github.com/go-openapi/jsonpointer v0.20.2 // indirect
59-
github.com/go-openapi/jsonreference v0.20.4 // indirect
57+
github.com/go-openapi/analysis v0.23.0 // indirect
58+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
59+
github.com/go-openapi/jsonreference v0.21.0 // indirect
6060
github.com/gofrs/flock v0.8.1 // indirect
6161
github.com/google/go-cmp v0.6.0 // indirect
6262
github.com/haproxytech/go-logger v1.1.0 // indirect
@@ -78,7 +78,7 @@ require (
7878
github.com/tklauser/go-sysconf v0.3.13 // indirect
7979
github.com/tklauser/numcpus v0.7.0 // indirect
8080
github.com/yusufpapurcu/wmi v1.2.4 // indirect
81-
go.mongodb.org/mongo-driver v1.13.1 // indirect
81+
go.mongodb.org/mongo-driver v1.15.0 // indirect
8282
golang.org/x/sync v0.6.0 // indirect
8383
gopkg.in/yaml.v3 v3.0.1 // indirect
8484
)

0 commit comments

Comments
 (0)