You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+38-30Lines changed: 38 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,11 +51,11 @@ relevant packages.
51
51
::
52
52
53
53
$ python
54
-
Python 2.6.5 [other Python interpreter info elided ...]
54
+
Python 2.6.6 [other Python interpreter info elided ...]
55
55
>> import requests
56
56
>> import pyral
57
57
>> pyral.__version__
58
-
(0, 9, 2)
58
+
(0, 9, 3)
59
59
60
60
61
61
@@ -255,41 +255,50 @@ Prerequisites
255
255
There are reports where requests > 0.9.3 resulted in connection problems (as in not being able to connect) that may be related to SSL. You should be able to use the verify_ssl_cert keyword argument when
256
256
obtaining a pyral Rally instance to overcome this issue.
257
257
If you are using requests >- 0.9.3, you must also have certifi-0.0.8 (available on PyPI)
* 0.9.2 - Fixed getProject to take optional project name argument.
263
-
Added HTTP header item in config.py to set Content-TYpe to 'application/json'.
264
-
Added recognition of verify_ssl_cert=True/False as keyword argment to
265
-
Rally constructor. Explicit specification results in passing a
266
-
verify=True/False to the underlying requests package. This can be
267
-
useful when dealing with an expired SSL certificate.
268
-
Upped default WSAPI version in config.py to 1.37 to support dyna-types
269
-
(specifically PortfolioItem and sub-types)..
270
-
Modified addAttachment to conform with non-backward compatible change in Rally WSAPI
271
-
involving how an attachment is related to an artifact.
272
-
Fixed defect in calculating an Attachment file size
273
-
(use pre-encoded rather than post-encoded size).
274
-
This release is intended as the final beta before a 1.0 release.
275
-
276
-
* 0.9.1 - Upped default WSAPI version in config.py to 1.30
277
-
All entities that are subclasses of WorkspaceDomainObject now have a details method
278
-
that show the attribute values in an easy to read multiline format.
279
-
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.
280
-
Introduced convenience methods dealing with attachments.
281
-
Corrected resource URL construction for the major ops (GET, PUT, POST, DEL)
282
-
when project=None specified (useful for Workspace spanning activities).
263
+
* 0.9.3 -
264
+
Fixed Pinger class to use correct ping options on Linux and Windows
265
+
Updated exception catching and exception raising to Python 2.6/2.7 syntax.
266
+
267
+
* 0.9.2 -
268
+
Fixed getProject to take optional project name argument.
269
+
Added HTTP header item in config.py to set Content-TYpe to 'application/json'.
270
+
Added recognition of verify_ssl_cert=True/False as keyword argment to
271
+
Rally constructor. Explicit specification results in passing a
272
+
verify=True/False to the underlying requests package. This can be
273
+
useful when dealing with an expired SSL certificate.
274
+
Upped default WSAPI version in config.py to 1.37 to support dyna-types
275
+
(specifically PortfolioItem and sub-types)..
276
+
Modified addAttachment to conform with non-backward compatible change in Rally WSAPI
277
+
involving how an attachment is related to an artifact.
278
+
Fixed defect in calculating an Attachment file size (use pre-encoded rather than post-encoded size).
279
+
280
+
This release is intended as the final beta before a 1.0 release.
281
+
282
+
* 0.9.1 -
283
+
Upped default WSAPI version in config.py to 1.30
284
+
All entities that are subclasses of WorkspaceDomainObject now have a details method
285
+
that show the attribute values in an easy to read multiline format.
286
+
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.
287
+
Introduced convenience methods dealing with attachments.
288
+
Corrected resource URL construction for the major ops (GET, PUT, POST, DEL)
289
+
when project=None specified (useful for Workspace spanning activities).
283
290
284
291
* 0.8.12 - Fixed premature exercise of iterator in initial response
0 commit comments