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
191135d7
Commit
191135d7
authored
Jan 14, 2013
by
Tom Christie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version 2.1.16
parent
cae9a334
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
5 deletions
+17
-5
README.md
+11
-0
docs/topics/release-notes.md
+5
-4
rest_framework/__init__.py
+1
-1
No files found.
README.md
View file @
191135d7
...
@@ -81,6 +81,17 @@ To run the tests.
...
@@ -81,6 +81,17 @@ To run the tests.
# Changelog
# Changelog
### 2.1.16
**Date**
: 14th Jan 2013
*
Deprecate django.utils.simplejson in favor of Python 2.6's built-in json module.
*
Bugfix:
`auto_now`
,
`auto_now_add`
and other
`editable=False`
fields now default to read-only.
*
Bugfix: PK fields now only default to read-only if they are an AutoField or if
`editable=False`
.
*
Bugfix: Validation errors instead of exceptions when serializers receive incorrect types.
*
Bugfix: Validation errors instead of exceptions when related fields receive incorrect types.
*
Bugfix: Handle ObjectDoesNotExist exception when serializing null reverse one-to-one
### 2.1.15
### 2.1.15
**Date**
: 3rd Jan 2013
**Date**
: 3rd Jan 2013
...
...
docs/topics/release-notes.md
View file @
191135d7
...
@@ -16,16 +16,17 @@ Major version numbers (x.0.0) are reserved for project milestones. No major poi
...
@@ -16,16 +16,17 @@ Major version numbers (x.0.0) are reserved for project milestones. No major poi
## 2.1.x series
## 2.1.x series
### Master
### 2.1.16
**Date**
: 14th Jan 2013
*
Deprecate django.utils.simplejson in favor of Python 2.6's built-in json module.
*
Deprecate django.utils.simplejson in favor of Python 2.6's built-in json module.
*
Bugfix: PK fields now only default to
`read_only=True`
if they are an AutoField or if
`editable=False`
.
*
Bugfix:
`auto_now`
,
`auto_now_add`
and other
`editable=False`
fields now default to read-only.
*
Bugfix: PK fields now only default to read-only if they are an AutoField or if
`editable=False`
.
*
Bugfix: Validation errors instead of exceptions when serializers receive incorrect types.
*
Bugfix: Validation errors instead of exceptions when serializers receive incorrect types.
*
Bugfix: Validation errors instead of exceptions when related fields receive incorrect types.
*
Bugfix: Validation errors instead of exceptions when related fields receive incorrect types.
*
Bugfix: Handle ObjectDoesNotExist exception when serializing null reverse one-to-one
*
Bugfix: Handle ObjectDoesNotExist exception when serializing null reverse one-to-one
**Note**
: If you are using auto UUID fields as your primary keys, you probably want to make sure that the model fields correctly set
`editable=False`
.
### 2.1.15
### 2.1.15
**Date**
: 3rd Jan 2013
**Date**
: 3rd Jan 2013
...
...
rest_framework/__init__.py
View file @
191135d7
__version__
=
'2.1.1
5
'
__version__
=
'2.1.1
6
'
VERSION
=
__version__
# synonym
VERSION
=
__version__
# synonym
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