Skip to content

Commit c86458d

Browse files
Merge pull request #118 from CyberfusionIO/fix/missing-id-update
Add missing ID to custom config update payload
2 parents 1bedc59 + 3f70e80 commit c86458d

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66
this package and not the Core API. See the changelog of the [Core API](https://core-api.cyberfusion.io/redoc#section/Changelog)
77
for detailed information.
88

9+
## [1.114.2]
10+
11+
### Fixed
12+
13+
- Custom config update.
14+
915
## [1.114.1]
1016

1117
### Changed

src/Client.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Client implements ClientContract
2020

2121
private const TIMEOUT = 180;
2222

23-
private const VERSION = '1.114.1';
23+
private const VERSION = '1.114.2';
2424

2525
private const USER_AGENT = 'cyberfusion-cluster-api-client/' . self::VERSION;
2626

src/Endpoints/CustomConfigs.php

+1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ public function update(CustomConfig $customConfig): Response
116116
'server_software_name',
117117
'contents',
118118
'cluster_id',
119+
'id',
119120
])
120121
);
121122

0 commit comments

Comments
 (0)