Skip to content

Commit b18f294

Browse files
committed
Version bump to v2.3.0
1 parent fb08160 commit b18f294

5 files changed

Lines changed: 31 additions & 8 deletions

File tree

CHANGELOG

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
2.3.0
2+
3+
* Several bug fixes and improvements
4+
5+
* Removed Python 2.5 support. Some stuff MIGHT work with 2.5 but it is no longer tested
6+
7+
* API: Refactored managers into their own module to not clutter the top level
8+
9+
* CLI+API: Added much more hardware support: Filters for hardware listing, dedicated server/bare metal cloud ordering, hardware cancellation
10+
11+
* CLI+API: Added DNS Zone filtering (server side)
12+
13+
* CLI+API: Added Post Install script support for CCIs and hardware
14+
15+
* CLI: Added Message queue functionality
16+
17+
* CLI: Added --debug option to CLI commands
18+
19+
* API: Added more logging
20+
21+
* API: Added token-based auth so you can use the API bindings with your username/password if you want. (It's still highly recommended to use your API key instead of your password)
22+
23+
124
2.2.0
225

326
* Consistency changes/bug fixes
@@ -8,8 +31,8 @@
831

932
* CCI: Adds a way to block until transactions are done on a CCI
1033

11-
* CLI(CCI): For most commands, you can specify id, hostname, private ip or public ip as <identifier>
34+
* CLI: For most CCI commands, you can specify id, hostname, private ip or public ip as <identifier>
1235

13-
* CLI(CCI): Adds the ability to filter list results for CCIs
36+
* CLI: Adds the ability to filter list results for CCIs
1437

15-
* API: for large result sets, requests can now be chunked into smaller batches on the server side. Using service.iter_call('getObjects', ...) or service.getObjects(..., iter=True) will return a generator regardless of the results returned. offset and limit can be passed in like normal. An additional named parameter of 'chunk' is used to limit the number of items coming back in a single request, defaults to 100.
38+
* API: for large result sets, requests can now be chunked into smaller batches on the server side. Using service.iter_call('getObjects', ...) or service.getObjects(..., iter=True) will return a generator regardless of the results returned. offset and limit can be passed in like normal. An additional named parameter of 'chunk' is used to limit the number of items coming back in a single request, defaults to 100

SoftLayer/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
:copyright: (c) 2013, SoftLayer Technologies, Inc. All rights reserved.
77
:license: BSD, see LICENSE for more details.
88
"""
9-
VERSION = 'v2.2.0'
9+
VERSION = 'v2.3.0'
1010
API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3/'
1111
API_PRIVATE_ENDPOINT = 'https://api.service.softlayer.com/xmlrpc/v3/'
1212
API_PUBLIC_ENDPOINT_REST = 'https://api.softlayer.com/rest/v3/'

SoftLayer/tests/managers/metadata_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def test_basic(self, make_api_call):
9292
make_api_call.assert_called_with(
9393
'GET', self.url,
9494
timeout=5,
95-
http_headers={'User-Agent': 'SoftLayer Python v2.2.0'})
95+
http_headers={'User-Agent': 'SoftLayer Python v2.3.0'})
9696
self.assertEqual(make_api_call(), r)
9797

9898
@patch('SoftLayer.managers.metadata.make_rest_api_call')

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@
4949
# built documents.
5050
#
5151
# The short X.Y version.
52-
version = '2.2.0'
52+
version = '2.3.0'
5353
# The full version, including alpha/beta/rc tags.
54-
release = '2.2.0'
54+
release = '2.3.0'
5555

5656
# The language for content autogenerated by Sphinx. Refer to documentation
5757
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
setup(
4040
name='SoftLayer',
41-
version='2.2.0',
41+
version='2.3.0',
4242
description=description,
4343
long_description=long_description,
4444
author='SoftLayer Technologies, Inc.',

0 commit comments

Comments
 (0)