forked from RallyTools/RallyRestToolkitForPython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VERSIONS
89 lines (73 loc) · 4.34 KB
/
VERSIONS
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
0.8.7 - Dec 23, 2011
First public release (alpha)
0.8.8 - Jan 2012
introduced warn=boolean to Rally instantiation
removed inflate=boolean in Rally instantiation
0.8.9 - Jan 2012
putative fix for proxy support
0.8.10 - Feb 2012
better fix for proxy support
0.8.11 - Mar 24, 2012
better support for default workspace/project when user profile doesn't specify
a default
fixed assignment of ref value in _createShellArtifact (_ref no longer has the .js on end...)
0.8.12 - Mar 26, 2012
fixed fatal premature exercise of iterator on response in context check, defer to _getDefaults
0.9.1 - July 9, 2012
Upped default WSAPI version in config.py to 1.30
All entities that are subclasses of WorkspaceDomainObject now have a details method
that show the attribute values in an easy to read multiline format.
Dropped attempted discrimination of server value to determine if it is a name or an IPv4 address No longer look for http_proxy in environment, only https_proxy.
Introduced convenience methods dealing with attachments
0.9.2 - October 1, 2012
Fixed getProject method to take an optional name parm.
Added HTTP header item in config.py to set Content-Type to 'application/json'
Added keyword arg to restapi.Rally __init__ method to
allow specifying a verify_ssl_cert=True/False value to requests.session creation,
This results is passing on the the requests.session call a verify flag that it
uses to determine whether or not checking the SSL certificate is desired.
Modified the details method in entity.py to be more resilient by bypassing
attributes that an item might have but doesn't have as a query fetch spec
didn't include all potential attributes.
Fixed addAttachment to specify Attachment size as size of original attachment file
rather than the size of the base64 encoding result.
0.9.3 - October 7, 2012
Fixed Pinger class to use correct ping options on Linux and Windows platforms.
Updated exception catching and raising to use Python 2.6/2.7 compliant syntax.
0.9.4 - October 2013
Upped default WSAPI version to 1.43.
Tested against requests 2.0.0 which now support https via proxy.
Updated pyral.restapi.Rally to accommodate requests versions 0.x, 1.x and 2.x.
Fixed construction of multi-condition queries and broke out query construction into a separate code file.
Support for Rally dyna-types (PortfolioItem/<subtype> where subtype is one of Theme, Initiative or Feature.
Added UserIterationCapacity, Fixed the *CumulativeFlowData entity names.
Added internal facility to accept Rally reference identifiers in a list form and convert them
to a list of dicts with each dict containing a key-value pair for '_ref' and associated value.
Added a details method for any WorkspaceDomain derived entity instance.
1.0.0 - May 2014
Upped default WSAPI version to v2.0 and stated in docs that prior WSAPI versions (1.x) were no longer supported.
1.0.1 - June 2014
Patch to address flaw in WSAPI v2.0 projects collection endpoint having a mismatch between TotalResultCount and
actual information about projects.
1.1.0 - August 2014
Introduction of support for Rally API Key, along with rallyWorkset convenience method to superced rallySettings.
Defects fixed related to internalizing environment in rallySettings (and rallyWorkset)
and in getting allowed values for Rally types.
1.1.1 - March 2015
Fixed return value for updating a PortfolioItem sub-type instance.
Added the Milestone entity to the list of instantiable entities.
Added ability to query RecycleBin entries.
Added basic search method to Rally instance.
1.1.2 - February 2016
internal release only
minor style mods for Pinger
fixed handling of proxy value under some edge conditions
exploratory support for Python 3.5
1.2.0 - Oct 2016
support for Python 3.5
allow instantiation option to bypass use of Pinger
changed header to reflect change of company name to CA Technologies
added ranking convenience methods
modified handling of attribute allowedValues for better create/update performance
allow instantiation option to work with only one workspace for better performance for Subscriptions with large number of Workspaces
fix addAttachment handling to allow binary files and increase size limit to 50MB.