Skip to content

Commit 80bbf91

Browse files
authored
Merge pull request #36 from CyberfusionNL/bugfix/1.86.3
Do not filter fields for the login endpoints
2 parents a4ad475 + 320acb4 commit 80bbf91

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
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.3]
10+
11+
### Fixed
12+
13+
- Do not filter fields for the login endpoints.
14+
915
## [1.86.2]
1016

1117
### Fixed

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.2';
23+
private const VERSION = '1.86.3';
2424
private const USER_AGENT = 'cyberfusion-cluster-api-client/' . self::VERSION;
2525

2626
private Configuration $configuration;

src/Endpoints/Authentication.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function login(Login $login): Response
2121
$request = (new Request())
2222
->setMethod(Request::METHOD_POST)
2323
->setUrl('login/access-token')
24-
->setBody($this->filterFields($login->toArray()))
24+
->setBody($login->toArray())
2525
->setAuthenticationRequired(false)
2626
->setBodySchema(Request::BODY_SCHEMA_FORM);
2727

0 commit comments

Comments
 (0)