Skip to content

Commit 4b42608

Browse files
committed
Merge branch 'main' into feat/update_testharness_to_launchpad
Signed-off-by: Simon Schrottner <simon.schrottner@dynatrace.com>
2 parents c84c0de + 142560f commit 4b42608

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[submodule "providers/flagd/test-harness"]
55
path = providers/flagd/test-harness
66
url = https://github.com/open-feature/test-harness.git
7-
branch = v1.3.2
7+
branch = v1.3.3
88
[submodule "providers/flagd/spec"]
99
path = providers/flagd/spec
1010
url = https://github.com/open-feature/spec.git

providers/flagd/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<properties>
1616
<!-- exclusion expression for e2e tests -->
1717
<testExclusions>**/e2e/*.java</testExclusions>
18-
<io.grpc.version>1.69.1</io.grpc.version>
18+
<io.grpc.version>1.70.0</io.grpc.version>
1919
<!-- caution - updating this will break compatibility with older protobuf-java versions -->
20-
<protobuf-java.min.version>3.25.5</protobuf-java.min.version>
20+
<protobuf-java.min.version>3.25.6</protobuf-java.min.version>
2121
</properties>
2222

2323
<name>flagd</name>
@@ -122,13 +122,13 @@
122122
<dependency>
123123
<groupId>org.semver4j</groupId>
124124
<artifactId>semver4j</artifactId>
125-
<version>5.5.0</version>
125+
<version>5.6.0</version>
126126
</dependency>
127127

128128
<dependency>
129129
<groupId>commons-codec</groupId>
130130
<artifactId>commons-codec</artifactId>
131-
<version>1.17.2</version>
131+
<version>1.18.0</version>
132132
</dependency>
133133

134134
<dependency>

providers/flagd/src/test/java/dev/openfeature/contrib/providers/flagd/e2e/steps/ProviderSteps.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public void tearDown() {
7171
@Given("a {} flagd provider")
7272
public void setupProvider(String providerType) throws IOException, InterruptedException {
7373
String flagdConfig = "default";
74-
state.builder.deadline(500).keepAlive(0).retryGracePeriod(1);
74+
state.builder.deadline(500).keepAlive(0).retryGracePeriod(2);
7575
boolean wait = true;
7676
switch (providerType) {
7777
case "unavailable":

providers/flagd/test-harness

providers/go-feature-flag/src/main/java/dev/openfeature/contrib/providers/gofeatureflag/hook/DataCollectorHook.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public void after(HookContext ctx, FlagEvaluationDetails details, Map hints) {
6262
.variation(details.getVariant())
6363
.value(details.getValue())
6464
.userKey(ctx.getCtx().getTargetingKey())
65-
.creationDate(System.currentTimeMillis())
65+
.creationDate(System.currentTimeMillis() / 1000L)
6666
.build();
6767
eventsPublisher.add(event);
6868
}
@@ -73,7 +73,7 @@ public void error(HookContext ctx, Exception error, Map hints) {
7373
.key(ctx.getFlagKey())
7474
.kind("feature")
7575
.contextKind(GoFeatureFlagUser.isAnonymousUser(ctx.getCtx()) ? "anonymousUser" : "user")
76-
.creationDate(System.currentTimeMillis())
76+
.creationDate(System.currentTimeMillis() / 1000L)
7777
.defaultValue(true)
7878
.variation("SdkDefault")
7979
.value(ctx.getDefaultValue())

providers/unleash/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>io.getunleash</groupId>
2222
<artifactId>unleash-client-java</artifactId>
23-
<version>9.2.6</version>
23+
<version>9.3.1</version>
2424
</dependency>
2525

2626
<dependency>

0 commit comments

Comments
 (0)