Skip to content
Merged
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
9 changes: 3 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 1.11.0 - 2026.08.31

### Added

- Added service `Services\Catalog\ProductPropertyFeature` with support for `catalog.productPropertyFeature.*`
Expand Down Expand Up @@ -452,6 +454,7 @@
instances instead of `CatalogItemResult` ([#527](https://github.com/bitrix24/b24phpsdk/issues/527))
### Changed

- Added PHP 8.5 to supported versions in `composer.json` (`php` requirement updated to `8.2.* || 8.3.* || 8.4.* || 8.5.*`)
- `Bitrix24\SDK\Services\Placement\Service\Placement::bind()` — `$options` parameter now accepts `PlacementOptionsInterface|array` (previously `array` only), enabling typed fluent options builders to be passed directly

## 3.0.0 - 2026.01.01
Expand Down Expand Up @@ -732,12 +735,6 @@ Supported in bitrix24-php-sdk methods count: 697
Coverage percentage: 59.83% 🚀
Supported in bitrix24-php-sdk methods with batch wrapper count: 91
```
## 1.11.0 - upcoming

### Changed

- Added PHP 8.5 to supported versions in `composer.json` (`php` requirement updated to `8.2.* || 8.3.* || 8.4.* || 8.5.*`)

## 1.10.1 - 2026.02.25
### Fixed

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ If You work on Windows:
- please use [WSL - Windows Subsystem for Linux](https://learn.microsoft.com/en-us/windows/wsl/)
- if your filesystem is NTFS, You can disable flag `git config --global core.protectNTFS false` for checkout folders started with dot.

Or add `"bitrix24/b24phpsdk": "1.10.*"` to `composer.json` of your application.
Or add `"bitrix24/b24phpsdk": "1.11.*"` to `composer.json` of your application.

## B24PhpSdk ✨FEATURES✨

Expand Down
2 changes: 1 addition & 1 deletion src/Core/ApiClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class ApiClient implements ApiClientInterface
/**
* @const string
*/
protected const SDK_VERSION = '1.10.0';
protected const SDK_VERSION = '1.11.0';

protected const SDK_USER_AGENT = 'b24-php-sdk-vendor';

Expand Down
Loading