-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add synchronized access to EventEngine's
state
property (#199)
fix(subscribe): fix the crash issue caused by multiple accesses to the `state` property in multithreaded scenarios
- Loading branch information
1 parent
2e3e028
commit 5878413
Showing
8 changed files
with
45 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'PubNubSwift' | ||
s.version = '8.2.4' | ||
s.version = '8.2.5' | ||
s.homepage = 'https://github.com/pubnub/swift' | ||
s.documentation_url = 'https://www.pubnub.com/docs/swift-native/pubnub-swift-sdk' | ||
s.authors = { 'PubNub, Inc.' => '[email protected]' } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
DEVICES="iPhone 13 (15.5),iPhone 15 (17.5)" | ||
COVERAGE="iPhone 15 (17.5)" | ||
DEVICES="generic/platform=iOS Simulator" | ||
COVERAGE="generic/platform=iOS Simulator" | ||
|
||
DESTINATION_EXAMPLE="OS=17.4,name=iPhone 15" | ||
DESTINATION_EXAMPLE="generic/platform=iOS Simulator" | ||
TEST_OUTPUT_DIR="fastlane/test_output/iOS" | ||
SCHEME_EXAMPLE=Example-iOS | ||
PLATFORM=ios |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
DEVICES="Apple TV (15.4),Apple TV (17.5)" | ||
COVERAGE="Apple TV (17.5)" | ||
DEVICES="generic/platform=tvOS Simulator" | ||
COVERAGE="generic/platform=tvOS Simulator" | ||
|
||
TEST_OUTPUT_DIR="fastlane/test_output/tvOS" | ||
PLATFORM=tvos |