Skip to content

Commit f26de40

Browse files
Bump kotlin sdk to 1.3.28 (#128)
1 parent c380549 commit f26de40

7 files changed

Lines changed: 17 additions & 9 deletions

File tree

.github/scripts/run_embedded_e2e_shard.sh

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,13 @@ run_with_retries() {
8585
echo "::warning::Patrol attempt $((attempt - 1)) failed; retrying ($attempt/$MAX_RETRIES)..."
8686
recover_between_retries
8787
fi
88-
set +e
89-
run_patrol "${patrol_args[@]}"
90-
status=$?
91-
set -e
88+
# `|| status=$?` keeps errexit from killing the script when run_patrol
89+
# returns non-zero. `set +e` alone is unsafe here: run_patrol toggles
90+
# errexit internally and leaves it ON before `return 77`, so by the time
91+
# control returns to this line errexit is back on and bash exits before
92+
# `status=$?` runs — masking flakes as fatal failures and skipping retries.
93+
status=0
94+
run_patrol "${patrol_args[@]}" || status=$?
9295
if [[ "$status" -eq 0 ]]; then
9396
return 0
9497
fi

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v1.0.46
2+
Bump frontegg-android-kotlin version to 1.3.28.
3+
- Trust server tenant on fresh login instead of stale cache.
4+
- Gate `AndroidDebugConfigurationChecker` on host app debuggable flag.
5+
16
## v1.0.45
27
Bump frontegg-android-kotlin sdk to 1.3.27.
38

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ dependencies {
6666
testImplementation 'org.jetbrains.kotlin:kotlin-test'
6767
testImplementation 'org.mockito:mockito-core:5.0.0'
6868

69-
implementation 'com.frontegg.sdk:android:1.3.27'
69+
implementation 'com.frontegg.sdk:android:1.3.28'
7070
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3'
7171

7272
implementation 'androidx.core:core-ktx:1.10.0'

application_id/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,5 @@ flutter {
128128

129129
dependencies {
130130
androidTestUtil "androidx.test:orchestrator:1.5.1"
131-
implementation 'com.frontegg.sdk:android:1.3.27'
131+
implementation 'com.frontegg.sdk:android:1.3.28'
132132
}

embedded/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,5 @@ flutter {
128128

129129
dependencies {
130130
androidTestUtil "androidx.test:orchestrator:1.5.1"
131-
implementation 'com.frontegg.sdk:android:1.3.27'
131+
implementation 'com.frontegg.sdk:android:1.3.28'
132132
}

hosted/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,5 @@ flutter {
124124

125125
dependencies {
126126
androidTestUtil "androidx.test:orchestrator:1.5.1"
127-
implementation 'com.frontegg.sdk:android:1.3.27'
127+
implementation 'com.frontegg.sdk:android:1.3.28'
128128
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: frontegg_flutter
22
description: Flutter package for Frontegg services
3-
version: 1.0.45
3+
version: 1.0.46
44
homepage: https://github.com/frontegg/frontegg-flutter
55
#publish_to: "https://pub.dartlang.org"
66

0 commit comments

Comments
 (0)