From 9791d43a204fca7db8e53346cd3e93c8d87033c1 Mon Sep 17 00:00:00 2001 From: Phrase Date: Fri, 8 Nov 2024 15:56:30 +0000 Subject: [PATCH] Deploying from phrase/openapi@8250335b --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- composer.json | 2 +- lib/Configuration.php | 4 ++-- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5df09ce..d6209eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [2.6.0](https://github.com/phrase/openapi/compare/php-v2.5.0...php-v2.6.0) (2024-11-08) + + +### Features + +* **API:** Add Pagination header to POST search endpoints [[#457](https://github.com/phrase/openapi/issues/457)] ([#706](https://github.com/phrase/openapi/issues/706)) ([9a79fa3](https://github.com/phrase/openapi/commit/9a79fa31bb3b9d58272fa2f4e82d72d0d44a93a0)) + + +### Bug Fixes + +* **PHP:** Fix serializing nested form parameters #STRINGS-730 ([#703](https://github.com/phrase/openapi/issues/703)) ([32746b1](https://github.com/phrase/openapi/commit/32746b1a68f217a6130f27b7b52997941f8f6c9d)) + ## [2.5.0](https://github.com/phrase/openapi/compare/php-v2.4.0...php-v2.5.0) (2024-10-02) diff --git a/README.md b/README.md index d7bd47c..6391d64 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Phrase Strings is a translation management platform for software projects. You c This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: 2.0.0 -- Package version: 2.5.0 +- Package version: 2.6.0 - Build package: org.openapitools.codegen.languages.PhpClientCodegen For more information, please visit [https://developers.phrase.com/api/](https://developers.phrase.com/api/) diff --git a/composer.json b/composer.json index 0f8d6cb..b374a3d 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "phrase/phrase-php", - "version": "2.5.0", + "version": "2.6.0", "description": "Phrase Strings API Reference. Phrase Strings is a translation management platform for software projects. You can collaborate on language file translation with your team or order translations through our platform. The API allows you to import locale files, download locale files, tag keys or interact in other ways with the localization data stored in Phrase Strings for your account.", "keywords": [ "phrase", diff --git a/lib/Configuration.php b/lib/Configuration.php index 00b035d..c0286c9 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -86,7 +86,7 @@ class Configuration * * @var string */ - protected $userAgent = 'OpenAPI-Generator/2.5.0/PHP'; + protected $userAgent = 'OpenAPI-Generator/2.6.0/PHP'; /** * Debug switch (default set to false) @@ -395,7 +395,7 @@ public static function toDebugReport() $report .= ' OS: ' . php_uname() . PHP_EOL; $report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL; $report .= ' The version of the OpenAPI document: 2.0.0' . PHP_EOL; - $report .= ' SDK Package Version: 2.5.0' . PHP_EOL; + $report .= ' SDK Package Version: 2.6.0' . PHP_EOL; $report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL; return $report;