File tree Expand file tree Collapse file tree 4 files changed +34
-3
lines changed Expand file tree Collapse file tree 4 files changed +34
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
3
4
- ## [ 5.8.5] - 2019-12-20
4
+ ## [ 5.8.5] - 2012-01-29
5
+ https://github.com/softlayer/softlayer-python/compare/v5.8.4...v5.8.5
6
+
7
+ - #1195 Fixed an issue with ` slcli vs dns-sync --ptr ` . Added ` slcli hw dns-sync `
8
+ - #1199 Fix File Storage failback and failover.
9
+ - #1198 Fix issue where the summary command fails due to None being provided as the datacenter name.
10
+ - #1208 Added The following commands:
11
+ - ` slcli block volume-limits `
12
+ - ` slcli file volume-limits `
13
+ - #1209 Add testing/CI for python 3.8.
14
+ - #1212 Fix vs detail erroring on servers pending cancellation.
15
+ - #1210 support subnet ACL management through cli
16
+ + ` slcli block subnets-list `
17
+ + ` slcli block subnets-assign `
18
+ + ` slcli block subnets-remove `
19
+ - #1215 Added documentation for all SLCLI commands.
20
+
21
+
22
+ ## [ 5.8.4] - 2019-12-20
5
23
https://github.com/softlayer/softlayer-python/compare/v5.8.3...v5.8.4
6
24
7
25
- #1199 Fix block storage failback and failover.
Original file line number Diff line number Diff line change 5
5
6
6
:license: MIT, see LICENSE for more details.
7
7
"""
8
- VERSION = 'v5.8.4 '
8
+ VERSION = 'v5.8.5 '
9
9
API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3.1/'
10
10
API_PRIVATE_ENDPOINT = 'https://api.service.softlayer.com/xmlrpc/v3.1/'
11
11
API_PUBLIC_ENDPOINT_REST = 'https://api.softlayer.com/rest/v3.1/'
Original file line number Diff line number Diff line change @@ -110,3 +110,16 @@ Block Commands
110
110
.. click :: SoftLayer.CLI.block.limit:cli
111
111
:prog: block volume-limits
112
112
:show-nested:
113
+
114
+
115
+ .. click :: SoftLayer.CLI.block.subnets.list:cli
116
+ :prog: block subnets-list
117
+ :show-nested:
118
+
119
+ .. click :: SoftLayer.CLI.block.subnets.assign:cli
120
+ :prog: block subnets-assign
121
+ :show-nested:
122
+
123
+ .. click :: SoftLayer.CLI.block.subnets.remove:cli
124
+ :prog: block subnets-remove
125
+ :show-nested:
Original file line number Diff line number Diff line change 14
14
15
15
setup (
16
16
name = 'SoftLayer' ,
17
- version = '5.8.4 ' ,
17
+ version = '5.8.5 ' ,
18
18
description = DESCRIPTION ,
19
19
long_description = LONG_DESCRIPTION ,
20
20
author = 'SoftLayer Technologies, Inc.' ,
You can’t perform that action at this time.
0 commit comments