Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/sonarqube.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
pull_request:
branches:
- '*'
push:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
5.5.0 (Jan 28, 2026)
- Added functionality to provide metadata alongside SDK update, ready and ready from cache events. Read more in our docs.
- Fixed issue in which TLS 1.2 was being forced for new connections.

5.4.2 (Oct 30, 2025)
- Added support for Fallback Treatments in LOCALHOST mode.

Expand Down
4 changes: 2 additions & 2 deletions api/src/main/java/io/split/android/client/SplitClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public interface SplitClient extends AttributesManager {
* <p>
* Example usage:
* <pre>{@code
* client.addEventListener(new SdkEventListener() {
* client.addEventListener(new SplitEventListener() {
* @Override
* public void onReady(SplitClient client, SdkReadyMetadata metadata) {
* Boolean initialCacheLoad = metadata.isInitialCacheLoad();
Expand All @@ -200,7 +200,7 @@ public interface SplitClient extends AttributesManager {
* @Override
* public void onUpdate(SplitClient client, SdkUpdateMetadata metadata) {
* SdkUpdateMetadata.Type type = metadata.getType(); // FLAGS_UPDATE or SEGMENTS_UPDATE
* List<String> names = metadata.getNames(); // updated flag/segment names
* List<String> names = metadata.getNames(); // updated flag names
* // Handle on background thread
* }
*
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply plugin: 'com.vanniktech.maven.publish'
apply from: "$rootDir/gradle/jacoco-root.gradle"

ext {
splitVersion = '5.5.0-rc7'
splitVersion = '5.5.0'
jacocoVersion = '0.8.8'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,9 @@ private void verify(SplitFactory factory, CountDownLatch readyLatch, List<SplitE
assertFalse(Json.fromJson(initialSegments.get(0).getSegmentList(), SegmentsChange.class).getSegments().isEmpty());
assertFalse(Json.fromJson(initialLargeSegments.get(0).getSegmentList(), SegmentsChange.class).getSegments().isEmpty());
assertEquals(8000L, initialChangeNumber);
assertEquals(0, finalSegments.size());
assertEquals(0, Json.fromJson(finalSegments.get(0).getSegmentList(), SegmentsChange.class).getSegments().size());
assertEquals(0, finalFlags.size());
assertEquals(0, finalLargeSegments.size());
assertEquals(0, Json.fromJson(finalLargeSegments.get(0).getSegmentList(), SegmentsChange.class).getSegments().size());
assertEquals(-1, finalChangeNumber);
assertTrue(0L < mRoomDb.generalInfoDao()
.getByName("rolloutCacheLastClearTimestamp").getLongValue());
Expand Down
Loading