From 0188ca730674e41717ba914d38c8bf9582abdb0c Mon Sep 17 00:00:00 2001 From: Xavier Ordoquy Date: Thu, 11 Dec 2014 00:02:13 +0100 Subject: [PATCH 1/8] Release notes for 3.0.1 --- docs/topics/release-notes.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index 550fdf7524..0a8f713a94 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -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 +* 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) +* Add `validate` to `ListSerializer` (#2168, #2225, #2232) +* Fix JSONP renderer failing to escape some characters (#2169, #2195) +* Add missing default style for FileField (#2172) +* Actions are required when calling viewset.as_view() (#2175) +* Add allow_blank to ChoiceField (#2184, #2239) +* 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) +* 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) +* 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 From 4aaab08e13de8c34c7b084c3c35724c18eb3e4ba Mon Sep 17 00:00:00 2001 From: Xavier Ordoquy Date: Thu, 11 Dec 2014 00:09:11 +0100 Subject: [PATCH 2/8] Version 3.0.1 --- rest_framework/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py index 261c9c984d..f30f781a6f 100644 --- a/rest_framework/__init__.py +++ b/rest_framework/__init__.py @@ -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' From ab801bb01fbae56c5f71882e5620a65619c92f7d Mon Sep 17 00:00:00 2001 From: Xavier Ordoquy Date: Thu, 11 Dec 2014 14:53:48 +0100 Subject: [PATCH 3/8] Release note corrections --- docs/topics/release-notes.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index 0a8f713a94..a5162e81e5 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -42,25 +42,24 @@ You can determine your currently installed version using `pip freeze`: ### 3.0.1 -**Date**: [December 2014](https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.1+Release%22) +**Date**: [December 2014][3.0.1-milestone] -* Documentation improvements -* More helpful error message when the default `.create` fails (#2013) +* More helpful error message when the default Serializer `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) -* Add `validate` to `ListSerializer` (#2168, #2225, #2232) +* Improve BindingDict` to support standard dict-functions (#2135, #2163) +* Add `validate()` to `ListSerializer` (#2168, #2225, #2232) * Fix JSONP renderer failing to escape some characters (#2169, #2195) -* Add missing default style for FileField (#2172) -* Actions are required when calling viewset.as_view() (#2175) -* Add allow_blank to ChoiceField (#2184, #2239) +* Add missing default style for `FileField` (#2172) +* Actions are required when calling `ViewSet.as_view()` (#2175) +* Add `allow_blank` to `ChoiceField (#2184, #2239) * 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) +* `validated_attrs` argument renamed to `validated_data` in `Serializer` `create()`/`update()` (#2197) * 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) +* Fix pagination and custom permissions incompatibility (#2205) * 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) @@ -666,3 +665,4 @@ For older release notes, [please see the GitHub repo](old-release-notes). [ticket-582]: https://github.com/tomchristie/django-rest-framework/issues/582 [rfc-6266]: http://tools.ietf.org/html/rfc6266#section-4.3 [old-release-notes]: https://github.com/tomchristie/django-rest-framework/blob/2.4.4/docs/topics/release-notes.md#04x-series +[3.0.1-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.1+Release%22 From 9a7b0755eb3332d73874246e38b12738ffa3f568 Mon Sep 17 00:00:00 2001 From: Xavier Ordoquy Date: Thu, 11 Dec 2014 15:06:10 +0100 Subject: [PATCH 4/8] Add links to the issue id. --- docs/topics/release-notes.md | 40 ++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index a5162e81e5..988bfe55fc 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -44,26 +44,26 @@ You can determine your currently installed version using `pip freeze`: **Date**: [December 2014][3.0.1-milestone] -* More helpful error message when the default Serializer `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) -* Improve BindingDict` to support standard dict-functions (#2135, #2163) -* Add `validate()` to `ListSerializer` (#2168, #2225, #2232) -* Fix JSONP renderer failing to escape some characters (#2169, #2195) -* Add missing default style for `FileField` (#2172) -* Actions are required when calling `ViewSet.as_view()` (#2175) -* Add `allow_blank` to `ChoiceField (#2184, #2239) -* 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` `create()`/`update()` (#2197) -* 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) -* 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) +* More helpful error message when the default Serializer `create()` fails ([#2013](https://github.com/tomchristie/django-rest-framework/issues/2013)) +* Raise error when attempting to save serializer if data is not valid. ([#2098](https://github.com/tomchristie/django-rest-framework/issues/2098)) +* Fix `FileUploadParser` breaks with empty file names and multiple upload handlers ([#2109](https://github.com/tomchristie/django-rest-framework/issues/2109)) +* Improve BindingDict` to support standard dict-functions ([#2135](https://github.com/tomchristie/django-rest-framework/issues/2135), [#2163](https://github.com/tomchristie/django-rest-framework/issues/2163)) +* Add `validate()` to `ListSerializer` ([#2168](https://github.com/tomchristie/django-rest-framework/issues/2168), [#2225](https://github.com/tomchristie/django-rest-framework/issues/2225), [#2232](https://github.com/tomchristie/django-rest-framework/issues/2232)) +* Fix JSONP renderer failing to escape some characters ([#2169](https://github.com/tomchristie/django-rest-framework/issues/2169), [#2195](https://github.com/tomchristie/django-rest-framework/issues/2195)) +* Add missing default style for `FileField` ([#2172](https://github.com/tomchristie/django-rest-framework/issues/2172)) +* Actions are required when calling `ViewSet.as_view()` ([#2175](https://github.com/tomchristie/django-rest-framework/issues/2175)) +* Add `allow_blank` to `ChoiceField ([#2184](https://github.com/tomchristie/django-rest-framework/issues/2184), [#2239](https://github.com/tomchristie/django-rest-framework/issues/2239)) +* Cosmetic fixes in the HTML renderer ([#2187](https://github.com/tomchristie/django-rest-framework/issues/2187)) +* Raise error if `fields` on serializer is not a list of strings. ([#2193](https://github.com/tomchristie/django-rest-framework/issues/2193), [#2213](https://github.com/tomchristie/django-rest-framework/issues/2213)) +* Improve checks for nested creates and updates. ([#2194](https://github.com/tomchristie/django-rest-framework/issues/2194), [#2196](https://github.com/tomchristie/django-rest-framework/issues/2196)) +* `validated_attrs` argument renamed to `validated_data` in `Serializer` `create()`/`update()` ([#2197](https://github.com/tomchristie/django-rest-framework/issues/2197)) +* Remove deprecated code to reflect the droped Django versions ([#2200](https://github.com/tomchristie/django-rest-framework/issues/2200)) +* Better serializer errors for nested writes. ([#2202](https://github.com/tomchristie/django-rest-framework/issues/2202), [#2215](https://github.com/tomchristie/django-rest-framework/issues/2215)) +* Fix pagination and custom permissions incompatibility ([#2205](https://github.com/tomchristie/django-rest-framework/issues/2205)) +* Raise error if `fields` on serializer is not a list of strings. ([#2213](https://github.com/tomchristie/django-rest-framework/issues/2213)) +* Add missing translation markers for relational fields. ([#2231](https://github.com/tomchristie/django-rest-framework/issues/2231)) +* Improve field lookup behavior for dicts/mappings. ([#2244](https://github.com/tomchristie/django-rest-framework/issues/2244), [#2243](https://github.com/tomchristie/django-rest-framework/issues/2243)) +* Optimized hyperlinked PK ([#2242](https://github.com/tomchristie/django-rest-framework/issues/2242)) ### 3.0.0 From 99423defd826b09d9bf37bf942c2682b90ea8b42 Mon Sep 17 00:00:00 2001 From: Xavier Ordoquy Date: Thu, 11 Dec 2014 15:11:37 +0100 Subject: [PATCH 5/8] Add full stop to the release note items. Add link to the issues Fix the milestone link --- docs/topics/release-notes.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index 988bfe55fc..dc7b7b03bd 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -42,28 +42,28 @@ You can determine your currently installed version using `pip freeze`: ### 3.0.1 -**Date**: [December 2014][3.0.1-milestone] +**Date**: [December 2014][3.0.1][3.0.1-milestone]: -* More helpful error message when the default Serializer `create()` fails ([#2013](https://github.com/tomchristie/django-rest-framework/issues/2013)) +* More helpful error message when the default Serializer `create()` fails. ([#2013](https://github.com/tomchristie/django-rest-framework/issues/2013)) * Raise error when attempting to save serializer if data is not valid. ([#2098](https://github.com/tomchristie/django-rest-framework/issues/2098)) -* Fix `FileUploadParser` breaks with empty file names and multiple upload handlers ([#2109](https://github.com/tomchristie/django-rest-framework/issues/2109)) -* Improve BindingDict` to support standard dict-functions ([#2135](https://github.com/tomchristie/django-rest-framework/issues/2135), [#2163](https://github.com/tomchristie/django-rest-framework/issues/2163)) -* Add `validate()` to `ListSerializer` ([#2168](https://github.com/tomchristie/django-rest-framework/issues/2168), [#2225](https://github.com/tomchristie/django-rest-framework/issues/2225), [#2232](https://github.com/tomchristie/django-rest-framework/issues/2232)) -* Fix JSONP renderer failing to escape some characters ([#2169](https://github.com/tomchristie/django-rest-framework/issues/2169), [#2195](https://github.com/tomchristie/django-rest-framework/issues/2195)) -* Add missing default style for `FileField` ([#2172](https://github.com/tomchristie/django-rest-framework/issues/2172)) -* Actions are required when calling `ViewSet.as_view()` ([#2175](https://github.com/tomchristie/django-rest-framework/issues/2175)) -* Add `allow_blank` to `ChoiceField ([#2184](https://github.com/tomchristie/django-rest-framework/issues/2184), [#2239](https://github.com/tomchristie/django-rest-framework/issues/2239)) -* Cosmetic fixes in the HTML renderer ([#2187](https://github.com/tomchristie/django-rest-framework/issues/2187)) +* Fix `FileUploadParser` breaks with empty file names and multiple upload handlers. ([#2109](https://github.com/tomchristie/django-rest-framework/issues/2109)) +* Improve BindingDict` to support standard dict-functions. ([#2135](https://github.com/tomchristie/django-rest-framework/issues/2135), [#2163](https://github.com/tomchristie/django-rest-framework/issues/2163)) +* Add `validate()` to `ListSerializer`. ([#2168](https://github.com/tomchristie/django-rest-framework/issues/2168), [#2225](https://github.com/tomchristie/django-rest-framework/issues/2225), [#2232](https://github.com/tomchristie/django-rest-framework/issues/2232)) +* Fix JSONP renderer failing to escape some characters. ([#2169](https://github.com/tomchristie/django-rest-framework/issues/2169), [#2195](https://github.com/tomchristie/django-rest-framework/issues/2195)) +* Add missing default style for `FileField`. ([#2172](https://github.com/tomchristie/django-rest-framework/issues/2172)) +* Actions are required when calling `ViewSet.as_view()`. ([#2175](https://github.com/tomchristie/django-rest-framework/issues/2175)) +* Add `allow_blank` to `ChoiceField`. ([#2184](https://github.com/tomchristie/django-rest-framework/issues/2184), [#2239](https://github.com/tomchristie/django-rest-framework/issues/2239)) +* Cosmetic fixes in the HTML renderer. ([#2187](https://github.com/tomchristie/django-rest-framework/issues/2187)) * Raise error if `fields` on serializer is not a list of strings. ([#2193](https://github.com/tomchristie/django-rest-framework/issues/2193), [#2213](https://github.com/tomchristie/django-rest-framework/issues/2213)) * Improve checks for nested creates and updates. ([#2194](https://github.com/tomchristie/django-rest-framework/issues/2194), [#2196](https://github.com/tomchristie/django-rest-framework/issues/2196)) -* `validated_attrs` argument renamed to `validated_data` in `Serializer` `create()`/`update()` ([#2197](https://github.com/tomchristie/django-rest-framework/issues/2197)) -* Remove deprecated code to reflect the droped Django versions ([#2200](https://github.com/tomchristie/django-rest-framework/issues/2200)) +* `validated_attrs` argument renamed to `validated_data` in `Serializer` `create()`/`update()`. ([#2197](https://github.com/tomchristie/django-rest-framework/issues/2197)) +* Remove deprecated code to reflect the droped Django versions. ([#2200](https://github.com/tomchristie/django-rest-framework/issues/2200)) * Better serializer errors for nested writes. ([#2202](https://github.com/tomchristie/django-rest-framework/issues/2202), [#2215](https://github.com/tomchristie/django-rest-framework/issues/2215)) -* Fix pagination and custom permissions incompatibility ([#2205](https://github.com/tomchristie/django-rest-framework/issues/2205)) +* Fix pagination and custom permissions incompatibility. ([#2205](https://github.com/tomchristie/django-rest-framework/issues/2205)) * Raise error if `fields` on serializer is not a list of strings. ([#2213](https://github.com/tomchristie/django-rest-framework/issues/2213)) * Add missing translation markers for relational fields. ([#2231](https://github.com/tomchristie/django-rest-framework/issues/2231)) * Improve field lookup behavior for dicts/mappings. ([#2244](https://github.com/tomchristie/django-rest-framework/issues/2244), [#2243](https://github.com/tomchristie/django-rest-framework/issues/2243)) -* Optimized hyperlinked PK ([#2242](https://github.com/tomchristie/django-rest-framework/issues/2242)) +* Optimized hyperlinked PK. ([#2242](https://github.com/tomchristie/django-rest-framework/issues/2242)) ### 3.0.0 From 75acdc93bc837b6f7a724c0cec081e8faf36cbfa Mon Sep 17 00:00:00 2001 From: Xavier Ordoquy Date: Thu, 11 Dec 2014 15:13:15 +0100 Subject: [PATCH 6/8] Fix the milestone link again. --- docs/topics/release-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index dc7b7b03bd..8faa19a8a0 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -42,7 +42,7 @@ You can determine your currently installed version using `pip freeze`: ### 3.0.1 -**Date**: [December 2014][3.0.1][3.0.1-milestone]: +**Date**: [December 2014][3.0.1-milestone]. * More helpful error message when the default Serializer `create()` fails. ([#2013](https://github.com/tomchristie/django-rest-framework/issues/2013)) * Raise error when attempting to save serializer if data is not valid. ([#2098](https://github.com/tomchristie/django-rest-framework/issues/2098)) From 3a69182cc93956787ad6864258372cff68404a48 Mon Sep 17 00:00:00 2001 From: Xavier Ordoquy Date: Thu, 11 Dec 2014 15:32:52 +0100 Subject: [PATCH 7/8] Better link representation for the issues. --- docs/topics/release-notes.md | 71 ++++++++++++++++++++++++++---------- 1 file changed, 51 insertions(+), 20 deletions(-) diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index 8faa19a8a0..0b24546b01 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -44,26 +44,26 @@ You can determine your currently installed version using `pip freeze`: **Date**: [December 2014][3.0.1-milestone]. -* More helpful error message when the default Serializer `create()` fails. ([#2013](https://github.com/tomchristie/django-rest-framework/issues/2013)) -* Raise error when attempting to save serializer if data is not valid. ([#2098](https://github.com/tomchristie/django-rest-framework/issues/2098)) -* Fix `FileUploadParser` breaks with empty file names and multiple upload handlers. ([#2109](https://github.com/tomchristie/django-rest-framework/issues/2109)) -* Improve BindingDict` to support standard dict-functions. ([#2135](https://github.com/tomchristie/django-rest-framework/issues/2135), [#2163](https://github.com/tomchristie/django-rest-framework/issues/2163)) -* Add `validate()` to `ListSerializer`. ([#2168](https://github.com/tomchristie/django-rest-framework/issues/2168), [#2225](https://github.com/tomchristie/django-rest-framework/issues/2225), [#2232](https://github.com/tomchristie/django-rest-framework/issues/2232)) -* Fix JSONP renderer failing to escape some characters. ([#2169](https://github.com/tomchristie/django-rest-framework/issues/2169), [#2195](https://github.com/tomchristie/django-rest-framework/issues/2195)) -* Add missing default style for `FileField`. ([#2172](https://github.com/tomchristie/django-rest-framework/issues/2172)) -* Actions are required when calling `ViewSet.as_view()`. ([#2175](https://github.com/tomchristie/django-rest-framework/issues/2175)) -* Add `allow_blank` to `ChoiceField`. ([#2184](https://github.com/tomchristie/django-rest-framework/issues/2184), [#2239](https://github.com/tomchristie/django-rest-framework/issues/2239)) -* Cosmetic fixes in the HTML renderer. ([#2187](https://github.com/tomchristie/django-rest-framework/issues/2187)) -* Raise error if `fields` on serializer is not a list of strings. ([#2193](https://github.com/tomchristie/django-rest-framework/issues/2193), [#2213](https://github.com/tomchristie/django-rest-framework/issues/2213)) -* Improve checks for nested creates and updates. ([#2194](https://github.com/tomchristie/django-rest-framework/issues/2194), [#2196](https://github.com/tomchristie/django-rest-framework/issues/2196)) -* `validated_attrs` argument renamed to `validated_data` in `Serializer` `create()`/`update()`. ([#2197](https://github.com/tomchristie/django-rest-framework/issues/2197)) -* Remove deprecated code to reflect the droped Django versions. ([#2200](https://github.com/tomchristie/django-rest-framework/issues/2200)) -* Better serializer errors for nested writes. ([#2202](https://github.com/tomchristie/django-rest-framework/issues/2202), [#2215](https://github.com/tomchristie/django-rest-framework/issues/2215)) -* Fix pagination and custom permissions incompatibility. ([#2205](https://github.com/tomchristie/django-rest-framework/issues/2205)) -* Raise error if `fields` on serializer is not a list of strings. ([#2213](https://github.com/tomchristie/django-rest-framework/issues/2213)) -* Add missing translation markers for relational fields. ([#2231](https://github.com/tomchristie/django-rest-framework/issues/2231)) -* Improve field lookup behavior for dicts/mappings. ([#2244](https://github.com/tomchristie/django-rest-framework/issues/2244), [#2243](https://github.com/tomchristie/django-rest-framework/issues/2243)) -* Optimized hyperlinked PK. ([#2242](https://github.com/tomchristie/django-rest-framework/issues/2242)) +* More helpful error message when the default Serializer `create()` fails. ([#2013][gh2013]) +* Raise error when attempting to save serializer if data is not valid. ([#2098][gh2098]) +* Fix `FileUploadParser` breaks with empty file names and multiple upload handlers. ([#2109][gh2109]) +* Improve BindingDict` to support standard dict-functions. ([#2135][gh2135], [#2163][gh2163]) +* Add `validate()` to `ListSerializer`. ([#2168][gh2168], [#2225][gh2225], [#2232][gh2232]) +* Fix JSONP renderer failing to escape some characters. ([#2169][gh2169], [#2195][gh2195]) +* Add missing default style for `FileField`. ([#2172][gh2172]) +* Actions are required when calling `ViewSet.as_view()`. ([#2175][gh2175]) +* Add `allow_blank` to `ChoiceField`. ([#2184][gh2184], [#2239][gh2239]) +* Cosmetic fixes in the HTML renderer. ([#2187][gh2187]) +* Raise error if `fields` on serializer is not a list of strings. ([#2193][gh2193], [#2213][gh2213]) +* Improve checks for nested creates and updates. ([#2194][gh2194], [#2196][gh2196]) +* `validated_attrs` argument renamed to `validated_data` in `Serializer` `create()`/`update()`. ([#2197][gh2197]) +* Remove deprecated code to reflect the dropped Django versions. ([#2200][gh2200]) +* Better serializer errors for nested writes. ([#2202][gh2202], [#2215][gh2215]) +* Fix pagination and custom permissions incompatibility. ([#2205][gh2205]) +* Raise error if `fields` on serializer is not a list of strings. ([#2213][gh2213]) +* Add missing translation markers for relational fields. ([#2231][gh2231]) +* Improve field lookup behavior for dicts/mappings. ([#2244][gh2244], [#2243][gh2243]) +* Optimized hyperlinked PK. ([#2242][gh2242]) ### 3.0.0 @@ -666,3 +666,34 @@ For older release notes, [please see the GitHub repo](old-release-notes). [rfc-6266]: http://tools.ietf.org/html/rfc6266#section-4.3 [old-release-notes]: https://github.com/tomchristie/django-rest-framework/blob/2.4.4/docs/topics/release-notes.md#04x-series [3.0.1-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.1+Release%22 + + +[gh2013]: https://github.com/tomchristie/django-rest-framework/issues/2013 +[gh2098]: https://github.com/tomchristie/django-rest-framework/issues/2098 +[gh2109]: https://github.com/tomchristie/django-rest-framework/issues/2109 +[gh2135]: https://github.com/tomchristie/django-rest-framework/issues/2135 +[gh2163]: https://github.com/tomchristie/django-rest-framework/issues/2163 +[gh2168]: https://github.com/tomchristie/django-rest-framework/issues/2168 +[gh2169]: https://github.com/tomchristie/django-rest-framework/issues/2169 +[gh2172]: https://github.com/tomchristie/django-rest-framework/issues/2172 +[gh2175]: https://github.com/tomchristie/django-rest-framework/issues/2175 +[gh2184]: https://github.com/tomchristie/django-rest-framework/issues/2184 +[gh2187]: https://github.com/tomchristie/django-rest-framework/issues/2187 +[gh2193]: https://github.com/tomchristie/django-rest-framework/issues/2193 +[gh2194]: https://github.com/tomchristie/django-rest-framework/issues/2194 +[gh2195]: https://github.com/tomchristie/django-rest-framework/issues/2195 +[gh2196]: https://github.com/tomchristie/django-rest-framework/issues/2196 +[gh2197]: https://github.com/tomchristie/django-rest-framework/issues/2197 +[gh2200]: https://github.com/tomchristie/django-rest-framework/issues/2200 +[gh2202]: https://github.com/tomchristie/django-rest-framework/issues/2202 +[gh2205]: https://github.com/tomchristie/django-rest-framework/issues/2205 +[gh2213]: https://github.com/tomchristie/django-rest-framework/issues/2213 +[gh2213]: https://github.com/tomchristie/django-rest-framework/issues/2213 +[gh2215]: https://github.com/tomchristie/django-rest-framework/issues/2215 +[gh2225]: https://github.com/tomchristie/django-rest-framework/issues/2225 +[gh2231]: https://github.com/tomchristie/django-rest-framework/issues/2231 +[gh2232]: https://github.com/tomchristie/django-rest-framework/issues/2232 +[gh2239]: https://github.com/tomchristie/django-rest-framework/issues/2239 +[gh2242]: https://github.com/tomchristie/django-rest-framework/issues/2242 +[gh2243]: https://github.com/tomchristie/django-rest-framework/issues/2243 +[gh2244]: https://github.com/tomchristie/django-rest-framework/issues/2244 From 9c37174768c4295aaa9bd0c90bfed63942c24203 Mon Sep 17 00:00:00 2001 From: Xavier Ordoquy Date: Thu, 11 Dec 2014 15:58:02 +0100 Subject: [PATCH 8/8] Fix the ghost backtick. --- docs/topics/release-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index 0b24546b01..f00d3c54eb 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -47,7 +47,7 @@ You can determine your currently installed version using `pip freeze`: * More helpful error message when the default Serializer `create()` fails. ([#2013][gh2013]) * Raise error when attempting to save serializer if data is not valid. ([#2098][gh2098]) * Fix `FileUploadParser` breaks with empty file names and multiple upload handlers. ([#2109][gh2109]) -* Improve BindingDict` to support standard dict-functions. ([#2135][gh2135], [#2163][gh2163]) +* Improve `BindingDict` to support standard dict-functions. ([#2135][gh2135], [#2163][gh2163]) * Add `validate()` to `ListSerializer`. ([#2168][gh2168], [#2225][gh2225], [#2232][gh2232]) * Fix JSONP renderer failing to escape some characters. ([#2169][gh2169], [#2195][gh2195]) * Add missing default style for `FileField`. ([#2172][gh2172])