Skip to content

Commit 96bb77d

Browse files
committed
Version 2.4.4
1 parent b5c98f6 commit 96bb77d

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

docs/topics/release-notes.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,16 @@ You can determine your currently installed version using `pip freeze`:
4040

4141
## 2.4.x series
4242

43+
### 2.4.4
44+
45+
**Date**: [3rd November 2014](https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%222.4.4+Release%22+).
46+
47+
* **Security fix**: Escape URLs when replacing `format=` query parameter, as used in dropdown on `GET` button in browsable API to allow explicit selection of JSON vs HTML output.
48+
* Maintain ordering of URLs in API root view for `DefaultRouter`.
49+
* Fix `follow=True` in `APIRequestFactory`
50+
* Resolve issue with invalid `read_only=True`, `required=True` fields being automatically generated by `ModelSerializer` in some cases.
51+
* Resolve issue with `OPTIONS` requests returning incorrect information for views using `get_serializer_class` to dynamically determine serializer based on request method.
52+
4353
### 2.4.3
4454

4555
**Date**: [19th September 2014](https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%222.4.3+Release%22+).

rest_framework/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"""
99

1010
__title__ = 'Django REST framework'
11-
__version__ = '2.4.3'
11+
__version__ = '2.4.4'
1212
__author__ = 'Tom Christie'
1313
__license__ = 'BSD 2-Clause'
1414
__copyright__ = 'Copyright 2011-2014 Tom Christie'

0 commit comments

Comments
 (0)