Skip to content
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

Merged
merged 8 commits into from
Dec 11, 2014
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions docs/topics/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Copy link
Member

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.


* Documentation improvements
Copy link
Member

Choose a reason for hiding this comment

The 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)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Imporve - > Improve

* Add `validate` to `ListSerializer` (#2168, #2225, #2232)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's use validate() style when referring to methods.

* Fix JSONP renderer failing to escape some characters (#2169, #2195)
* Add missing default style for FileField (#2172)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Backticks for FielField.

* Actions are required when calling viewset.as_view() (#2175)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Backticks and camelcased class name for ViewSet.as_view()

* Add allow_blank to ChoiceField (#2184, #2239)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

backticks for allow_blank, ChoiceField

* 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)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's use () when refering to methods, also let's try to avoid "possesive" apostrophe style on classes etc. so "in Serializer create()/update() methods."

* 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)
Copy link
Member

Choose a reason for hiding this comment

The 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
Expand Down
2 changes: 1 addition & 1 deletion rest_framework/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""

__title__ = 'Django REST framework'
__version__ = '3.0.0'
__version__ = '3.0.1'
__author__ = 'Tom Christie'
__license__ = 'BSD 2-Clause'
__copyright__ = 'Copyright 2011-2014 Tom Christie'
Expand Down