Skip to content

Releases: Backendless/Swift-SDK

7.0.4

17 Oct 13:27
19f236c
Compare
Choose a tag to compare
  • Fixed an issue when excluding some properties of native types

7.0.3

12 Oct 14:15
815d0e2
Compare
Choose a tag to compare
  • Added an ability to exlude custom class fields from interacting with database:
Backendless.shared.data.excludeProperties(forClass: AnyClass, fieldNames: [String])

7.0.2

03 Oct 16:29
00d5420
Compare
Choose a tag to compare
  • fixed issue when publishing without PublishOptions
  • fixed issue with pushing broadcast
  • added @dynamicMemberLookup for the BackendlessUser

7.0.1

21 Sep 09:51
a52e13a
Compare
Choose a tag to compare
  • 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

25 Jul 12:30
e14b3aa
Compare
Choose a tag to compare
  • added implementation for BackendlessExpression

6.7.10

20 Jul 13:28
98dd48b
Compare
Choose a tag to compare
  • fixed issue with mirroring class children
  • added the callbackUrlDomain argument to the getAuthorizationUrlLink methods

6.7.9

17 May 13:05
4ffbd7c
Compare
Choose a tag to compare
  • fixed RT bulkUpsert methods access level for class approach
  • fixed issue with DataPermission's setPermission() function

6.7.8

21 Apr 11:19
d8032a5
Compare
Choose a tag to compare
  • fixed issue when getUserToken method returned nil after login with stayLoggedIn = true and re-runing app

6.7.7

20 Feb 10:42
36f8d6a
Compare
Choose a tag to compare
  • 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

27 Jan 14:59
c2096e3
Compare
Choose a tag to compare
  • the response of the createEmailConfirmation method changed to String:
func createEmailConfirmation(identity: String, responseHandler: ((String) -> Void)!, errorHandler: ((Fault) -> Void)!)