Skip to content

Commit 5f8184d

Browse files
authored
chore: prep v8.6.0 for release (#381)
# Description <!-- Please provide a general summary of your PR changes and link any related issues or other pull requests. --> # Testing <!-- Please provide details on how you tested this code. See below. - All pull requests must be tested (unit tests where possible with accompanying cassettes, or provide a screenshot of end-to-end testing when unit tests are not possible) - New features must get a new unit test - Bug fixes/refactors must re-record existing cassettes --> # Pull Request Type Please select the option(s) that are relevant to this PR. - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Improvement (fixing a typo, updating readme, renaming a variable name, etc)
1 parent 10d7952 commit 5f8184d

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CHANGELOG
22

3+
## v8.6.0 (2026-02-20)
4+
5+
- Adds the following functions:
6+
- `fedexRegistration.registerAddress`
7+
- `fedexRegistration.requestPin`
8+
- `fedexRegistration.validatePin`
9+
- `fedexRegistration.submitInvoice`
10+
311
## v8.5.0 (2026-02-03)
412

513
- Adds the following functions usable by child and referral customer users (closes #375):

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "easypost/easypost-php",
33
"description": "EasyPost Shipping API Client Library for PHP",
4-
"version": "8.5.0",
4+
"version": "8.6.0",
55
"keywords": [
66
"shipping",
77
"api",

lib/EasyPost/Constant/Constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ abstract class Constants
1111
const BETA_API_VERSION = 'beta';
1212

1313
// Library constants
14-
const LIBRARY_VERSION = '8.5.0';
14+
const LIBRARY_VERSION = '8.6.0';
1515
const SUPPORT_EMAIL = 'support@easypost.com';
1616

1717
// Validation

lib/easypost.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
// Required PHP extensions
66
if (!function_exists('json_decode')) {
7-
throw new Exception('EasyPost needs the JSON PHP extension.');
7+
throw new \Exception('EasyPost needs the JSON PHP extension.');
88
}
99

1010
// Exception Base Classes
@@ -104,6 +104,7 @@
104104
require_once(dirname(__FILE__) . '/EasyPost/Service/EmbeddableService.php');
105105
require_once(dirname(__FILE__) . '/EasyPost/Service/EndShipperService.php');
106106
require_once(dirname(__FILE__) . '/EasyPost/Service/EventService.php');
107+
require_once(dirname(__FILE__) . '/EasyPost/Service/FedExRegistrationService.php');
107108
require_once(dirname(__FILE__) . '/EasyPost/Service/InsuranceService.php');
108109
require_once(dirname(__FILE__) . '/EasyPost/Service/OrderService.php');
109110
require_once(dirname(__FILE__) . '/EasyPost/Service/ParcelService.php');

0 commit comments

Comments
 (0)