Releases: TomorrowIdeas/plaid-sdk-php
Releases · TomorrowIdeas/plaid-sdk-php
Release 0.14
Features
- Adding refreshTransactions() method.
Release 0.13
Features
- Adding support for a payment schedule when creating a payment.
Release 0.12
Fixes
- Fix typo on
redirect_uri
in createLinkToken() method - Fix account filter structure by adding in
account_subtypes
property
Release 0.11
Updates
$public_key
in constructor is now nullable with a default value of null.- Methods that once used the
$public_key
property have now been moved over to using client credentials.
New features
createLinkToken
method added to generate temporary link tokens to be used by your application rather than using the staticpublic_token
. Please see the Plaid API docs for more information: https://plaid.com/docs/#create-link-token
Deprecation warning
In the forthcoming 1.0 release, the $public_key
parameter will be removed from the constructor entirely.
Release 0.10
Additions
- Added support for Payment Initiation endpoints (UK only.)
Updates
Plaid
class is no longer marked asfinal
and can now be extended.
Release 0.9
Updates
- Adding support for verifying an incoming webhook via
getWebhookVerificationKey(string $key_id)
.
Fixes
- Corrected typo in documentation for
updateWebhook
method.
Release 0.8
Fixes
- Requests with empty bodies should send an empty object.
Updates
- Bumping Shuttle version.
- Adding unit test around sending a request with an empty body.
Release 0.7
Fixes
- Removing unsupported "include_insights" in getAssetReportPdf() method that was causing a
400 Bad Request
to be returned by Plaid.
Release 0.6
New features
- Investments via
getInvestmentHoldings
andgetInvestmentTransactions
methods
Updates
- Adding links to Plaid documentation for each method in README.md
- Adding clarifying information about
$options
parameter in many methods to the README.md
Release 0.5
Updates
- Removing
release
script and Makefile recipe for it. All releases done through Github now. - Adding config to run tests on PHP 7.3 in Travis CI
New features
- Adding support for Dwolla processor via
createDwollaToken
method. Refer to documentation for more information.