Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FSSDK-10944] chore: prepare for release 5.0.0 #566

Merged
merged 2 commits into from
Nov 26, 2024
Merged
Changes from all commits
Commits
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: 1 addition & 1 deletion .github/workflows/source_clear_cron.yml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ on:

jobs:
source_clear:
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Source clear scan
8 changes: 4 additions & 4 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ on:
description: release

env:
VERSION: 4.1.0
VERSION: 5.0.0

jobs:

@@ -32,7 +32,7 @@ jobs:
TRAVIS_COM_TOKEN: ${{ secrets.TRAVIS_COM_TOKEN }}

lint:
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- uses: maxim-lobanov/setup-xcode@v1
@@ -50,7 +50,7 @@ jobs:
uses: optimizely/swift-sdk/.github/workflows/unit_tests.yml@master

prepare_for_release:
runs-on: macos-12
runs-on: macos-13
if: "${{ github.event.inputs.PREP == 'true' && github.event_name == 'workflow_dispatch' }}"
steps:
- uses: actions/checkout@v3
@@ -79,7 +79,7 @@ jobs:

release:
if: "${{github.event.inputs.RELEASE == 'true' && github.event_name == 'workflow_dispatch' }}"
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- uses: maxim-lobanov/setup-xcode@v1
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ env:

jobs:
unittests:
runs-on: macos-12
runs-on: macos-13
strategy:
fail-fast: false
matrix:
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Optimizely Swift SDK Changelog

## 5.0.0
November 25th, 2024

### Breaking Changes
* VUID configuration is now independent of ODP ([#456](https://github.com/optimizely/swift-sdk/pull/556))
* When VUID is disabled:
* `vuid` is not generated or saved.
* `client-initialized` event will not auto fired on SDK init.
* `vuid` is not included in the odp events as a default attribute.
* `createUserContext()` will be rejected if `userId` is not provided.

## 4.1.0
November 8, 2024

2 changes: 1 addition & 1 deletion README.md
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
#### CocoaPods
1. Add the following lines to the _Podfile_:<pre>
```use_frameworks!```
```pod 'OptimizelySwiftSDK', '~> 4.1.0'```
```pod 'OptimizelySwiftSDK', '~> 5.0.0'```
</pre>

2. Run the following command: <pre>``` pod install ```</pre>