-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for the
type
field in PubNubMembershipMetadata (#194)
feat(membership): add support for the `type` field in `PubNubMembershipMetadata` feat(app-context): deprecate methods containing `uuid` parameter, introduce new versions feat(app-context): deprecate methods containing the `include` parameter of the `Bool` type, introduce new versions feat(app-context): deprecate `remove(channel:custom:completion:)`, introduce new version feat(app-context): replace `PubNubUUIDMetadata` with `PubNubUserMetadata` feat(app-context): replace `PubNubUUIDMetadataBase` with `PubNubUserMetadataBase` feat(app-context): add an alias for backward compatibility with the customer code using `PubNubUUIDMetadata` feat(app-context): add an alias for backward compatibility with the customer code using `PubNubUUIDMetadataBase` feat(listeners): replace `PubNubUUIDMetadataChangeset` with `PubNubUserMetadataChangeset` feat(listeners): add an alias for backward compatibility with the customer code using `PubNubUUIDMetadataChangeset`
- Loading branch information
1 parent
022aa54
commit 7b131fb
Showing
40 changed files
with
1,754 additions
and
805 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ source "https://rubygems.org" | |
|
||
gem "cocoapods" | ||
gem "fastlane" | ||
gem 'rexml', '3.3.8' | ||
gem 'rexml', '3.3.9' |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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.1.0' | ||
s.version = '8.2.0' | ||
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
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
Oops, something went wrong.