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
44ceef84
Commit
44ceef84
authored
Aug 21, 2013
by
Tom Christie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updating 2.4.0 release notes
parent
815ef507
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
2 deletions
+8
-2
.travis.yml
+1
-0
docs/topics/release-notes.md
+4
-1
rest_framework/compat.py
+1
-1
rest_framework/six.py
+0
-0
tox.ini
+2
-0
No files found.
.travis.yml
View file @
44ceef84
...
@@ -19,6 +19,7 @@ install:
...
@@ -19,6 +19,7 @@ install:
-
"
if
[[
${TRAVIS_PYTHON_VERSION::1}
!=
'3'
]];
then
pip
install
django-oauth-plus==2.0
--use-mirrors;
fi"
-
"
if
[[
${TRAVIS_PYTHON_VERSION::1}
!=
'3'
]];
then
pip
install
django-oauth-plus==2.0
--use-mirrors;
fi"
-
"
if
[[
${TRAVIS_PYTHON_VERSION::1}
!=
'3'
]];
then
pip
install
django-oauth2-provider==0.2.4
--use-mirrors;
fi"
-
"
if
[[
${TRAVIS_PYTHON_VERSION::1}
!=
'3'
]];
then
pip
install
django-oauth2-provider==0.2.4
--use-mirrors;
fi"
-
"
if
[[
${DJANGO::11}
==
'django==1.3'
]];
then
pip
install
django-filter==0.5.4
--use-mirrors;
fi"
-
"
if
[[
${DJANGO::11}
==
'django==1.3'
]];
then
pip
install
django-filter==0.5.4
--use-mirrors;
fi"
-
"
if
[[
${DJANGO::11}
==
'django==1.3'
]];
then
pip
install
six
--use-mirrors;
fi"
-
"
if
[[
${DJANGO::11}
!=
'django==1.3'
]];
then
pip
install
django-filter==0.6
--use-mirrors;
fi"
-
"
if
[[
${DJANGO::11}
!=
'django==1.3'
]];
then
pip
install
django-filter==0.6
--use-mirrors;
fi"
-
export PYTHONPATH=.
-
export PYTHONPATH=.
...
...
docs/topics/release-notes.md
View file @
44ceef84
...
@@ -40,9 +40,12 @@ You can determine your currently installed version using `pip freeze`:
...
@@ -40,9 +40,12 @@ You can determine your currently installed version using `pip freeze`:
## 2.3.x series
## 2.3.x series
###
Master
###
2.4.0
*
`@
detail_route` and `@list_route` decorators replace `@action` and `@link`.
*
`
six` no longer bundled. For Django <= 1.4.1, install `six` package.
*
Support customizable view name and description functions, using the `VIEW_NAME_FUNCTION` and `VIEW_DESCRIPTION_FUNCTION` settings.
*
Support customizable view name and description functions, using the `VIEW_NAME_FUNCTION` and `VIEW_DESCRIPTION_FUNCTION` settings.
*
Bugfix
:
`
?page_size=0` query parameter now falls back to default page size for view, instead of always turning pagination off.
### 2.3.7
### 2.3.7
...
...
rest_framework/compat.py
View file @
44ceef84
...
@@ -14,7 +14,7 @@ from django.conf import settings
...
@@ -14,7 +14,7 @@ from django.conf import settings
try
:
try
:
from
django.utils
import
six
from
django.utils
import
six
except
ImportError
:
except
ImportError
:
from
rest_framework
import
six
import
six
# location of patterns, url, include changes in 1.4 onwards
# location of patterns, url, include changes in 1.4 onwards
try
:
try
:
...
...
rest_framework/six.py
deleted
100644 → 0
View file @
815ef507
This diff is collapsed.
Click to expand it.
tox.ini
View file @
44ceef84
...
@@ -91,6 +91,7 @@ deps = django==1.3.5
...
@@ -91,6 +91,7 @@ deps = django==1.3.5
django-oauth-plus
=
=2.0
django-oauth-plus
=
=2.0
oauth2
=
=1.5.211
oauth2
=
=1.5.211
django-oauth2-provider
=
=0.2.3
django-oauth2-provider
=
=0.2.3
six
[testenv:py2.6-django1.3]
[testenv:py2.6-django1.3]
basepython
=
python2.6
basepython
=
python2.6
...
@@ -100,3 +101,4 @@ deps = django==1.3.5
...
@@ -100,3 +101,4 @@ deps = django==1.3.5
django-oauth-plus
=
=2.0
django-oauth-plus
=
=2.0
oauth2
=
=1.5.211
oauth2
=
=1.5.211
django-oauth2-provider
=
=0.2.3
django-oauth2-provider
=
=0.2.3
six
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