File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6
6
this package and not the cluster API. See the changelog of the [ cluster API] ( https://cluster-api.cyberfusion.nl/redoc#section/Changelog )
7
7
for detailed information.
8
8
9
+ ## [ 1.85.1]
10
+
11
+ ### Fixed
12
+
13
+ - Allow the public key to be null in ` getPublicKey ` method.
14
+
9
15
## [ 1.85.0]
10
16
11
17
### Removed
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ class Client implements ClientContract
20
20
{
21
21
private const CONNECT_TIMEOUT = 60 ;
22
22
private const TIMEOUT = 180 ;
23
- private const VERSION = '1.85.0 ' ;
23
+ private const VERSION = '1.85.1 ' ;
24
24
private const USER_AGENT = 'cyberfusion-cluster-api-client/ ' . self ::VERSION ;
25
25
26
26
private Configuration $ configuration ;
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public function setName(string $name): self
35
35
return $ this ;
36
36
}
37
37
38
- public function getPublicKey (): string
38
+ public function getPublicKey (): ? string
39
39
{
40
40
return $ this ->publicKey ;
41
41
}
You can’t perform that action at this time.
0 commit comments