Releases: Backendless/Swift-SDK
Releases · Backendless/Swift-SDK
7.0.4
7.0.3
- Added an ability to exlude custom class fields from interacting with database:
Backendless.shared.data.excludeProperties(forClass: AnyClass, fieldNames: [String])
7.0.2
- fixed issue when publishing without PublishOptions
- fixed issue with pushing broadcast
- added @dynamicMemberLookup for the BackendlessUser
7.0.1
- fixed RT issue when user was able to subscribe only for one messaging channel
- some deprecated code was updated under the hood
- minimal iOS and tvOS versions changed to 12.0
7.0.0
- added implementation for BackendlessExpression
6.7.10
- fixed issue with mirroring class children
- added the
callbackUrlDomain
argument to thegetAuthorizationUrlLink
methods
6.7.9
- fixed RT
bulkUpsert
methods access level for class approach - fixed issue with
DataPermission
'ssetPermission()
function
6.7.8
- fixed issue when
getUserToken
method returned nil after login withstayLoggedIn = true
and re-runing app
6.7.7
-
added a necessary
import Foundation
line of code to the UserProperty class -
the
loginWithOauth1
method signature changed a little to:
func loginWithOauth1(providerCode: String, authToken: String, tokenSecret: String, fieldsMapping: [String : String], stayLoggedIn: Bool, responseHandler: ((BackendlessUser) -> Void)!, errorHandler: ((Fault) -> Void)!)
func loginWithOauth1(providerCode: String, authToken: String, tokenSecret: String, guestUser: BackendlessUser, fieldsMapping: [String : String], stayLoggedIn: Bool, responseHandler: ((BackendlessUser) -> Void)!, errorHandler: ((Fault) -> Void)!)
6.7.6
- the response of the
createEmailConfirmation
method changed to String:
func createEmailConfirmation(identity: String, responseHandler: ((String) -> Void)!, errorHandler: ((Fault) -> Void)!)