Skip to content

Commit

Permalink
fix(deps): update module github.com/open-feature/go-sdk-contrib/tests…
Browse files Browse the repository at this point in the history
…/flagd to v1.3.1 (#760)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/open-feature/go-sdk-contrib/tests/flagd](https://github.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>
  • Loading branch information
renovate[bot] and toddbaert committed Oct 13, 2023
1 parent 8a4de03 commit 30dda72
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion flagd/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions flagd/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Expand Down
7 changes: 5 additions & 2 deletions flagd/tests/integration/evaluation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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"},
Expand Down
7 changes: 5 additions & 2 deletions flagd/tests/integration/json_evaluator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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"},
Expand Down

0 comments on commit 30dda72

Please sign in to comment.