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

Changelog History
Page 4

  • v3.6.0 Changes

    โšก๏ธ Updated the default Salesforce API version to 40.0 (Summer '17)

  • v3.5.1 Changes

    June 01, 0007

    ๐Ÿ›  Fixes issue #29.

  • v3.5.0 Changes

    • โšก๏ธ Updated the default Salesforce API version to 39.0 (Spring '17).
    • โž• Added method Salesforce.describeAll() to retrieve metadata about all objects defined in the org (issue #28).
    • ๐Ÿ› Bug fix; ObjectDescription.keyPrefix now returns an empty string if the retrieved object metadata value is null. (In the next major release keyPrefix will become an optional string.) (issue #36)
    • ๐Ÿš€ ObjectDescription.fields now returns an empty dictionary if the retrieved metadata has no field-level information, as is the case with Salesforce.describeAll(). (In the next major release, fields will become an optional dictionary.)
    • ๐Ÿ› Bug fix; Salesforce.limits() broke with the Salesforce Spring '17 release, which changed the JSON payload returned by the REST API's limits resource (issue #37).
    • Model.UserInfo and Model.QueryResult now have public initializers (issue #34).
  • v3.4.0 Changes

    ๐Ÿ‘Œ Support for registering with Salesforce notification services. (Thanks to @quintonwall for pull request.)

  • v3.3.2 Changes

    February 02, 0007

    ๐Ÿ‘Œ Support Carthage dependency manager

  • v3.3.1 Changes

    January 01, 0010

    โšก๏ธ Updated README

  • v3.3.0 Changes

    • โž• Added overloaded Salesforce.retrieve method to retrieve multiple records in parallel
    • โž• Added overloaded Salesforce.query method to execute multiple SOQL queries in parallel
    • โž• Added overloaded Salesforce.describe method to retrieve metadata about multiple Salesforce objects in parallel
    • โž• Additional documentation, tests and test coverage
  • v3.2.0 Changes

    • Added Salesforce.describe( ) method, and corresponding model structs (ObjectDescription, FieldDescription, PicklistValue) for retrieving object metadata. (Closes issue #13.)
    • โž• Additional tests and test coverage
  • v3.1.1 Changes

    November 01, 0023

    ๐Ÿ›  Fixed issue #15; removed unneeded id parameter in Salesforce.insert( ) method

  • v3.1.0 Changes

    • Updated LoginDelegate to accommodate custom login view controllers and flows. Note: the default OAuth2 user-agent flow with the Salesforce-hosted webform is the recommended way to authenticate users; your app shouldn't handle their credentials. Adapted from @hmuronaka's pull request.
    • ๐Ÿ—„ Deprecated LoginDelegate extension method handleRedirectURL(redirectURL: URL) in favor of handleRedirectURL(url: URL).