Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
795e6e1
Merge pull request #31 from splitio/dev_test
gthea Aug 29, 2025
d1eb248
Update Suite version to 2.3.0
MartinCardozo-SDK Sep 23, 2025
4d9cd6a
Changes updated
MartinCardozo-SDK Sep 23, 2025
eb91717
Merge pull request #33 from splitio/release/2.3.0
MartinCardozo-SDK Sep 23, 2025
9a8e205
Update Suite version to 2.3.1
gthea Sep 25, 2025
3a05912
Merge pull request #35 from splitio/release/2.3.1
gthea Sep 25, 2025
7ab7102
Update Suite version to 2.3.2
MartinCardozo-SDK Oct 22, 2025
ab1f79a
CHANGES updated
MartinCardozo-SDK Oct 22, 2025
840284c
Update CHANGES.txt
MartinCardozo-SDK Oct 22, 2025
f647801
Merge pull request #37 from splitio/release/2.3.2
MartinCardozo-SDK Oct 22, 2025
5ea0b62
Adding Client and RUM as dependencies
MartinCardozo-SDK Nov 4, 2025
1716b2b
Update Package.swift
MartinCardozo-SDK Nov 5, 2025
d6b2ecc
Format Package.swift for better readability
MartinCardozo-SDK Nov 5, 2025
786f7c5
Update Package.swift
MartinCardozo-SDK Nov 5, 2025
2efab2f
Added wrapper
MartinCardozo-SDK Nov 5, 2025
4c0d9c6
Names corrected
MartinCardozo-SDK Nov 5, 2025
cb887f2
New enclosing folder
MartinCardozo-SDK Nov 5, 2025
a829648
Names corrected
MartinCardozo-SDK Nov 5, 2025
246abec
Names corrected
MartinCardozo-SDK Nov 5, 2025
a2ca8d6
Names corrected
MartinCardozo-SDK Nov 5, 2025
87557fc
Update Package.swift
MartinCardozo-SDK Nov 5, 2025
9fa8ff9
Fix dependency name from 'ios-clienta' to 'ios-client'
MartinCardozo-SDK Nov 5, 2025
d362895
Update Package.swift
MartinCardozo-SDK Nov 5, 2025
c7ff155
Update Package.swift
MartinCardozo-SDK Nov 5, 2025
750bcb3
Update Package.swift
MartinCardozo-SDK Nov 5, 2025
fec7e31
Update Package.swift
MartinCardozo-SDK Nov 5, 2025
ad47209
Update dependencies in Package.swift
MartinCardozo-SDK Nov 5, 2025
22f26d1
Merge branch 'dev_test' into FME-10929-Suite-Public
MartinCardozo-SDK Nov 5, 2025
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
Binary file added .DS_Store
Binary file not shown.
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2.3.2: (Oct 22, 2025)
- Fixed streaming reconnection after connection was interrupted.

2.3.0: (Sept 23, 2025)
- Added new configuration for Fallback Treatments, which allows setting a treatment value and optional config to be returned in place of "control", either globally or by flag. Read more in our docs.

2.2.3: (Aug 29, 2025)
- Updated polling logic to stop and restart memberships data synchronization when not currently used in flags or rule based segments.

Expand Down
25 changes: 25 additions & 0 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 17 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,27 @@ let package = Package(
products: [
.library(
name: "SplitSuite",
targets: ["iOSSplitSuite"])
targets: ["SplitSuiteWrapper"]
)
],
dependencies: [
.package(name: "ios-client", url: "https://github.com/splitio/ios-client.git", from: "3.4.2"),
.package(name: "ios-rum", url: "https://github.com/splitio/ios-rum", from: "0.4.0"),
],
targets: [
.binaryTarget(
name: "iOSSplitSuite",
url: "https://cdn.split.io/ios-suite/iOSSplitSuite_2.3.2-rc1.zip",
checksum: "84abbdaf9dc9a54eac51762e45f50a0d3ea2b953f2cc7d6459cd7adc0aa868ef"
url: "https://cdn.split.io/ios-suite/iOSSplitSuite_2.3.2.zip",
checksum: "ce1d87c6e05ef82c41469837ff5936bbc681e2c7e15e41844ebd8ec803dbe2fc"
),
.target(
name: "SplitSuiteWrapper",
dependencies: [
"iOSSplitSuite",
.product(name: "Split", package: "ios-client"),
.product(name: "SplitRum", package: "ios-rum")
],
path: "Sources/SplitSuiteWrapper"
)
]
)
Binary file added Sources/.DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions Sources/SplitSuiteWrapper/SplitSuiteWrapper.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@_exported import iOSSplitSuite
@_exported import Split
@_exported import SplitRumAgent