Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
637af1fc
Commit
637af1fc
authored
Feb 10, 2015
by
Xavier Ordoquy
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2540 from linovia/release/3.0.5
Release/3.0.5
parents
b999db1c
59b3fe8f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
1 deletions
+26
-1
docs/topics/release-notes.md
+25
-0
rest_framework/__init__.py
+1
-1
No files found.
docs/topics/release-notes.md
View file @
637af1fc
...
@@ -41,6 +41,19 @@ You can determine your currently installed version using `pip freeze`:
...
@@ -41,6 +41,19 @@ You can determine your currently installed version using `pip freeze`:
## 3.0.x series
## 3.0.x series
### 3.0.5
*
*Date
**
:
[
10th February 2015
][
3.0.5-milestone
]
.
*
Fix a bug where `_closable_objects` breaks pickling. ([#1850][gh1850], [#2492][gh2492])
*
Allow non-standard `User` models with `Throttling`. ([#2524][gh2524])
*
Support custom `User.db_table` in TokenAuthentication migration. ([#2479][gh2479])
*
Fix misleading `AttributeError` tracebacks on `Request` objects. ([#2530][gh2530], [#2108][gh2108])
*
`
ManyRelatedField.get_value` clearing field on partial update. ([#2475][gh2475])
*
Removed '.model' shortcut from code. ([#2486][gh2486])
*
Fix `detail_route` and `list_route` mutable argument. ([#2518][gh2518])
*
Prefetching the user object when getting the token in `TokenAuthentication`. ([#2519][gh2519])
### 3.0.4
### 3.0.4
*
*Date
**
:
[
28th January 2015
][
3.0.4-milestone
]
.
*
*Date
**
:
[
28th January 2015
][
3.0.4-milestone
]
.
...
@@ -721,6 +734,7 @@ For older release notes, [please see the GitHub repo](old-release-notes).
...
@@ -721,6 +734,7 @@ For older release notes, [please see the GitHub repo](old-release-notes).
[
3.0.2-milestone
]:
https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.2+Release%22
[
3.0.2-milestone
]:
https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.2+Release%22
[
3.0.3-milestone
]:
https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.3+Release%22
[
3.0.3-milestone
]:
https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.3+Release%22
[
3.0.4-milestone
]:
https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.4+Release%22
[
3.0.4-milestone
]:
https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.4+Release%22
[
3.0.5-milestone
]:
https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.5+Release%22
<!-- 3.0.1 -->
<!-- 3.0.1 -->
[
gh2013
]:
https://github.com/tomchristie/django-rest-framework/issues/2013
[
gh2013
]:
https://github.com/tomchristie/django-rest-framework/issues/2013
...
@@ -808,3 +822,14 @@ For older release notes, [please see the GitHub repo](old-release-notes).
...
@@ -808,3 +822,14 @@ For older release notes, [please see the GitHub repo](old-release-notes).
[
gh2399
]:
https://github.com/tomchristie/django-rest-framework/issues/2399
[
gh2399
]:
https://github.com/tomchristie/django-rest-framework/issues/2399
[
gh2388
]:
https://github.com/tomchristie/django-rest-framework/issues/2388
[
gh2388
]:
https://github.com/tomchristie/django-rest-framework/issues/2388
[
gh2360
]:
https://github.com/tomchristie/django-rest-framework/issues/2360
[
gh2360
]:
https://github.com/tomchristie/django-rest-framework/issues/2360
<!-- 3.0.5 -->
[
gh1850
]:
https://github.com/tomchristie/django-rest-framework/issues/1850
[
gh2108
]:
https://github.com/tomchristie/django-rest-framework/issues/2108
[
gh2475
]:
https://github.com/tomchristie/django-rest-framework/issues/2475
[
gh2479
]:
https://github.com/tomchristie/django-rest-framework/issues/2479
[
gh2486
]:
https://github.com/tomchristie/django-rest-framework/issues/2486
[
gh2492
]:
https://github.com/tomchristie/django-rest-framework/issues/2492
[
gh2518
]:
https://github.com/tomchristie/django-rest-framework/issues/2518
[
gh2519
]:
https://github.com/tomchristie/django-rest-framework/issues/2519
[
gh2524
]:
https://github.com/tomchristie/django-rest-framework/issues/2524
[
gh2530
]:
https://github.com/tomchristie/django-rest-framework/issues/2530
rest_framework/__init__.py
View file @
637af1fc
...
@@ -8,7 +8,7 @@ ______ _____ _____ _____ __
...
@@ -8,7 +8,7 @@ ______ _____ _____ _____ __
"""
"""
__title__
=
'Django REST framework'
__title__
=
'Django REST framework'
__version__
=
'3.0.
4
'
__version__
=
'3.0.
5
'
__author__
=
'Tom Christie'
__author__
=
'Tom Christie'
__license__
=
'BSD 2-Clause'
__license__
=
'BSD 2-Clause'
__copyright__
=
'Copyright 2011-2015 Tom Christie'
__copyright__
=
'Copyright 2011-2015 Tom Christie'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment