From 578fb2911411421eace4c8886bd046b673641691 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 00:47:53 +0000 Subject: [PATCH] chore(master): release 5.1.3 --- .github/.release-please-manifest.json | 2 +- CHANGELOG.md | 18 ++++++++++++++++++ composer.json | 2 +- src/Models/Request/DefaultAgent.php | 2 +- 4 files changed, 21 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 5ceda3a..2fd5e1b 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "5.1.2" + ".": "5.1.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7c87023 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +## [5.1.3](https://github.com/solapi/solapi-php/compare/v5.1.2...v5.1.3) (2026-05-11) + + +### Bug Fixes + +* getBalance 등 응답 메소드 TypeError 해결 및 매핑 정리 ([#26](https://github.com/solapi/solapi-php/issues/26)) ([5c02761](https://github.com/solapi/solapi-php/commit/5c0276104f5363d95e00d1169a13b247ba89a8b6)) +* harden response mapping edge cases ([aff1a43](https://github.com/solapi/solapi-php/commit/aff1a43bb155047b992ce374c51047aacac67f69)) +* 응답 매핑 TypeError 수정 및 CI·테스트 인프라 정비 ([af1fdaf](https://github.com/solapi/solapi-php/commit/af1fdafc890a83d54c47e145ae92da5164fc5281)) +* 응답 메소드 TypeError 해결 및 nested 객체 매핑 구조 정리 ([#26](https://github.com/solapi/solapi-php/issues/26)) ([1a91baa](https://github.com/solapi/solapi-php/commit/1a91baabbf1e801e508b1635ea0a78667b12de41)) + + +### Miscellaneous Chores + +* .claude/ 디렉토리를 .gitignore에 추가 ([bad8199](https://github.com/solapi/solapi-php/commit/bad8199bd07dae77636c0029809c6ba5153a6ca9)) +* **deps:** phpunit·sebastian/comparator 패치 버전 업데이트 ([5e6159b](https://github.com/solapi/solapi-php/commit/5e6159b3612d2b98e7c4383348c0abcd3509500e)) +* gitignore·의존성·테스트 문서 정리 ([fe6bae9](https://github.com/solapi/solapi-php/commit/fe6bae9c467a948110fd3f177096a349a0ecdcff)) diff --git a/composer.json b/composer.json index 55772dd..b7677ba 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "solapi/sdk", "description": "SOLAPI SDK for PHP", - "version": "5.1.2", + "version": "5.1.3", "type": "library", "license": "MIT", "autoload": { diff --git a/src/Models/Request/DefaultAgent.php b/src/Models/Request/DefaultAgent.php index 5727a21..b79ee73 100644 --- a/src/Models/Request/DefaultAgent.php +++ b/src/Models/Request/DefaultAgent.php @@ -16,7 +16,7 @@ class DefaultAgent public function __construct() { - $this->sdkVersion = 'php/5.1.2'; // x-release-please-version + $this->sdkVersion = 'php/5.1.3'; // x-release-please-version $this->osPlatform = PHP_OS . " | " . phpversion(); } }