Skip to content

Commit

Permalink
Update from release/1.2.0 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 6, 2023
1 parent fa4c0d1 commit 04066c0
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 18 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
#### Version 1.2.0
* [UPDATE] Removed `OAuth1` from runtime requests. For further details on this see our [migration guide](https://docs.medallia.com/en/?resourceId=mxo-ios-sdk-migration-v1.2.0).
* [BUGFIX] Fixed an issue with a Navigation Bar label's path mismatch across iOS versions.
* [BUGFIX] Fixed an issue where optimization was not returned for `PageViewController` in a SwiftUI app.
* [BUGFIX] Fixed an issue where a user with no permissions was not getting an error message in Admin mode.
* [BUGFIX] Fixed an issue with `clearTid` API where it was clearing user credentials along with TIDs.

#### Version 1.1.3
* [BUGFIX] Fixed an issue with `contentUrl` not being returned in `MXOAsset` for external assets.
* [BUGFIX] Fixed an issue with `MXOAssetResponse` not returning `label`, `target`, and `targetUrl`.
Expand Down
10 changes: 5 additions & 5 deletions MedalliaMXO.embeddedframework/MedalliaMXO.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>MedalliaMXO.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>MedalliaMXO.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ typedef void (^MXOConfigurationBuilderBlock)(MXOConfigurationBuilder *builder);
/*!
@brief The MXO space shared secret key.
*/
@property (nonatomic, copy, readonly, nullable) NSString *sharedSecret;
@property (nonatomic, copy, readonly, nullable) NSString *sharedSecret DEPRECATED_MSG_ATTRIBUTE("This will be removed in the next major release.");

/*!
@brief The MXO space API key.
*/
@property (nonatomic, copy, readonly, nullable) NSString *apiKey;
@property (nonatomic, copy, readonly, nullable) NSString *apiKey DEPRECATED_MSG_ATTRIBUTE("This will be removed in the next major release.");

/*!
@brief A User ID which has access to the current touchpoint. It is recommended to use an api user: api@<your-tenant.com>.
*/
@property (nonatomic, copy, readonly, nullable) NSString *userId;
@property (nonatomic, copy, readonly, nullable) NSString *userId DEPRECATED_MSG_ATTRIBUTE("This will be removed in the next major release.");

/*!
@brief The MXO server instance your space is hosted on.
Expand Down Expand Up @@ -110,17 +110,17 @@ typedef void (^MXOConfigurationBuilderBlock)(MXOConfigurationBuilder *builder);
/*!
@brief The MXO space shared secret key.
*/
@property (nonatomic, copy, nullable) NSString *sharedSecret;
@property (nonatomic, copy, nullable) NSString *sharedSecret DEPRECATED_MSG_ATTRIBUTE("This will be removed in the next major release.");

/*!
@brief The MXO space API key.
*/
@property (nonatomic, copy, nullable) NSString *apiKey;
@property (nonatomic, copy, nullable) NSString *apiKey DEPRECATED_MSG_ATTRIBUTE("This will be removed in the next major release.");

/*!
@brief A User ID which has access to the current touchpoint. It is recommended to use an api user: api@<your-tenant.com>.
*/
@property (nonatomic, copy, nullable) NSString *userId;
@property (nonatomic, copy, nullable) NSString *userId DEPRECATED_MSG_ATTRIBUTE("This will be removed in the next major release.");

/*!
@brief The MXO server instance your space is hosted on.
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ typedef void (^MXOConfigurationBuilderBlock)(MXOConfigurationBuilder *builder);
/*!
@brief The MXO space shared secret key.
*/
@property (nonatomic, copy, readonly, nullable) NSString *sharedSecret;
@property (nonatomic, copy, readonly, nullable) NSString *sharedSecret DEPRECATED_MSG_ATTRIBUTE("This will be removed in the next major release.");

/*!
@brief The MXO space API key.
*/
@property (nonatomic, copy, readonly, nullable) NSString *apiKey;
@property (nonatomic, copy, readonly, nullable) NSString *apiKey DEPRECATED_MSG_ATTRIBUTE("This will be removed in the next major release.");

/*!
@brief A User ID which has access to the current touchpoint. It is recommended to use an api user: api@<your-tenant.com>.
*/
@property (nonatomic, copy, readonly, nullable) NSString *userId;
@property (nonatomic, copy, readonly, nullable) NSString *userId DEPRECATED_MSG_ATTRIBUTE("This will be removed in the next major release.");

/*!
@brief The MXO server instance your space is hosted on.
Expand Down Expand Up @@ -110,17 +110,17 @@ typedef void (^MXOConfigurationBuilderBlock)(MXOConfigurationBuilder *builder);
/*!
@brief The MXO space shared secret key.
*/
@property (nonatomic, copy, nullable) NSString *sharedSecret;
@property (nonatomic, copy, nullable) NSString *sharedSecret DEPRECATED_MSG_ATTRIBUTE("This will be removed in the next major release.");

/*!
@brief The MXO space API key.
*/
@property (nonatomic, copy, nullable) NSString *apiKey;
@property (nonatomic, copy, nullable) NSString *apiKey DEPRECATED_MSG_ATTRIBUTE("This will be removed in the next major release.");

/*!
@brief A User ID which has access to the current touchpoint. It is recommended to use an api user: api@<your-tenant.com>.
*/
@property (nonatomic, copy, nullable) NSString *userId;
@property (nonatomic, copy, nullable) NSString *userId DEPRECATED_MSG_ATTRIBUTE("This will be removed in the next major release.");

/*!
@brief The MXO server instance your space is hosted on.
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion medallia-mxo-ios-sdk.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

Pod::Spec.new do |s|
s.name = "medallia-mxo-ios-sdk"
s.version = "1.1.3"
s.version = "1.2.0"
s.summary = "The MedalliaMXO SDK for iOS."
s.authors = { "Medallia" => "cocoapods-mxo@medallia.com" }
s.homepage = "https://github.com/medallia/mxo-ios-sdk"
Expand Down

0 comments on commit 04066c0

Please sign in to comment.