Skip to content

Commit 037d1fa

Browse files
authored
0.1.7 (#102)
1 parent b2c8595 commit 037d1fa

File tree

8 files changed

+35
-9
lines changed

8 files changed

+35
-9
lines changed

splitio/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 0.1.7 (Nov 9, 2023)
2+
* Added support for Flag Sets, which enables grouping feature flags and interacting with the group rather than individually (more details in our documentation):
3+
* Added new variations of the get treatment methods to support evaluating flags in given flag set/s.
4+
* getTreatmentsByFlagSet and getTreatmentsByFlagSets
5+
* getTreatmentWithConfigByFlagSets and getTreatmentsWithConfigByFlagSets
6+
* Added a new optional Split Filter configuration option. This allows the SDK and Split services to only synchronize the flags in the specified flag sets, avoiding unused or unwanted flags from being synced on the SDK instance, bringing all the benefits from a reduced payload.
7+
* Added `defaultTreatment` property to the `SplitView` object returned by the `split` and `splits` methods of the SDK manager.
8+
* Updated iOS SDK to `2.23.0`
9+
* Updated Android SDK to `3.4.0`
10+
111
# 0.1.7-rc.1 (Nov 9, 2023)
212

313
# 0.1.6 (Aug 15, 2023)

splitio/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: splitio
22
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.
3-
version: 0.1.7-rc.1
3+
version: 0.1.7
44
homepage: https://split.io/
55
repository: https://github.com/splitio/flutter-sdk-plugin/tree/main/splitio/
66

@@ -19,9 +19,9 @@ flutter:
1919
dependencies:
2020
flutter:
2121
sdk: flutter
22-
splitio_android: ^0.1.7-rc.1
23-
splitio_ios: ^0.1.7-rc.1
24-
splitio_platform_interface: ^1.4.0-rc.1
22+
splitio_android: ^0.1.7
23+
splitio_ios: ^0.1.7
24+
splitio_platform_interface: ^1.4.0
2525

2626
dev_dependencies:
2727
flutter_test:

splitio_android/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.1.7 (Nov 9, 2023)
2+
3+
* Updated Android SDK to `3.4.0`
4+
15
# 0.1.7-rc.1 (Nov 9, 2023)
26

37
# 0.1.6 (Aug 15, 2023)

splitio_android/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: splitio_android
22
description: The official Android implementation of splitio Flutter plugin.
33
repository: https://github.com/splitio/flutter-sdk-plugin/tree/main/splitio_android
4-
version: 0.1.7-rc.1
4+
version: 0.1.7
55

66
environment:
77
sdk: ">=2.16.2 <4.0.0"
@@ -19,7 +19,7 @@ flutter:
1919
dependencies:
2020
flutter:
2121
sdk: flutter
22-
splitio_platform_interface: ^1.4.0-rc.1
22+
splitio_platform_interface: ^1.4.0
2323

2424
dev_dependencies:
2525
flutter_test:

splitio_ios/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.1.7 (Nov 9, 2023)
2+
3+
* Updated iOS SDK to `2.23.0`
4+
15
# 0.1.7-rc.1 (Nov 9, 2023)
26

37
# 0.1.6 (Aug 15, 2023)

splitio_ios/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: splitio_ios
22
description: The official iOS implementation of splitio Flutter plugin.
33
repository: https://github.com/splitio/flutter-sdk-plugin/tree/main/splitio_ios
4-
version: 0.1.7-rc.1
4+
version: 0.1.7
55

66
environment:
77
sdk: ">=2.16.2 <4.0.0"
@@ -18,7 +18,7 @@ flutter:
1818
dependencies:
1919
flutter:
2020
sdk: flutter
21-
splitio_platform_interface: ^1.4.0-rc.1
21+
splitio_platform_interface: ^1.4.0
2222

2323
dev_dependencies:
2424
flutter_test:

splitio_platform_interface/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 1.4.0 (Nov 9, 2023)
2+
* Added support for Flag Sets, which enables grouping feature flags and interacting with the group rather than individually (more details in our documentation):
3+
* Added new variations of the get treatment methods to support evaluating flags in given flag set/s.
4+
* getTreatmentsByFlagSet and getTreatmentsByFlagSets
5+
* getTreatmentWithConfigByFlagSets and getTreatmentsWithConfigByFlagSets
6+
* Added a new optional Split Filter configuration option. This allows the SDK and Split services to only synchronize the flags in the specified flag sets, avoiding unused or unwanted flags from being synced on the SDK instance, bringing all the benefits from a reduced payload.
7+
* Added `defaultTreatment` property to the `SplitView` object returned by the `split` and `splits` methods of the SDK manager.
8+
19
# 1.4.0-rc.1 (Nov 9, 2023)
210

311
# 1.3.0 (Aug 15, 2023)

splitio_platform_interface/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: splitio_platform_interface
22
description: A common platform interface for the splitio plugin.
33
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
44
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
5-
version: 1.4.0-rc.1
5+
version: 1.4.0
66
repository: https://github.com/splitio/flutter-sdk-plugin/tree/main/splitio_platform_interface
77

88
environment:

0 commit comments

Comments
 (0)