-
-
Notifications
You must be signed in to change notification settings - Fork 6.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release notes & version 3.0.1 #2251
Changes from 2 commits
0188ca7
4aaab08
ab801bb
9a7b075
99423de
75acdc9
3a69182
9c37174
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,32 @@ You can determine your currently installed version using `pip freeze`: | |
|
||
## 3.0.x series | ||
|
||
### 3.0.1 | ||
|
||
**Date**: [December 2014](https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.1+Release%22) | ||
|
||
* Documentation improvements | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think we should include this in release notes, not exactly part of the release. |
||
* More helpful error message when the default `.create` fails (#2013) | ||
* Raise error when attempting to save serializer if data is not valid. (#2098) | ||
* Fix `FileUploadParser` breaks with empty file names and multiple upload handlers (#2109) | ||
* Imporve BindingDict to support standard dict-functions (#2135, #2163) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Imporve - > Improve |
||
* Add `validate` to `ListSerializer` (#2168, #2225, #2232) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's use |
||
* Fix JSONP renderer failing to escape some characters (#2169, #2195) | ||
* Add missing default style for FileField (#2172) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Backticks for |
||
* Actions are required when calling viewset.as_view() (#2175) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Backticks and camelcased class name for |
||
* Add allow_blank to ChoiceField (#2184, #2239) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. backticks for |
||
* Cosmetic fixes in the HTML renderer (#2187) | ||
* Raise error if `fields` on serializer is not a list of strings. (#2193, #2213) | ||
* Improve checks for nested creates and updates. (#2194, #2196) | ||
* `validated_attrs` argument renamed to `validated_data` in Serializer's `create`/`update` (#2197) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's use |
||
* Remove deprecated code to reflect the droped Django versions (#2200) | ||
* Better serializer errors for nested writes. (#2202, #2215) | ||
* Fix Pagination and custom permissions incompatibility (#2205) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's lowercase pagination. |
||
* Raise error if `fields` on serializer is not a list of strings. (#2213) | ||
* Add missing translation markers for relational fields. (#2231) | ||
* Improve field lookup behavior for dicts/mappings. (#2244, #2243) | ||
* Optimized hyperlinked PK (#2242) | ||
|
||
### 3.0.0 | ||
|
||
**Date**: 1st December 2014 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I got lazy about this myself, but we prob oughta go with the
[Text][ref]
...[ref]: url
link style throughout.So
[December 2014][3.0.1-milestone]
with[3.0.1-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.1+Release%22
at the bottom of the document.Don't mind fixing all these up myself tho since it's my fault for getting lazy about it in previous versions.