From ac20b160c854a7a2c702c8231ce454cd4ba6cf03 Mon Sep 17 00:00:00 2001 From: Christopher Gallo Date: Fri, 15 Feb 2019 16:23:11 -0600 Subject: [PATCH] Version 5.7.0 --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ SoftLayer/consts.py | 2 +- setup.py | 2 +- snap/snapcraft.yaml | 2 +- 4 files changed, 30 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 779b035de..8f1d3c128 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,33 @@ # Change Log +## [5.7.0] - 2018-11-16 +- Changes: https://github.com/softlayer/softlayer-python/compare/v5.6.4...master + ++ #1099 Support for security group Ids ++ event-log cli command ++ #1069 Virtual Placement Group Support + ``` + slcli vs placementgroup --help + Commands: + create Create a placement group + create-options List options for creating Reserved Capacity + delete Delete a placement group. + detail View details of a placement group. + list List Reserved Capacity groups. + ``` ++ #962 Rest Transport improvements. Properly handle HTTP exceptions instead of crashing. ++ #1090 removed power_state column option from "slcli server list" ++ #676 - ipv6 support for creating virtual guests + * Refactored virtual guest creation to use Product_Order::placeOrder instead of Virtual_Guest::createObject, because createObject doesn't allow adding IPv6 ++ #882 Added table which shows the status of each url in object storage ++ #1085 Update provisionedIops reading to handle float-y values ++ #1074 fixed issue with config setup ++ #1081 Fix file volume-cancel ++ #1059 Support for SoftLayer_Hardware_Server::toggleManagementInterface + * `slcli hw toggle-ipmi` + + ## [5.6.4] - 2018-11-16 - Changes: https://github.com/softlayer/softlayer-python/compare/v5.6.3...v5.6.4 diff --git a/SoftLayer/consts.py b/SoftLayer/consts.py index 8a1368b26..0400a719c 100644 --- a/SoftLayer/consts.py +++ b/SoftLayer/consts.py @@ -5,7 +5,7 @@ :license: MIT, see LICENSE for more details. """ -VERSION = 'v5.6.4' +VERSION = 'v5.7.0' 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/' diff --git a/setup.py b/setup.py index a345d2749..e0ff8b169 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name='SoftLayer', - version='5.6.4', + version='5.7.0', description=DESCRIPTION, long_description=LONG_DESCRIPTION, author='SoftLayer Technologies, Inc.', diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index dda9306a0..ce6931ed3 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: slcli # check to see if it's available -version: '5.6.4+git' # check versioning +version: '5.7.0+git' # check versioning summary: Python based SoftLayer API Tool. # 79 char long summary description: | A command-line interface is also included and can be used to manage various SoftLayer products and services.