Skip to content

Commit 0d0abfe

Browse files
committed
Release v11.1.0
1 parent 52db33c commit 0d0abfe

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [11.1.0](https://github.com/pipedrive/client-php/compare/11.0.0...11.1.1) (2025-05-26)
810
### Fixed
911
- Fixed the OAuth scopes of Deal to Lead conversion and Lead to Deal conversion endpoints
12+
### Added
13+
- Added `smart_bcc_email` to optional `include_fields` in Deals API v2
14+
- Added `is_archived` to request bodies of POST `deals` endpoints and PUT/PATCH `/deals/:id` endpoints
15+
- Added `archive_time` to request bodies of POST `deals` endpoints
1016

1117
## [11.0.0](https://github.com/pipedrive/client-php/compare/10.0.0...11.0.0) (2025-05-09)
1218

lib/versions/v1/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@ class Configuration
111111
*/
112112
protected string $host = 'https://api.pipedrive.com/v1';
113113
/**
114-
* User agent of the HTTP request, set to "Pipedrive-SDK-PHP-8.x" by default
114+
* User agent of the HTTP request, set to "Pipedrive-SDK-PHP-11.x" by default
115115
*
116116
* @var string
117117
*/
118-
protected string $userAgent = 'Pipedrive-SDK-PHP-8.x';
118+
protected string $userAgent = 'Pipedrive-SDK-PHP-11.x';
119119

120120
/**
121121
* Debug switch (default set to false)

lib/versions/v2/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@ class Configuration
111111
*/
112112
protected string $host = 'https://api.pipedrive.com/api/v2';
113113
/**
114-
* User agent of the HTTP request, set to "Pipedrive-SDK-PHP-8.x" by default
114+
* User agent of the HTTP request, set to "Pipedrive-SDK-PHP-11.x" by default
115115
*
116116
* @var string
117117
*/
118-
protected string $userAgent = 'Pipedrive-SDK-PHP-8.x';
118+
protected string $userAgent = 'Pipedrive-SDK-PHP-11.x';
119119

120120
/**
121121
* Debug switch (default set to false)

0 commit comments

Comments
 (0)