All Versions
50
Latest Version
Avg Release Cycle
46187 days
Latest Release
1400 days ago

Changelog History
Page 3

  • v6.0.1 Changes

    December 01, 0007

    ๐Ÿ›  Fixed bug in Salesorce.apex and Salesforce.custom methods so that callers can now set the HTTP body data.

  • v6.0.0 Changes

    ๐Ÿ“š This release contains breaking changes. See README and documentation. Highlights of changes and improvements:

    • Incorporated Swift 4's new Codable protocol (i.e. Decodable and Encodable throughout. This simplifies both Swiftly Salesforce's code and the creation of your own models that represent Salesforce objects.
    • Simpler and faster to incorporate Swiftly Salesforce in your apps.
    • ๐Ÿ†• New Record type to represent generic Salesforce object records, replaces SObject from version 5.0.0. If you prefer, you could create your own model objects and use those instead, via the magic of Swift generics and the new Codable protocol. See the README and example app for samples.
    • ๐Ÿ†• New Organization type holds information about the Salesforce "org." Call salesforce.org( ) to retrieve org information.
    • References to redirectURL replaced with callbackURL to be consistent with Salesforce Connected App terminology.
    • โœ… More and better test coverage.
  • v5.0.0 Changes

    ๐Ÿ“š This release contains breaking changes. See README and documentation. Highlights of changes and improvements:

    • Incorporated Swift 4's new Decodable protocol throughout. This simplifies both Swiftly Salesforce's code and the creation of your own models that represent Salesforce objects.
    • ๐Ÿ†• New SObject type to represent a generic Salesforce objects. If you prefer, you can create your own model objects and use those instead, via the magic of Swift generics and the new Decodable protocol. See the README and example app for samples.
    • Revamped Error types.
    • โœ… More and better test coverage.
  • v4.0.6 Changes

    September 06, 0028
    • โœ‚ Removed Alamofire dependency
    • โœ… Increased test coverage
  • v4.0.5 Changes

    September 05, 0010
    • โž• Added Keychain wrapper class
    • โœ‚ Removed Locksmith dependency
  • v4.0.4 Changes

    September 04, 0005

    ๐Ÿ‘Œ Support Swift 4

  • v4.0.3 Changes

    August 03, 0005

    ๐Ÿ”„ Changed access level of Address members to explicitly public (were implicitly internal)

  • v4.0.2 Changes

    July 30, 2017

    ๐Ÿ›  Fixed misspelling in enum Address.GeocodeAccuracy (issue #44)

  • v4.0.1 Changes

    July 17, 2017

    ๐Ÿ“š Documentation updates

  • v4.0.0 Changes

    July 14, 2017

    ๐Ÿ“š This release contains breaking changes. See README and documentation. Highlights of changes and improvements:

    • โœ‚ Removed the salesforce singleton (you could still instantiate your own global salesforce variable, if you like; see example).
    • ๐Ÿ‘€ Salesforce now instantiated with new ConnectedApp class. See [README](./README.md#example-configure-your-app-delegate).
    • ๐Ÿ‘Œ Supports switching among multiple users and securely storing their access & refresh tokens.
    • Salesforce.apexREST method renamed Salesforce.apex, and now returns Promise<Data> (instead of Promise<Any>).
    • ๐Ÿ†• New Salesforce.fetchImage methods to get relatively-small images, such as user thumbnails or Contact photos (issue #33 and issue #35).
    • ๐Ÿ†• New Address struct to hold standard, compound address fields, including longitude and latitude (issue #38 and issue #39).