Thanks to visit codestin.com
Credit goes to github.com

Skip to content

v5.8.5 #1220

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 29, 2020
Merged

v5.8.5 #1220

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,25 @@
# Change Log


## [5.8.5] - 2019-12-20
## [5.8.5] - 2012-01-29
https://github.com/softlayer/softlayer-python/compare/v5.8.4...v5.8.5

- #1195 Fixed an issue with `slcli vs dns-sync --ptr`. Added `slcli hw dns-sync`
- #1199 Fix File Storage failback and failover.
- #1198 Fix issue where the summary command fails due to None being provided as the datacenter name.
- #1208 Added The following commands:
- `slcli block volume-limits`
- `slcli file volume-limits`
- #1209 Add testing/CI for python 3.8.
- #1212 Fix vs detail erroring on servers pending cancellation.
- #1210 support subnet ACL management through cli
+ `slcli block subnets-list`
+ `slcli block subnets-assign`
+ `slcli block subnets-remove`
- #1215 Added documentation for all SLCLI commands.


## [5.8.4] - 2019-12-20
https://github.com/softlayer/softlayer-python/compare/v5.8.3...v5.8.4

- #1199 Fix block storage failback and failover.
Expand Down
2 changes: 1 addition & 1 deletion SoftLayer/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

:license: MIT, see LICENSE for more details.
"""
VERSION = 'v5.8.4'
VERSION = 'v5.8.5'
API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3.1/'
API_PRIVATE_ENDPOINT = 'https://api.service.softlayer.com/xmlrpc/v3.1/'
API_PUBLIC_ENDPOINT_REST = 'https://api.softlayer.com/rest/v3.1/'
Expand Down
13 changes: 13 additions & 0 deletions docs/cli/block.rst
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,16 @@ Block Commands
.. click:: SoftLayer.CLI.block.limit:cli
:prog: block volume-limits
:show-nested:


.. click:: SoftLayer.CLI.block.subnets.list:cli
:prog: block subnets-list
:show-nested:

.. click:: SoftLayer.CLI.block.subnets.assign:cli
:prog: block subnets-assign
:show-nested:

.. click:: SoftLayer.CLI.block.subnets.remove:cli
:prog: block subnets-remove
:show-nested:
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setup(
name='SoftLayer',
version='5.8.4',
version='5.8.5',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author='SoftLayer Technologies, Inc.',
Expand Down