diff --git a/CHANGELOG.md b/CHANGELOG.md index dd2e8ed..ef35478 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,12 +6,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] ### Fixed +<<<<<<< HEAD +- Fixed return type for `filesApi.downloadFile` function +======= - Corrected `FieldResponse` schema to use `GetField` instead of `Field` to ensure GET responses accurately reflect all field types returned by the API +>>>>>>> origin/master ## Added - Added `is_archived` field in search response schemas for deals and leads ### Fixed - Fixed PHP SDK v2 Configuration to use correct `/v2` API endpoints after OAuth token refresh instead of defaulting to `/v1` +## [14.3.2](https://github.com/pipedrive/client-php/compare/14.3.1...14.3.2) (2025-11-18) + ## [14.3.1](https://github.com/pipedrive/client-php/compare/14.3.0...14.3.1) (2025-11-18) ## [14.3.0](https://github.com/pipedrive/client-php/compare/14.2.1...14.3.0) (2025-10-06) diff --git a/lib/versions/v1/Configuration.php b/lib/versions/v1/Configuration.php index bdda3a5..0a88676 100644 --- a/lib/versions/v1/Configuration.php +++ b/lib/versions/v1/Configuration.php @@ -111,11 +111,11 @@ class Configuration */ protected string $host = 'https://api.pipedrive.com/v1'; /** - * User agent of the HTTP request, set to "Pipedrive-SDK-PHP-13.x" by default + * User agent of the HTTP request, set to "Pipedrive-SDK-PHP-14.x" by default * * @var string */ - protected string $userAgent = 'Pipedrive-SDK-PHP-13.x'; + protected string $userAgent = 'Pipedrive-SDK-PHP-14.x'; /** * Debug switch (default set to false) diff --git a/lib/versions/v2/Configuration.php b/lib/versions/v2/Configuration.php index a94eade..1a2ebb3 100644 --- a/lib/versions/v2/Configuration.php +++ b/lib/versions/v2/Configuration.php @@ -111,11 +111,11 @@ class Configuration */ protected string $host = 'https://api.pipedrive.com/api/v2'; /** - * User agent of the HTTP request, set to "Pipedrive-SDK-PHP-13.x" by default + * User agent of the HTTP request, set to "Pipedrive-SDK-PHP-14.x" by default * * @var string */ - protected string $userAgent = 'Pipedrive-SDK-PHP-13.x'; + protected string $userAgent = 'Pipedrive-SDK-PHP-14.x'; /** * Debug switch (default set to false)