v5.0.0
What's Changed
- bump version by @typotter in #99
- Bump org.jetbrains:annotations from 26.0.1 to 26.0.2 by @dependabot in #101
- feat: update to latest common for new methods, major bump by @typotter in #104
- chore: rename apiKey to sdkKey for consistency by @typotter in #105
- chore: v5.0.0 release prep by @typotter in #106
Breaking Changes in this release
EppoClient.stopPolling
// This method has been removed
//EppoClient.stopPolling();
// use this instead
getInstance().stopPolling();
// If you are unsure whether the EppoClient has been initialized when you wish to call stopPolling, try-catch:
try {
EppoClient.getInstance().stopPolling();
} catch (IllegalStateException ex) {
// pass: Indicates that the singleton Eppo Client has not yet been initialized.
}
EppoClient.Builder()
// Old way to build
EppoClient eppoClient = new EppoClient.Builder().apiKey(sdkKey).buildAndInit();
// Builder is now created via static method that takes the required sdkKey
EppoClient eppoClient = EppoClient.builder(sdkKey).buildAndInit();
Full Changelog: v4.0.0...v5.0.0