File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
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.91.1]
10
+
11
+ ### Fixed
12
+
13
+ - Add the missing mail hostnames endpoint.
14
+
9
15
## [ 1.91.0]
10
16
11
17
### Changed
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class Client implements ClientContract
17
17
{
18
18
private const CONNECT_TIMEOUT = 60 ;
19
19
private const TIMEOUT = 180 ;
20
- private const VERSION = '1.91.0 ' ;
20
+ private const VERSION = '1.91.1 ' ;
21
21
private const USER_AGENT = 'cyberfusion-cluster-api-client/ ' . self ::VERSION ;
22
22
private GuzzleClient $ httpClient ;
23
23
Original file line number Diff line number Diff line change 24
24
use Cyberfusion \ClusterApi \Endpoints \MailAccounts ;
25
25
use Cyberfusion \ClusterApi \Endpoints \MailAliases ;
26
26
use Cyberfusion \ClusterApi \Endpoints \MailDomains ;
27
+ use Cyberfusion \ClusterApi \Endpoints \MailHostnames ;
27
28
use Cyberfusion \ClusterApi \Endpoints \Malwares ;
28
29
use Cyberfusion \ClusterApi \Endpoints \Nodes ;
29
30
use Cyberfusion \ClusterApi \Endpoints \PassengerApps ;
@@ -141,6 +142,11 @@ public function mailDomains(): MailDomains
141
142
return new MailDomains ($ this ->client );
142
143
}
143
144
145
+ public function mailHostnames (): MailHostnames
146
+ {
147
+ return new MailHostnames ($ this ->client );
148
+ }
149
+
144
150
public function malwares (): Malwares
145
151
{
146
152
return new Malwares ($ this ->client );
You can’t perform that action at this time.
0 commit comments