Releases: EasyPost/easypost-php
Releases · EasyPost/easypost-php
v7.4.2
v7.4.1
- Fix parameters for retrieving next page of child users
v7.4.0
v7.3.0
What's Changed
- Adds new
shipment.recommendShipDate
,smartrate.recommendShipDate
, andsmartrate.estimateDeliveryDate
functions - Routes
UpsAccount
,UpsMailInnovationsAccount
, andUpsSurepostAccount
create/update requests to the new/ups_oauth_registrations
endpoint- Starting
2024-08-05
, UPS accounts will require a new payload to register or update. See UPS OAuth 2.0 Update for more details
- Starting
Related PRs
- chore: deprecate tracker create_list by @Justintime50 in #339
- fix: docs link by @Justintime50 in #340
- Update CarrierService update and create method to account UPS endpoints by @jchen293 in #341
- Add new smartrate endpoints functions by @jchen293 in #342
- prep release v7.3.0 by @jchen293 in #343
Full Changelog: v7.2.0...v7.3.0
v7.2.0
v5.9.0
What's Changed
- [ADDED] Beta
paginated_api_keys
functionality to theUser
class- Retrieves a paginated list of API keys for the authenticated user, versus
api_keys
, which returns an unpaginated list
- Retrieves a paginated list of API keys for the authenticated user, versus
Related PRs
- [FEAT] Beta
paginated_api_keys
function by @nwithan8 in #334 - [chore] Prep for v5.9.0 release by @nwithan8 in #335
Full Changelog: v7.1.0...v5.9.0
v7.1.0
v7.0.0
- Drops support for PHP 7.4
- Adds support for PHP 8.3
- Persists the HTTP client inside of the
EasyPostClient
via thehttpClient
property to reduce memory consumption on consecutive requests - Adds type declarations for parameters and return values throughout the library, corrects docstrings to match
- Removed
withCarbonOffset
parameter fromcreate
,buy
, andregenerateRates
functions of the Shipment service as EasyPost now offers Carbon Neutral shipments by default for free - Fixes a bug where the original filtering criteria of
all
calls wasn't passed along togetNextPage
calls. Now, these are persisted via a_params
key on response objects locally - Removes the undocumented
createAndBuy
function from theBatch
service. The proper usage is to create a batch first and buy it separately - Renames
primaryOrSecondary
topriority
to match the API name for the parameter - Corrects the order of the
userId
andemail
parameters in theupdateEmail
function of the ReferralCustomer service to match the rest of the library where IDs are always the first parameter - Fix various bugs throughout the library
v6.9.1
v6.9.0
- Deprecates API key-related functions in the
user
service and introduces the replacement functions in theapi_keys
service - Fixes a bug that changed the timezone to UTC on each request without resetting it to the original timezone in use (closes #310)
- Fixes documentation generation command invocation