-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: bump common API version to 3.3.1 #79
Conversation
d8a38fa
to
1d4dca4
Compare
1d4dca4
to
3ef59d0
Compare
build.gradle
Outdated
@@ -31,7 +31,7 @@ repositories { | |||
|
|||
dependencies { | |||
// Re-export classes and interfaces that will be used upstream | |||
api 'cloud.eppo:sdk-common-jvm:3.0.2' | |||
api 'cloud.eppo:sdk-common-jvm:3.2.0-SNAPSHOT' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using snapshot until release is cut/pushed
@@ -276,7 +276,7 @@ private void uninitClient() { | |||
private void initBuggyClient() { | |||
try { | |||
EppoClient eppoClient = initClient(DUMMY_FLAG_API_KEY); | |||
Field configurationStoreField = BaseEppoClient.class.getDeclaredField("requestor"); | |||
Field configurationStoreField = BaseEppoClient.class.getDeclaredField("configurationStore"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
base implementation changed to access config only through the store.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for sneaking this one in!
@@ -125,6 +139,12 @@ public Builder host(String host) { | |||
return this; | |||
} | |||
|
|||
/** Sets the initial configuration for the client. */ | |||
public Builder initialConfiguration(CompletableFuture<Configuration> initialConfiguration) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔥
Obviously don't merge & release until common is published and tests pass here 😛 |
Picks up latest from common package.