forked from datafolklabs/drest
-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
executable file
·114 lines (65 loc) · 3.08 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
ChangeLog
==============================================================================
All bugs/feature details can be found at:
https://github.com/derks/drest/issues/XXXXX
Where XXXXX is the 'Issue #' referenced below. Additionally, this change log
is available online at:
http://drest.readthedocs.org/en/latest/changelog.html
.. raw:: html
<BR><BR>
0.9.11 - development (will be released as 0.9.12, or 1.0.0)
------------------------------------------------------------------------------
Bugs:
* :issue:`26` - Fixed incorrect reference to serialiser in
TastyPieResourceHandler
Features:
* :issue:`23` - Ability to set request timeout. Default is to not timeout
* :issue:`24` - Allow suppression of body in GET requests. Default is
to not send the `body` in GET requests.
* :issue:`25` - Added support for `patch_list` in TastyPieResourceHandler
0.9.10 - Jul 18, 2012
------------------------------------------------------------------------------
Bugs:
* :issue:`20` - Should catch ServerNotFoundError
Feature Enhancements:
* :issue:`17` - Use relative imports to make drest more portable
* :issue:`19` - Added PATCH support for default REST resource.
0.9.8 - Jul 02, 2012
------------------------------------------------------------------------------
Bug Fixes:
* :issue:`12` - Params are not added correctly to GET request
Feature Enhancements:
* :issue:`15` - dRestResponse object should include response headers
0.9.6 - Mar 23, 2012
------------------------------------------------------------------------------
Bug Fixes:
- :issue:`9` - GET params incorrectly stored as permanent
_extra_url_params.
Feature Enhancements:
- :issue:`4` - Better support for nested resource names.
- :issue:`5`, :issue:`8` - Request object is now exposed publicly.
- :issue:`6` - Add capability to suppress final forward-slash
- :issue:`7` - Cache http object for improved performance.
Incompatible Changes:
- api._request is now api.request. api.request (old function) is now
api.make_request()
- Lots of code refactoring.. numerous minor changes may break
compatibility if using backend functions, but not likely if accessing
the high level api functions.
- Every request now returns a drest.response.ResponseHandler object
rather than a (response, data) tuple.
0.9.4 - Feb 16, 2012
------------------------------------------------------------------------------
Bug Fixes:
- :issue:`3` - TypeError: object.__init__() takes no parameters
Feature Enhancements:
- Improved test suite, now powered by Django TastyPie!
- Added support for Basic HTTP Auth.
Incompatible Changes:
- drest.api.API.auth() now implements Basic HTTP Auth by default rather
than just appending the user/password/etc to the URL.
.. raw:: html
<BR><BR>
0.9.2 - Feb 01, 2012
------------------------------------------------------------------------------
- Initial Beta release. Future versions will detail bugs/features/etc.