File tree 5 files changed +18
-7
lines changed
5 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
source_clear :
12
- runs-on : macos-12
12
+ runs-on : macos-13
13
13
steps :
14
14
- uses : actions/checkout@v3
15
15
- name : Source clear scan
Original file line number Diff line number Diff line change 17
17
description : release
18
18
19
19
env :
20
- VERSION : 4.1 .0
20
+ VERSION : 5.0 .0
21
21
22
22
jobs :
23
23
32
32
TRAVIS_COM_TOKEN : ${{ secrets.TRAVIS_COM_TOKEN }}
33
33
34
34
lint :
35
- runs-on : macos-12
35
+ runs-on : macos-13
36
36
steps :
37
37
- uses : actions/checkout@v3
38
38
- uses : maxim-lobanov/setup-xcode@v1
50
50
uses : optimizely/swift-sdk/.github/workflows/unit_tests.yml@master
51
51
52
52
prepare_for_release :
53
- runs-on : macos-12
53
+ runs-on : macos-13
54
54
if : " ${{ github.event.inputs.PREP == 'true' && github.event_name == 'workflow_dispatch' }}"
55
55
steps :
56
56
- uses : actions/checkout@v3
79
79
80
80
release :
81
81
if : " ${{github.event.inputs.RELEASE == 'true' && github.event_name == 'workflow_dispatch' }}"
82
- runs-on : macos-12
82
+ runs-on : macos-13
83
83
steps :
84
84
- uses : actions/checkout@v3
85
85
- uses : maxim-lobanov/setup-xcode@v1
Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
unittests :
10
- runs-on : macos-12
10
+ runs-on : macos-13
11
11
strategy :
12
12
fail-fast : false
13
13
matrix :
Original file line number Diff line number Diff line change 1
1
# Optimizely Swift SDK Changelog
2
2
3
+ ## 5.0.0
4
+ November 25th, 2024
5
+
6
+ ### Breaking Changes
7
+ * VUID configuration is now independent of ODP ([ #456 ] ( https://github.com/optimizely/swift-sdk/pull/556 ) )
8
+ * When VUID is disabled:
9
+ * ` vuid ` is not generated or saved.
10
+ * ` client-initialized ` event will not auto fired on SDK init.
11
+ * ` vuid ` is not included in the odp events as a default attribute.
12
+ * ` createUserContext() ` will be rejected if ` userId ` is not provided.
13
+
3
14
## 4.1.0
4
15
November 8, 2024
5
16
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ If you have a name conflict with other swift packages when you add the Optimizel
39
39
#### CocoaPods
40
40
1 . Add the following lines to the _ Podfile_ :<pre >
41
41
``` use_frameworks! ```
42
- ``` pod 'OptimizelySwiftSDK', '~> 4.1 .0' ```
42
+ ``` pod 'OptimizelySwiftSDK', '~> 5.0 .0' ```
43
43
</pre >
44
44
45
45
2 . Run the following command: <pre >``` pod install ``` </pre >
You can’t perform that action at this time.
0 commit comments