Skip to content

Commit

Permalink
Merge pull request #319 from Countly/v24_4_1
Browse files Browse the repository at this point in the history
feat: new version 24.4.1
ArtursKadikis authored May 21, 2024
2 parents 5aad323 + e31238d commit d1a0e7f
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## 24.4.1
* ! Minor breaking change ! The "maxValueSize" limit will now be applied by default. This would limit the maximum size of developer-supplied values and breadcrumbs. The current limit is 256 characters.
* ! Minor breaking change ! The "maxKeyLength" limit will now be applied by default. This limit would limit the maximum length of developer-supplied keys and names. The current limit is 128 characters.
* ! Minor breaking change ! The "maxSegmentationValues" limit will now be applied by default. This limit would limit the maximum number of developer-provided segmentation values when using features. The current limit is 100 entries.
* ! Minor breaking change ! "maxStackTraceLinePerThread" and "maxStackTraceLineLength" limits will be applied by default now. This would limit the maximum lines of stack traces per thread and the maximum stack trace length, respectively. Default values are in order of 30 and 200.
* ! Minor breaking change ! Mitigated an issue where internal SDK limits did not apply

* Added a new function "setID(newDeviceId)" for managing device id changes according to the device ID Type.
* Added a new function "setID(newDeviceId)" which internally handles merge/non-merge selection while changing the device ID

* Mitigated an issue where the session duration could have been calculated wrongly after a device ID change without merge
* Mitigated an issue where a session could have continued after a device ID change without merge

## 24.4.0
* ! Minor breaking change ! If a manual session is already started, it will not be possible to call "BeginSession" without stopping the previous one
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ org.gradle.configureondemand=true
android.useAndroidX=true
android.enableJetifier=true
# RELEASE FIELD SECTION
VERSION_NAME=24.4.1-RC2
VERSION_NAME=24.4.1
GROUP=ly.count.android
POM_URL=https://github.com/Countly/countly-sdk-android
POM_SCM_URL=https://github.com/Countly/countly-sdk-android
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ public class TestUtils {
public final static String commonAppKey = "appkey";
public final static String commonDeviceId = "1234";
public final static String SDK_NAME = "java-native-android";
public final static String SDK_VERSION = "24.4.1-RC2";
public final static String SDK_VERSION = "24.4.1";
public static final int MAX_THREAD_COUNT_PER_STACK_TRACE = 50;

public static class Activity2 extends Activity {
2 changes: 1 addition & 1 deletion sdk/src/main/java/ly/count/android/sdk/Countly.java
Original file line number Diff line number Diff line change
@@ -47,7 +47,7 @@ of this software and associated documentation files (the "Software"), to deal
*/
public class Countly {

private final String DEFAULT_COUNTLY_SDK_VERSION_STRING = "24.4.1-RC2";
private final String DEFAULT_COUNTLY_SDK_VERSION_STRING = "24.4.1";

/**
* Used as request meta data on every request

0 comments on commit d1a0e7f

Please sign in to comment.