Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
859df60
Add flagSets constructor to SplitSyncConfig
gthea Nov 2, 2023
1126d81
Add to SplitConfiguration
gthea Nov 2, 2023
d31b9f7
New evaluation methods in platform
gthea Nov 2, 2023
34da305
Change toString implementation of split_result
gthea Nov 2, 2023
3b0e582
defaultTreatment in SplitView
gthea Nov 2, 2023
f8a5060
Add sets to SplitView
gthea Nov 2, 2023
9e32952
Revert
gthea Nov 2, 2023
5973f3b
Update SplitResult.toString to display null values differently (#88)
vincevargadev Nov 2, 2023
c91c179
Add flagSets constructor to SplitSyncConfig (#89)
gthea Nov 3, 2023
05868d9
New evaluation methods in platform (#90)
gthea Nov 3, 2023
ee2997a
SplitView new properties (#91)
gthea Nov 3, 2023
bec7cc7
Dev pubspec
gthea Nov 3, 2023
d3eeae5
New evaluation methods in SplitClient
gthea Nov 3, 2023
6fd9433
Update android-client to 3.4.0
gthea Nov 3, 2023
84aa0c3
Evaluation & config in Android
gthea Nov 3, 2023
8e7c44b
New evaluation methods in SplitClient (#92)
gthea Nov 7, 2023
4e3e16b
Android implementation (#93)
gthea Nov 7, 2023
f2c04c5
iOS evaluation methods & config
gthea Nov 7, 2023
53025df
Podfile
gthea Nov 7, 2023
4a7c39b
New method parsing for Android
gthea Nov 7, 2023
f2ec3e9
refactor'
gthea Nov 7, 2023
c7beb5a
Minor fix
gthea Nov 7, 2023
74e5a50
Fix test
gthea Nov 7, 2023
42d7677
iOS evaluation methods & config
gthea Nov 7, 2023
59ed4fa
Podfile
gthea Nov 7, 2023
9d1fe13
New methods parsing in iOS; new fields in SplitView
gthea Nov 8, 2023
d54592b
Merge branch 'sets_7' of github.com:splitio/flutter-sdk-plugin into s…
gthea Nov 8, 2023
2dc062a
Merge branch 'sets_7' into sets_8
gthea Nov 8, 2023
26adc98
Add missing platform tests
gthea Nov 8, 2023
7e0c2a2
Fix tests
gthea Nov 8, 2023
d1b1744
Missing tests
gthea Nov 8, 2023
10d9e40
Merge branch 'sets_8' into sets_9
gthea Nov 8, 2023
3a37130
Fix
gthea Nov 8, 2023
681dd0d
Merge branch 'sets_7' into sets_8
gthea Nov 8, 2023
4f784e3
Merge branch 'sets_8' into sets_9
gthea Nov 8, 2023
c4a99de
Fix test
gthea Nov 8, 2023
df76a6f
Merge branch 'sets_7' into sets_8
gthea Nov 8, 2023
f3c5a64
Merge branch 'sets_8' into sets_9
gthea Nov 8, 2023
4a0b067
Changes
gthea Nov 9, 2023
af1c1c2
Update splitio_platform_interface
gthea Nov 9, 2023
e23f8af
Update splitio_android
gthea Nov 9, 2023
319a1c4
Update splitio_ios
gthea Nov 9, 2023
3c358b6
Update splitio
gthea Nov 9, 2023
54b061a
Merge branch 'development' into release_0.1.7-rc.1
gthea Nov 9, 2023
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
2 changes: 2 additions & 0 deletions splitio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# 0.1.7-rc.1 (Nov 9, 2023)

# 0.1.6 (Aug 15, 2023)

* Added `readyTimeout` configuration option. If the SDK is not ready after the amount of time (in seconds) specified by this option, the `whenTimeout` future of the client will be completed. Defaults to 10 seconds. A negative value means no timeout.
Expand Down
11 changes: 4 additions & 7 deletions splitio/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: splitio
description: Official plugin for split.io, the platform for controlled rollouts, which serves features to your users via feature flags to manage your complete customer experience.
version: 0.1.6
version: 0.1.7-rc.1
homepage: https://split.io/
repository: https://github.com/splitio/flutter-sdk-plugin/tree/main/splitio/

Expand All @@ -19,12 +19,9 @@ flutter:
dependencies:
flutter:
sdk: flutter
splitio_android: #^0.1.6
path: ../splitio_android
splitio_ios: #^0.1.6
path: ../splitio_ios
splitio_platform_interface: #^1.3.0
path: ../splitio_platform_interface
splitio_android: ^0.1.7-rc.1
splitio_ios: ^0.1.7-rc.1
splitio_platform_interface: ^1.4.0-rc.1

dev_dependencies:
flutter_test:
Expand Down
2 changes: 2 additions & 0 deletions splitio_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# 0.1.7-rc.1 (Nov 9, 2023)

# 0.1.6 (Aug 15, 2023)

* Added `readyTimeout` configuration option.
Expand Down
5 changes: 2 additions & 3 deletions splitio_android/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: splitio_android
description: The official Android implementation of splitio Flutter plugin.
repository: https://github.com/splitio/flutter-sdk-plugin/tree/main/splitio_android
version: 0.1.6
version: 0.1.7-rc.1

environment:
sdk: ">=2.16.2 <4.0.0"
Expand All @@ -19,8 +19,7 @@ flutter:
dependencies:
flutter:
sdk: flutter
splitio_platform_interface: #^1.3.0
path: ../splitio_platform_interface
splitio_platform_interface: ^1.4.0-rc.1

dev_dependencies:
flutter_test:
Expand Down
2 changes: 2 additions & 0 deletions splitio_ios/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# 0.1.7-rc.1 (Nov 9, 2023)

# 0.1.6 (Aug 15, 2023)

* Added `readyTimeout` configuration option.
Expand Down
5 changes: 2 additions & 3 deletions splitio_ios/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: splitio_ios
description: The official iOS implementation of splitio Flutter plugin.
repository: https://github.com/splitio/flutter-sdk-plugin/tree/main/splitio_ios
version: 0.1.6
version: 0.1.7-rc.1

environment:
sdk: ">=2.16.2 <4.0.0"
Expand All @@ -18,8 +18,7 @@ flutter:
dependencies:
flutter:
sdk: flutter
splitio_platform_interface: #^1.3.0
path: ../splitio_platform_interface
splitio_platform_interface: ^1.4.0-rc.1

dev_dependencies:
flutter_test:
Expand Down
2 changes: 2 additions & 0 deletions splitio_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# 1.4.0-rc.1 (Nov 9, 2023)

# 1.3.0 (Aug 15, 2023)

* Added `readyTimeout` configuration option.
Expand Down
2 changes: 1 addition & 1 deletion splitio_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: splitio_platform_interface
description: A common platform interface for the splitio plugin.
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 1.3.0
version: 1.4.0-rc.1
repository: https://github.com/splitio/flutter-sdk-plugin/tree/main/splitio_platform_interface

environment:
Expand Down