Skip to content

Commit 749708c

Browse files
authored
Merge pull request #33 from CyberfusionNL/bugfix/v1.86.1
Do not require `rabbitmq` for unix users as those are nullable
2 parents 675dfb7 + 810a972 commit 749708c

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
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 cluster API. See the changelog of the [cluster API](https://cluster-api.cyberfusion.nl/redoc#section/Changelog)
77
for detailed information.
88

9+
## [1.86.1]
10+
11+
### Fixed
12+
13+
- Do not require `rabbitmq` for unix users as those are nullable.
14+
915
## [1.86.0]
1016

1117
### Added

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 CONNECT_TIMEOUT = 60;
2222
private const TIMEOUT = 180;
23-
private const VERSION = '1.86.0';
23+
private const VERSION = '1.86.1';
2424
private const USER_AGENT = 'cyberfusion-cluster-api-client/' . self::VERSION;
2525

2626
private Configuration $configuration;

src/Endpoints/UnixUsers.php

-4
Original file line numberDiff line numberDiff line change
@@ -174,10 +174,6 @@ public function update(UnixUser $unixUser): Response
174174
'unix_id',
175175
'home_directory',
176176
'ssh_directory',
177-
'rabbitmq_username',
178-
'rabbitmq_virtual_host_name',
179-
'rabbitmq_password',
180-
'rabbitmq_encryption_key',
181177
]);
182178

183179
$request = (new Request())

0 commit comments

Comments
 (0)