Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## v8.6.0 (2026-02-20)

- Adds the following functions:
- `fedexRegistration.registerAddress`
- `fedexRegistration.requestPin`
- `fedexRegistration.validatePin`
- `fedexRegistration.submitInvoice`

## v8.5.0 (2026-02-03)

- Adds the following functions usable by child and referral customer users (closes #375):
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "easypost/easypost-php",
"description": "EasyPost Shipping API Client Library for PHP",
"version": "8.5.0",
"version": "8.6.0",
"keywords": [
"shipping",
"api",
Expand Down
2 changes: 1 addition & 1 deletion lib/EasyPost/Constant/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ abstract class Constants
const BETA_API_VERSION = 'beta';

// Library constants
const LIBRARY_VERSION = '8.5.0';
const LIBRARY_VERSION = '8.6.0';
const SUPPORT_EMAIL = 'support@easypost.com';

// Validation
Expand Down
3 changes: 2 additions & 1 deletion lib/easypost.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

// Required PHP extensions
if (!function_exists('json_decode')) {
throw new Exception('EasyPost needs the JSON PHP extension.');
throw new \Exception('EasyPost needs the JSON PHP extension.');

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typo?

}

// Exception Base Classes
Expand Down Expand Up @@ -104,6 +104,7 @@
require_once(dirname(__FILE__) . '/EasyPost/Service/EmbeddableService.php');
require_once(dirname(__FILE__) . '/EasyPost/Service/EndShipperService.php');
require_once(dirname(__FILE__) . '/EasyPost/Service/EventService.php');
require_once(dirname(__FILE__) . '/EasyPost/Service/FedExRegistrationService.php');
require_once(dirname(__FILE__) . '/EasyPost/Service/InsuranceService.php');
require_once(dirname(__FILE__) . '/EasyPost/Service/OrderService.php');
require_once(dirname(__FILE__) . '/EasyPost/Service/ParcelService.php');
Expand Down
Loading