forked from softlayer/softlayer-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
97 lines (48 loc) · 4.05 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
3.0.2
* CLI+API: Simplified object mask reformatting and added support for more complex masks.
* CLI: Fixed the sl bmc create --network argument.
* CLI+API: Improved output of the message queue feature and fixed some minor bugs.
* CLI: Fixed an error when using --test and ordering a non-private subnet.
* API: Fix to prevent double counting results in summary_by_datacenter().
* CLI+API: Added IPMI IP address to hardware details.
* CLI: Added support for ordering multiple disks when creating a CCI.
* API: Added flag to disable compression on HTTP requests.
* CLI: Added CIDR information to subnet displays.
3.0.1
* CLI: Fixed an error message about pricing information that appeared when ordering a new private subnet.
* CLI+API: Added ability to specify SSH keys when reloading CCIs and servers.
3.0.0
* Many bug fixes and consistency improvements
* API: Removes old API client interfaces which have been deprecated in the v2. See link for more details: https://softlayer-api-python-client.readthedocs.org/en/latest/api/client/#backwards-compatibility
* CLI+API: Improved dedicated server ordering. Adds power management for hardware servers: power-on, power-off, power-cycle, reboot
* CLI+API: Adds a networking manager and adds several network-related CLI modules. This includes the ability to:
* list, create, cancel and assign global IPs
* list, create, cancel and detail subnets. Also has the ability to lookup details about an IP address with 'sl subnet lookup'
* list, detail VLANs
* show and edit RWhois data
* CLI+API: Adds SoftLayer Message Queue Service bindings (as a manager) and a CLI counterpart. With this you can interact with existing message queue accounts
* CLI+API: Ability to manage SSH Keys with a manager and a CLI module
* CLI+API: Adds the ability to create CCIs with the following options: metadata, post-install script, SSH key
* CLI: Adds templating for creating CCIs and hardware nodes which can be used to create more CCIs and hardware with the same settings
* CLI+API: Adds the ability to create hardware servers with a default SSH key
* CLI: Adds a --debug option to print out debugging information. --debug=3 is the highest log level which prints full HTTP request/responses including the body
* CLI: The commands in the main help are now organized into categories
2.3.0
* Several bug fixes and improvements
* Removed Python 2.5 support. Some stuff MIGHT work with 2.5 but it is no longer tested
* API: Refactored managers into their own module to not clutter the top level
* CLI+API: Added much more hardware support: Filters for hardware listing, dedicated server/bare metal cloud ordering, hardware cancellation
* CLI+API: Added DNS Zone filtering (server side)
* CLI+API: Added Post Install script support for CCIs and hardware
* CLI: Added Message queue functionality
* CLI: Added --debug option to CLI commands
* API: Added more logging
* 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)
2.2.0
* Consistency changes/bug fixes
* Added sphinx documentation. See it here: https://softlayer-api-python-client.readthedocs.org
* CCI: Adds Support for Additional Disks
* CCI: Adds a way to block until transactions are done on a CCI
* CLI: For most CCI commands, you can specify id, hostname, private ip or public ip as <identifier>
* CLI: Adds the ability to filter list results for CCIs
* 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