All Versions
53
Latest Version
Avg Release Cycle
19 days
Latest Release
1429 days ago

Changelog History
Page 4

  • v2.20181212.0

    December 12, 2018
  • v2.20181205.0

    December 05, 2018
  • v2.20180918.1 Changes

    October 24, 2018

    ๐Ÿ†• New feature: Support for Partial Payments in Connect v1

    ๐Ÿ‘ The Connect SDK now supports partial payment functionality for the Connect v1 Transactions API with the addition of a new Payment field:

    • Payment.is_partial — Indicates whether or not the payment is only partially paid for. If true, the payment will have the tenders collected so far, but the itemizations will be empty until the payment is completed.

    Tender also includes 2 new fields to help resolve timing around payments with multiple tenders. Invoices that involve partial payment (e.g., requiring a deposit) may include tenders settled well before the entire payment is completed:

    • Tender.tendered_at — The time when the tender was accepted by the merchant.
    • Tender.settled_at — The time when the tender was captured, in ISO 8601 format. Typically the same as (or within moments of) tendered_at unless the tender was part of a delay capture transaction.

    The change also makes some behavioral changes to the Connect v1 Payment endpoints:

    • Create Refunds rejects requests for invoices that have partial payments pending.
    • List Payments takes a new request field, include_partial to indicate whether partial payments should be included in the response.
  • v2.20180918.0 Changes

    September 18, 2018

    We have added Connect v2 Inventory API and birthdays in Customer entities.

    ๐Ÿ†• New API: Inventory API (Connect V2)

    The Connect v2 Inventory API replaces the Connect v1 Inventory API and introduces new functionality:

    • Moving item variations quantities through predefined states (e.g., from IN_STOCK to WASTE).
    • Viewing the inventory adjustment history for an item variation.
    • Batch inventory adjustments and information retrieval.

    ๐Ÿ†• New feature: Customer Birthdays (Connect V2)

    • Customer profiles now include a birthday field. Dates are recorded in RFC-3339 format and can be set through the CreateCustomer and UpdateCustomer endpoints.
  • v2.20180712.2 Changes

    August 21, 2018

    The Connect SDK now includes functionality for the OAuth API. The Square OAuth API lets applications request and obtain permission from a Square account to make API calls on behalf of that account. Applications can request individual permissions so that users do not need to grant full access to their Square accounts.

    OAuth API

    • ๐Ÿ‘€ ObtainToken endpoint — Exchanges the authorization code for an access token. After a merchant authorizes your application with the permissions form, an authorization code is sent to the application's redirect URL (See Implementing OAuth for information about how to set up the redirect URL).

    • RenewToken endpoint — Renews an OAuth access token before it expires. OAuth access tokens besides your application's personal access token expire after 30 days. You can also renew expired tokens within 15 days of their expiration. You cannot renew an access token that has been expired for more than 15 days. Instead, the associated merchant must complete the OAuth flow from the beginning. Important: The Authorization header you provide to this endpoint must have the following format: Authorization: Client APPLICATION_SECRET Replace APPLICATION_SECRET with your application's secret, available from the application dashboard.

    • RevokeToken endpoint — Revokes an access token generated with the OAuth flow. If a merchant has more than one access token for your application, this endpoint revokes all of them, regardless of which token you specify. If you revoke a merchant's access token, all of the merchant's active subscriptions associated with your application are canceled immediately. Important: The Authorization header you provide to this endpoint must have the following format: Authorization: Client APPLICATION_SECRET Replace APPLICATION_SECRET with your application's secret, available from the application dashboard.

  • v2.20180712.1 Changes

    August 02, 2018

    We have added MobileAuthorization API.

    ๐Ÿ†• New endpoint: MobileAuthorization API

    • CreateMobileAuthorizationCode endpoint — Generate a mobile authorization code for an instance of your application. Mobile authorization credentials permit an instance of your application to accept payments for a given location using the Square Reader SDK. Mobile authorization codes are one-time-use and expire shortly after being issued.
  • v2.20180712.0 Changes

    July 12, 2018

    We introduce Square API versions. Square-Version is 2018-07-12 for this SDK.

    How versioning works

    Square API versions (Square-Version) track changes in the evolution of Connect v2 APIs. The Square-Version naming scheme is YYYY-MM-DD, which indicates ๐Ÿš€ the date the version was released. Connect v1 APIs are not versioned. Square ๐Ÿš€ continues to support Connect v1, but future releases will focus on improving Connect v2 functionality.

    ๐Ÿ“Œ By default, new Square applications are pinned to the version current at the ๐Ÿ“Œ time the application was created in the Square Application Dashboard. Pinning an 0๏ธโƒฃ application sets the default Square-Version for the application. The default โšก๏ธ Square-Version of an application can be reviewed and updated at any time on the settings pages for the application.

    ๐Ÿ”– Versioning and SDKs

    ๐Ÿš€ When a new Square-Version is released, new Connect SDKs are publish on GitHub โšก๏ธ and various package management systems. SDK updates follow the version convention of the associated language and manager but include the related Square-Version in the SDK version. For example, Connect SDKs tied to version ๐Ÿ”– 2018-01-04 might look like {SDK_VERSION}.20180104.{VERSION_INCREMENT}.

    While SDK versions can be mapped to a related Square-version, SDK versions โšก๏ธ follow an independent, incremental versioning scheme to allow updates and ๐Ÿ‘Œ improvements to the SDKs outside of Square-Version updates.

    Migrating to new versions

    In most cases, Square-version migration should be straightforward, with known ๐ŸŒฒ differences listed in the related Change Log.

    โœ… To test migrations, developers can override the default Square-Version of an application by explicitly setting the preferred Square-Version in the HTTP header of the Connect v2 API request for REST calls. Requesting an API version that does not exist returns an error. Successful API responses include the Square-Version header to indicate the API version used to process request.

    Connect SDK versions are locked to specific API versions and cannot be โฌ†๏ธ overwritten. Instead, the SDK must be upgraded to work with new API versions.

  • v2.9.0 Changes

    June 28, 2018

    We have added search functionality to the Connect v2 Customer API.

    ๐Ÿ†• New features and Improvements: Customer API (Connect v2)

    • SearchCustomers endpoint — retrieves groups of customer profiles based on a related characteristic. For example, retrieving all customers created in the past 24 hours.
    • creation_source field is now available on Customer entities. The creation source exposes the process that created a customer profile. For example, if a customer is created using the API, the creation source will be THIRD_PARTY.
    • Instant Profiles are now exposed in the following endpoints: RetrieveCustomer, SearchCustomers, UpdateCustomer, DeleteCustomer.

    ๐Ÿ›  Fixes: Inventory SDK (Connect v1)

    • ๐Ÿ›  Fix SDK request property adjustment_type in V1 Adjust Inventory.
  • v2.8.0 Changes

    May 24, 2018

    โšก๏ธ We have added sorting functionality to the Connect v2 Customer API, updated the Connect v1 Payments API to include information about surcharges and ๐Ÿ‘Œ improvements to the Item data type.

    ๐Ÿ†• New feature: Customer API (Connect v2)

    • ListCustomers endpoint — now provides the ability to sort customers by their creation date using the sort_field and sort_order parameters.

    ๐Ÿ†• New features: Payments API (Connect v1)

    The Payments API now returns information about surcharges applied to payments. The new functionality introduces the following new data types:

    • SurchargeMoney datatype — The total of all surcharges applied to the payment.
    • Surcharges datatype — A list of all surcharges associated with the payment.
    • Surcharge datatype — A surcharge that is applied to the payment. One example of a surcharge is auto-gratuity, which is a fixed-rate surcharge applied to every payment, often based on party size.

    We are constantly evaluating new languages to add. In the meantime, if the ๐Ÿ‘ language you need is not supported, you can use our [Swagger pipeline](<%= articles__client_libraries_path%>#generatingwithswagger) to generate a custom SDK or continue sending JSON to the endpoint URLs directly.

    ๐Ÿ‘Œ Improvement: Item (Connect v1)

    Item will now provide two new properties:

    • category_id — indicates if an item can be added to pickup orders from the merchant's online store
    • available_for_pickup — indicates the item's category (if any).
  • v2.7.0 Changes

    April 26, 2018

    ๐Ÿ†• New features: Transactions API and Payments API

    The Transactions API in Connect v2 now includes payment and refund information from exchanges.

    • ListTransactions now includes payment information from sales and exchanges and refund information from returns and exchanges.
    • ListRefunds now includes refunds that result from exchanges in addition to partial refunds and itemized returns through Square's Point of Sale applications.

    The Payments API in Connect v1 now includes payment and refund information from exchanges.

    • ListPayments now includes refunds that are generated from exchanges to account for the value of returned goods.
    • 0๏ธโƒฃ ListRefunds now returns an approximate number of refunds (default: 100, max: 200). The response may contain more results than the prescribed limit when refunds are made simultaneously to multiple tenders in a payment or when refunds are generated from exchanges to account for the value of returned goods.
    • is_exchange is added to V1Refund and V1Tender. Refunds and tenders marked in this way ๐Ÿšš represent the value of returned goods in an exchange, rather than actual money movement.