fix(deps): update module github.com/open-feature/go-sdk-contrib/tests/flagd to v1.3.1 (#760)
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/open-feature/go-sdk-contrib/tests/flagd](https://togithub.com/open-feature/go-sdk-contrib) | require | patch | `v1.3.0` -> `v1.3.1` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-feature/flagd). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMS4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Signed-off-by: Todd Baert <todd.baert@dynatrace.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
This commit is contained in:
parent
8a4de03375
commit
30dda72145
|
|
@ -8,7 +8,7 @@ require (
|
|||
github.com/mattn/go-colorable v0.1.13
|
||||
github.com/open-feature/flagd/core v0.6.7
|
||||
github.com/open-feature/go-sdk-contrib/providers/flagd v0.1.17
|
||||
github.com/open-feature/go-sdk-contrib/tests/flagd v1.3.0
|
||||
github.com/open-feature/go-sdk-contrib/tests/flagd v1.3.1
|
||||
github.com/spf13/cobra v1.7.0
|
||||
github.com/spf13/viper v1.17.0
|
||||
go.uber.org/zap v1.26.0
|
||||
|
|
|
|||
|
|
@ -694,6 +694,8 @@ github.com/open-feature/go-sdk-contrib/providers/flagd v0.1.17 h1:Ivx0USjWI2iXq2
|
|||
github.com/open-feature/go-sdk-contrib/providers/flagd v0.1.17/go.mod h1:ndXCZtJ3xvUK/MQlyHcs8gwW1UQmVMhFGV+OgcUj9TQ=
|
||||
github.com/open-feature/go-sdk-contrib/tests/flagd v1.3.0 h1:XstvqjyOAo7s0no2z7R8kN1TrIRWzXtu867h0O+gzkk=
|
||||
github.com/open-feature/go-sdk-contrib/tests/flagd v1.3.0/go.mod h1:Hb/nrUmwLdo4j+r+WwdBR0jXFaVrKdbVOHaQgq6ra2A=
|
||||
github.com/open-feature/go-sdk-contrib/tests/flagd v1.3.1 h1:oGozIhxePSlE1mvJgWmbYgERHt7BlOFxKCoJgoP2dLI=
|
||||
github.com/open-feature/go-sdk-contrib/tests/flagd v1.3.1/go.mod h1:Hb/nrUmwLdo4j+r+WwdBR0jXFaVrKdbVOHaQgq6ra2A=
|
||||
github.com/open-feature/open-feature-operator v0.2.36 h1:dzyZh9JSIRvXkfpM9ynYplNk7vjQFLs9sd5aHhF48z4=
|
||||
github.com/open-feature/open-feature-operator v0.2.36/go.mod h1:nM7T4oGQukeGmcAFkQm0uwt8WFdDb5hYPjXkm7pHhX4=
|
||||
github.com/open-feature/schemas v0.2.8 h1:oA75hJXpOd9SFgmNI2IAxWZkwzQPUDm7Jyyh3q489wM=
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ import (
|
|||
"github.com/cucumber/godog"
|
||||
flagd "github.com/open-feature/go-sdk-contrib/providers/flagd/pkg"
|
||||
"github.com/open-feature/go-sdk-contrib/tests/flagd/pkg/integration"
|
||||
"github.com/open-feature/go-sdk/pkg/openfeature"
|
||||
)
|
||||
|
||||
func TestEvaluation(t *testing.T) {
|
||||
|
|
@ -25,8 +26,10 @@ func TestEvaluation(t *testing.T) {
|
|||
}
|
||||
|
||||
testSuite := godog.TestSuite{
|
||||
Name: name,
|
||||
ScenarioInitializer: integration.InitializeEvaluationScenario(providerOptions...),
|
||||
Name: name,
|
||||
ScenarioInitializer: integration.InitializeEvaluationScenario(func() openfeature.FeatureProvider {
|
||||
return flagd.NewProvider(providerOptions...)
|
||||
}),
|
||||
Options: &godog.Options{
|
||||
Format: "pretty",
|
||||
Paths: []string{"../../../spec/specification/assets/gherkin/evaluation.feature"},
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ import (
|
|||
"github.com/cucumber/godog"
|
||||
flagd "github.com/open-feature/go-sdk-contrib/providers/flagd/pkg"
|
||||
"github.com/open-feature/go-sdk-contrib/tests/flagd/pkg/integration"
|
||||
"github.com/open-feature/go-sdk/pkg/openfeature"
|
||||
)
|
||||
|
||||
func TestJsonEvaluator(t *testing.T) {
|
||||
|
|
@ -20,8 +21,10 @@ func TestJsonEvaluator(t *testing.T) {
|
|||
name := "flagd-json-evaluator.feature"
|
||||
|
||||
testSuite := godog.TestSuite{
|
||||
Name: name,
|
||||
ScenarioInitializer: integration.InitializeFlagdJsonScenario(providerOptions...),
|
||||
Name: name,
|
||||
ScenarioInitializer: integration.InitializeFlagdJsonScenario(func() openfeature.FeatureProvider {
|
||||
return flagd.NewProvider(providerOptions...)
|
||||
}),
|
||||
Options: &godog.Options{
|
||||
Format: "pretty",
|
||||
Paths: []string{"../../../test-harness/gherkin/flagd-json-evaluator.feature"},
|
||||
|
|
|
|||
Loading…
Reference in New Issue