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
chore(master): release 5.1.3
  • Loading branch information
github-actions[bot] authored May 11, 2026
commit 578fb2911411421eace4c8886bd046b673641691
2 changes: 1 addition & 1 deletion .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "5.1.2"
".": "5.1.3"
}
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion src/Models/Request/DefaultAgent.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
}