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
* 1.0.1 - Patch to address defect with Rally WSAPI v2.0 projects collection endpoint
263
-
providing conflicting information.
264
-
265
-
* 1.0.0 -
266
-
Default WSAPI version in config is v2.0. This version is not compatible
267
-
with Rally WSAPI version 1.x.
268
-
Adjusted the RallyUrlBuilder (via RallyQueryFormatter) to be more resilient
269
-
with respect to many more "special" characters (non-alphanumeric).
270
-
Retrieving the meta data uses the v2.0 schema endpoint.
271
-
No longer support a version keyword argument when obtaining a Rally instance.
272
-
273
-
* 0.9.4 -
274
-
Adjusted Rally __init__ to accommodate using requests 0.x, 1.x, 2.x versions.
275
-
Factored out query building and fixed constructing multi condition queries.
276
-
Added internal convenience method to handle a list of refs to turn them into a
277
-
list of single key (_ref) hashes.
278
-
Added UserIterationCapacity to known entities.
279
-
Upped default WSAPI version in config to 1.43
280
-
Support using of https_proxy / HTTPS_PROXY environment variables.
281
-
Refactored getAllUsers to include UserProfile information with fewer queries.
282
-
283
-
* 0.9.3 -
284
-
Fixed Pinger class to use correct ping options on Linux and Windows
285
-
Updated exception catching and exception raising to Python 2.6/2.7 syntax.
286
-
287
-
* 0.9.2 -
288
-
Fixed getProject to take optional project name argument.
289
-
Added HTTP header item in config.py to set Content-TYpe to 'application/json'.
290
-
Added recognition of verify_ssl_cert=True/False as keyword argment to
291
-
Rally constructor. Explicit specification results in passing a
292
-
verify=True/False to the underlying requests package. This can be
293
-
useful when dealing with an expired SSL certificate.
294
-
Upped default WSAPI version in config.py to 1.37 to support dyna-types
295
-
(specifically PortfolioItem and sub-types)..
296
-
Modified addAttachment to conform with non-backward compatible change in Rally WSAPI
297
-
involving how an attachment is related to an artifact.
298
-
Fixed defect in calculating an Attachment file size (use pre-encoded rather than post-encoded size).
299
-
300
-
This release is intended as the final beta before a 1.0 release.
301
-
302
-
* 0.9.1 -
303
-
Upped default WSAPI version in config.py to 1.30
304
-
All entities that are subclasses of WorkspaceDomainObject now have a details method
305
-
that show the attribute values in an easy to read multiline format.
306
-
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.
307
-
Introduced convenience methods dealing with attachments.
308
-
Corrected resource URL construction for the major ops (GET, PUT, POST, DEL)
309
-
when project=None specified (useful for Workspace spanning activities).
310
-
311
-
* 0.8.12 - Fixed premature exercise of iterator in initial response
266
+
1.1.0
267
+
Introduction of support to use Rally API Key and rallyWorkset (supercedes rallySettings).
268
+
Two relatively minor defects fixed dealing with internalizing environment
269
+
vars for initialization and in retrieving Rally entity attribute allowed values.
270
+
271
+
1.0.1
272
+
Patch to address defect with Rally WSAPI v2.0 projects collection endpoint
273
+
providing conflicting information.
274
+
275
+
1.0.0
276
+
Default WSAPI version in config is v2.0. This version is not compatible
277
+
with Rally WSAPI version 1.x.
278
+
Adjusted the RallyUrlBuilder (via RallyQueryFormatter) to be more resilient
279
+
with respect to many more "special" characters (non-alphanumeric).
280
+
Retrieving the meta data uses the v2.0 schema endpoint.
281
+
No longer support a version keyword argument when obtaining a Rally instance.
282
+
283
+
0.9.4
284
+
Adjusted Rally __init__ to accommodate using requests 0.x, 1.x, 2.x versions.
285
+
Factored out query building and fixed constructing multi condition queries.
286
+
Added internal convenience method to handle a list of refs to turn them into a
287
+
list of single key (_ref) hashes.
288
+
Added UserIterationCapacity to known entities.
289
+
Upped default WSAPI version in config to 1.43.
290
+
Support using of https_proxy / HTTPS_PROXY environment variables.
291
+
Refactored getAllUsers to include UserProfile information with fewer queries.
292
+
293
+
0.9.3
294
+
Fixed Pinger class to use correct ping options on Linux and Windows.
295
+
Updated exception catching and exception raising to Python 2.6/2.7 syntax.
296
+
297
+
0.9.2
298
+
Fixed getProject to take optional project name argument.
299
+
Added HTTP header item in config.py to set Content-Type to 'application/json'.
300
+
Added recognition of verify_ssl_cert=True/False as keyword argment to
301
+
Rally constructor. Explicit specification results in passing a
302
+
verify=True/False to the underlying requests package. This can be
303
+
useful when dealing with an expired SSL certificate.
304
+
Upped default WSAPI version in config.py to 1.37 to support dyna-types
305
+
(specifically PortfolioItem and sub-types).
306
+
Modified addAttachment to conform with non-backward compatible change in Rally WSAPI
307
+
involving how an attachment is related to an artifact.
308
+
Fixed defect in calculating an Attachment file size (use pre-encoded rather than post-encoded size).
309
+
310
+
This release is intended as the final beta before a 1.0 release.
311
+
312
+
0.9.1
313
+
Upped default WSAPI version in config.py to 1.30
314
+
All entities that are subclasses of WorkspaceDomainObject now have a details method
315
+
that show the attribute values in an easy to read multiline format.
316
+
Dropped attempted discrimination of server value to determine if it is a name or an IPv4 address.
317
+
No longer look for http_proxy in environment, only https_proxy.
318
+
Introduced convenience methods dealing with attachments.
319
+
Corrected resource URL construction for the major ops (GET, PUT, POST, DEL)
320
+
when project=None specified (useful for Workspace spanning activities).
321
+
322
+
0.8.12
323
+
Fixed premature exercise of iterator in initial response
312
324
313
-
* 0.8.11 -
314
-
Fixed inappropriate error message when initial connect attempt timed out.
315
-
Message had stated that the target server did not speak the Rally WSAPI.
316
-
Improved context handling with respect to workspace and project settings.
325
+
0.8.11
326
+
Fixed inappropriate error message when initial connect attempt timed out.
327
+
Message had stated that the target server did not speak the Rally WSAPI.
328
+
Improved context handling with respect to workspace and project settings.
317
329
318
-
* 0.8.10 -
319
-
Attempted to bolster proxy handling.
320
-
Limited success as there is an outstanding issue in equests (urllib3) not
321
-
implementing CONNECT for https over http.
330
+
0.8.10
331
+
Attempted to bolster proxy handling.
332
+
Limited success as there is an outstanding issue in requests (urllib3) not
333
+
implementing CONNECT for https over http.
322
334
323
-
* 0.8.9 - initial attempt at providing proxy support
335
+
0.8.9
336
+
initial attempt at providing proxy support
324
337
325
-
* 0.8.8 - added warn=True/False to Rally instantiation
338
+
0.8.8
339
+
added warn=True/False to Rally instantiation
340
+
341
+
0.8.7
342
+
Initial release on developer.rallydev.com
326
343
327
-
* 0.8.7 - Initial release on developer.rallydev.com
328
344
329
345
TODO
330
346
----
331
-
* Python 3.3+ support
332
-
347
+
* Rework the distribution to be pip installable
333
348
* Dynamically construct the Rally schema hierarchy economically.
0 commit comments