Tom Christie
c716f35825
Added Cantemo
2014-08-12 14:57:27 +01:00
Tom Christie
7551db23ca
Added Rob Spectre
2014-08-12 13:47:34 +01:00
Tom Christie
f46b55b75f
Added OpenEye as a silver sponsor
2014-08-12 13:44:00 +01:00
Kevin London
bc03d2b553
Updated links to Bootstrap components
...
The previous links landed on the the main page and no longer directly linked to specific areas.
2014-08-07 16:32:40 -07:00
Tom Christie
83597a4b0f
Latest sponsor update
2014-08-05 15:31:39 +01:00
Tom Christie
322476c386
Latest sponsor update
2014-08-04 09:20:27 +01:00
Tom Christie
7bc9954fdb
Update sponsorships
2014-08-02 15:28:34 +01:00
Tom Christie
d0fdcdfdad
Added pathwright
2014-08-02 15:18:03 +01:00
Tom Christie
3ac075a227
Update Nephila sponsorship
2014-08-02 15:08:14 +01:00
Tom Christie
f58dde59c4
Sponsor updated
2014-08-02 15:05:03 +01:00
Tom Christie
9af3dc0ba5
Added ProReNata AB
2014-08-01 13:54:26 +01:00
Tom Christie
5377bda942
Fix LaterPay link
2014-08-01 13:42:51 +01:00
Tom Christie
f87aadb3ce
Latest sponsor updates
2014-08-01 11:35:48 +01:00
Tom Christie
6677374e9b
Kickstarter sponsors
2014-07-31 22:33:45 +01:00
Tom Christie
8044416523
Add platinum sponsors
2014-07-31 20:19:28 +01:00
Xavier Ordoquy
4876bec9f5
Merge remote-tracking branch 'origin/master' into 2.4.0
...
Conflicts:
rest_framework/fields.py
2014-07-26 00:06:56 +02:00
Tom Christie
ead0e60099
Docs for kickstarter announcement
2014-07-17 17:17:41 +01:00
Carlton Gibson
d98245ac22
Merge branch '2.4.0' of github.com:tomchristie/django-rest-framework into #1559
...
Conflicts:
docs/topics/release-notes.md
2014-06-24 10:30:08 +02:00
Carlton Gibson
3f727ce738
Added (first pass) notes to docs & release notes. Backed out SOUTH_MIGRATION_MODULES
setting from rest_framework.settings
2014-06-24 09:02:44 +02:00
Xavier Ordoquy
2489e38a06
Merge remote-tracking branch 'origin/master' into 2.4.0
...
Conflicts:
.travis.yml
docs/api-guide/viewsets.md
rest_framework/serializers.py
rest_framework/throttling.py
tests/test_generics.py
tests/test_serializers.py
tox.ini
2014-06-23 14:02:45 +02:00
Walt Javins
b4c7717cb8
Refactor login template to extend base.
...
While experimenting with extending DRF, I found that the login page
1) had no title, and 2) duplicated <head> info from base.html.
This change adds a new {% block body %} to the base.html template
which allows override of the entire html <body>. login_base.html
has its duplicated head info stripped, and now extends base.html
to share common html <head> templating.
As part of this change, pretify.css is unnecessarily added to
login_base.html. If this is deemed a problem, it will be easy to
block that css out, and have login_base.html override the block.
Ideally, I would have liked to create a new api_base.html that extends
base.html, move the api specific logic into that template, and leave
base.html content agnostic, to truely be a unifying base for all DRF
pages. But this change would break current apps that override
api.html and expect base.html to be the immediate super template. :/
This change is benificial because it:
- removes duplication of header declarations (mostly css includes)
- adds a html title to the login page
- standardizes html header info across all DRF pages
Docs are updated to reflect the new structure.
2014-06-13 22:26:00 -07:00
Tom Christie
1386767013
Version 2.3.14
2014-06-12 11:47:26 +01:00
Xavier Ordoquy
15c2c58b43
Updated the release-notes.
2014-05-01 08:43:49 +02:00
Xavier Ordoquy
7b4463f739
Merge remote-tracking branch 'reference/2.4.0' into feature/pytest
...
Conflicts:
rest_framework/runtests/urls.py
tests/test_response.py
tox.ini
2014-05-01 08:01:38 +02:00
Xavier Ordoquy
2aca69a946
Merge remote-tracking branch 'reference/master' into feature/pytest
...
Conflicts:
tests/test_serializer.py
2014-04-30 22:24:01 +02:00
Xavier Ordoquy
56b4390316
Merge remote-tracking branch 'origin/master' into 2.4.0
...
Conflicts:
.travis.yml
rest_framework/serializers.py
rest_framework/tests/test_authentication.py
2014-04-30 22:21:26 +02:00
Xavier Ordoquy
f4a82dd5da
Updated the release notes.
2014-04-24 14:33:36 +02:00
Xavier Ordoquy
1797a74e82
Merge remote-tracking branch 'pelme/pytest' into feature/pytest
...
Conflicts:
.travis.yml
rest_framework/runtests/runtests.py
tests/test_filters.py
tests/test_pagination.py
tox.ini
2014-04-17 09:53:44 +02:00
Xavier Ordoquy
d08536ad9d
Merge remote-tracking branch 'origin/master' into 2.4.0
...
Conflicts:
.travis.yml
docs/api-guide/fields.md
docs/api-guide/routers.md
docs/topics/release-notes.md
rest_framework/authentication.py
rest_framework/serializers.py
rest_framework/templatetags/rest_framework.py
rest_framework/tests/test_authentication.py
rest_framework/tests/test_filters.py
rest_framework/tests/test_hyperlinkedserializers.py
rest_framework/tests/test_serializer.py
rest_framework/tests/test_testing.py
rest_framework/utils/encoders.py
tox.ini
2014-04-13 00:05:57 +02:00
Dmitry Mukhin
e45e52a255
replace page with page_size to avoide confusion
2014-04-07 20:39:45 +04:00
Tom Christie
c1148241ee
Version 2.3.13
2014-03-06 09:01:05 +00:00
Andreas Pelme
971578ca34
Support for running the test suite with py.test
...
* Get rid of runtests.py
* Moved test code from rest_framework/tests and rest_framework/runtests to tests
* Invoke py.test from setup.py
* Invoke py.test from Travis
* Invoke py.test from tox
* Changed setUpClass to be just plain setUp in test_permissions.py
* Updated contribution guideline to show how to invoke py.test
2014-03-02 12:40:30 +01:00
Kumar McMillan
e2857bdcff
Fix link to tox
2014-02-28 16:35:03 -06:00
Kumar McMillan
f5f4c1a837
strip trailing whitespace
...
my editor does this by default
2014-02-28 16:34:42 -06:00
Tom Christie
aaa5885232
Update credits
2014-02-13 17:40:00 +00:00
Tom Christie
c465ceaf5c
Merge pull request #1417 from amezhenin/issue_1386
...
Add myself into credits.md
2014-02-13 17:38:38 +00:00
Artem Mezhenin
45d89b5d11
credit, issue #1386 , PR #1397
2014-02-13 21:25:35 +04:00
amatellanes
0cb08ac707
Fixed Testing docs section
2014-02-12 23:17:05 +01:00
Tom Christie
71c03b9db9
Security update to OrderingFilter
2014-01-15 14:27:41 +00:00
Tom Christie
85d74fc86a
Added write_only and write_only_fields. Refs #1306
2014-01-14 11:25:44 +00:00
Tom Christie
2911cd64ad
Minor tweaks to 'lookup_value_regex' work
2014-01-13 15:37:52 +00:00
Tom Christie
a90796c0f0
Track changes that need noting in 2.4 announcement
2014-01-13 09:56:57 +00:00
Tom Christie
78494401c5
Use www.django-rest-framework.org for docs instead of django-rest-framework.org due to issues with naked domains
2014-01-08 15:22:41 +00:00
Kevin Brown
0672d6de6e
Fix bugfix note
...
This fixes a bugfix note that was added because of #1293 , which
pointed out that a change in a bugfix [1] broke backwards
compatibility. The bugfix did not work as expected because a
variable was quoted when it should not have been. This removes
the quotes around the variable, which brings back the expected
functionality.
2014-01-02 16:46:57 -05:00
Tom Christie
bed2f08c24
Updated release notes
2013-12-23 11:57:25 +00:00
Tom Christie
52686420f4
Merge branch 'bennbollay-patch-1' into 2.4.0
...
Conflicts:
.travis.yml
docs/api-guide/routers.md
rest_framework/compat.py
tox.ini
2013-12-23 09:48:59 +00:00
Tom Christie
31dd160256
Typo
2013-12-16 11:59:14 +00:00
Tom Christie
6b6b255684
Add note on pagination bugfix. Closes #1293 .
2013-12-14 20:42:58 +00:00
Tom Christie
f78b3187df
Added @philipforget for work on #1232 . Thanks :)
2013-12-13 22:01:19 +00:00
Tom Christie
54d3c6a725
Updated release notes
2013-12-13 21:59:47 +00:00
Tom Christie
87b99d1ac8
Update release notes
2013-12-13 20:17:26 +00:00
Tom Christie
9c41c007af
Merge branch 'master' into 2.4.0
...
Conflicts:
.travis.yml
docs/api-guide/routers.md
docs/topics/release-notes.md
rest_framework/compat.py
2013-12-13 16:32:34 +00:00
Tom Christie
c09ad1bedc
Remove incorrect apostrophe
2013-12-10 08:53:38 +00:00
Tom Christie
40164fcc62
Update release notes
2013-12-10 08:49:54 +00:00
Tom Christie
2c898bd901
Update release notes
2013-12-09 09:27:10 +00:00
Tom Christie
c1be503308
Add notes to contributing docs
2013-12-09 08:46:18 +00:00
Tom Christie
e6f6bb5c7e
Add notes to contributing docs
2013-12-09 08:42:09 +00:00
Tom Christie
23369650e3
Add notes to contributing docs
2013-12-09 08:14:21 +00:00
Tom Christie
e80b353085
Add notes to contributing docs
2013-12-09 08:10:51 +00:00
Tom Christie
910de38a9c
Version 2.3.10
2013-12-06 22:13:50 +00:00
Tom Christie
85d9eb0f7e
Update release-notes.md
2013-12-06 21:47:26 +00:00
Tom Christie
51359e4612
Added @chuckharmston for kickass bug squashing in #1272
2013-12-06 21:42:52 +00:00
Tom Christie
6446b44f01
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
2013-12-04 14:59:28 +00:00
Tom Christie
de5b9e39dd
First pass on contribution guide
2013-12-04 14:59:09 +00:00
Tom Christie
38d78b21c0
Remove Content-Type header from empty responses. Fixes #1196
2013-12-03 16:55:11 +00:00
Tom Christie
9f1918e41e
Added @ian-foote, for work on #1250 . Thanks!
2013-12-03 16:06:57 +00:00
Tom Christie
b92c911cf6
Update release-notes.md
2013-12-03 16:05:19 +00:00
Tom Christie
fe4c7d4000
Update release-notes.md
2013-12-03 08:26:58 +00:00
Tom Christie
304b193efe
Update release-notes.md
2013-11-19 15:58:34 +00:00
Tom Christie
ca2bd616d9
Remove a couple of .html suffixes in docs
2013-11-19 11:01:27 +00:00
Tom Christie
1d1b2f765c
Version 2.3.9
2013-11-15 13:55:02 +00:00
Alex
72d72e4d3e
Add Alex Good to credits (Whoop!)
2013-11-13 14:32:37 +00:00
Tom Christie
5e0538fcda
Added @robhudson for work on #1211 . Thanks!
2013-11-02 09:15:35 +00:00
Tom Christie
2ddf7869e3
Added @yamila-moreno for work on #1199 . Thanks!
2013-10-24 15:29:40 +01:00
Tom Christie
4d894fd39e
Added @alexanderlukanin13 for fix #1198 . Thanks!
2013-10-24 13:50:05 +01:00
Tom Christie
f92d8bd972
Added @jbzdak, for the nice docs improvements in #1191 . Thanks!
2013-10-22 12:21:26 +01:00
Tom Christie
fa87fac61b
Added @ross for work on #1187 . Thanks!
2013-10-22 10:21:06 +01:00
Colin
daf927ef68
add @tamakisquare for work on #1111
2013-10-17 12:28:58 -07:00
Tom Christie
545ee013e3
Added @badale, for work on #1179 . Thanks!
2013-10-17 09:40:06 +01:00
Tom Christie
3833f1d55f
Added @hcliff for #1153 . Thanks!
2013-10-04 15:55:57 +01:00
Jeff
61dd9ce914
Update release-notes.md
...
Simple typo fix.
2013-10-01 15:47:47 -06:00
Krzysztof Jurewicz
49847584a8
Minor documentation fix.
2013-09-29 12:49:38 +02:00
Tom Christie
21cd638659
Merge master
2013-09-25 09:44:26 +01:00
Tom Christie
57a51f790b
Added @mkai, for work on #1126 . Thanks!
2013-09-24 09:21:55 +01:00
Tom Christie
e8c6cd5622
Update release notes.
2013-09-13 19:43:19 +01:00
Tom Christie
d75ecb3d69
Added @mrmachine. Thanks!
...
For work on #1109 .
2013-09-13 19:40:58 +01:00
Tai Lee
a9dbd46c94
Refs #1109 -- Update docs. Integrate changes from feedback.
2013-09-14 00:54:44 +10:00
Tom Christie
895beb89c6
Note on '.model' as default only, with 'serializer_class', and 'queryset' attributes prefered. Closes #1100
2013-09-12 21:41:21 +01:00
Tom Christie
195790e60b
Version 2.3.8
2013-09-11 09:09:30 +01:00
Tom Christie
e021472a16
Added @bwreilly for awesome work on #1093 . Thanks!!!
2013-09-10 21:07:20 +01:00
Tom Christie
101da45810
Updated release notes
2013-09-10 21:06:42 +01:00
Tom Christie
f5c34926d6
Update release-notes.md
2013-09-09 20:41:54 +01:00
Tom Christie
b47f1b0257
Added @edmundwong for work on #1076 . Thanks!
2013-09-05 20:25:45 +01:00
Tom Christie
f8101114d1
Update release notes
2013-08-30 09:31:35 +01:00
Tom Christie
9a5b2eefa9
Merge master
2013-08-30 09:28:33 +01:00
Tom Christie
ac0fb01be3
Update release notes.
2013-08-29 19:31:36 +01:00
Tom Christie
4b46de7dce
Added @diox for fix #1074 . Thanks!
2013-08-29 19:31:36 +01:00
Tom Christie
6f8acb5a76
Added @niwibe
...
For docs addition #1070 - Thanks!
2013-08-29 09:31:12 +01:00
Tom Christie
711fb9761c
Update release notes.
2013-08-28 13:35:27 +01:00
Tom Christie
d7224afe54
Added @alexander-akhmetov.
...
For work on MAX_PAGINATE_BY, #1063 . Thanks! :)
2013-08-28 12:57:29 +01:00
Tom Christie
c3e273a90e
Added @kristianoellegaard.
...
For docs addition #1059 . Thanks!
2013-08-27 09:16:20 +01:00
Tom Christie
2340035789
Added @ericbuehl
...
For pull request #1058 . Thank you! :)
2013-08-25 20:48:10 +01:00
Tom Christie
f54fc3a76b
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
2013-08-23 14:06:39 +01:00
Tom Christie
7bbe0f868f
Added @krzysiekj
...
For work on #1034 . Thanks!
2013-08-23 13:37:25 +01:00
Tom Christie
f2b190e374
Update release notes
2013-08-23 12:06:23 +01:00
Tom Christie
19a774f972
force_authenticate(None) also clears session info.
...
Closes #1055 .
2013-08-23 11:21:52 +01:00
Stephan Groß
b8561f4123
Add @ramiro for #1056 thanks!
2013-08-22 17:52:22 +02:00
Tom Christie
16ffdedd14
Merge master
2013-08-21 21:31:59 +01:00
Tom Christie
44ceef8415
Updating 2.4.0 release notes
2013-08-21 21:30:25 +01:00
Tom Christie
4338e1e43f
Added @filipeximenes
...
For work on #1050 . Thanks!
2013-08-21 20:00:35 +01:00
Tom Christie
f84d4951bf
Update release notes
2013-08-19 21:46:34 +01:00
Tom Christie
34d65119fc
Update release notes.
2013-08-19 08:54:48 +01:00
Tom Christie
3a99b0af50
Added @chrispaolini.
...
For customizable view names/descriptions in #1043 . Thanks! :)
2013-08-19 08:47:52 +01:00
Tom Christie
f6f69dc71d
Version 2.3.7
2013-08-16 14:03:20 +01:00
Tom Christie
d5b56310b0
Update release notes
2013-08-16 13:23:27 +01:00
Tom Christie
7bc63fbb11
Added @jsatt.
...
For fix & tests in #1037 .
2013-08-14 13:17:30 +01:00
Stephan Groß
999056cde1
Add @martync for #1033 thanks!
2013-08-13 10:43:07 +02:00
Tom Christie
54b7b6760c
Added @etos.
...
For fixes in #1029 , #1030 - Thanks!
2013-08-12 09:27:34 +01:00
Tom Christie
2761d6a472
Added @kolvia.
...
For multiple documentation fixes in #1026 . Thank you! :)
2013-08-07 20:27:41 +01:00
Veronica Lynn
4d8d2340be
Fixed typos in a bunch of docs
2013-08-07 14:00:06 -04:00
Stephan Groß
e4144b5b67
Add @rlr for #1022 thanks!
2013-08-02 08:59:18 +02:00
leandersikma
56d19dcc1c
Wrong name of the login_base html file.
...
Changed rest_framework/base_login.html to rest_framework/login_base.html (which is the correct name the user should extends in their templates).
2013-07-30 11:26:17 +02:00
Stephan Groß
205c626d6e
Add @jimr for #1013 thanks!
2013-07-29 15:53:26 +02:00
Stephan Groß
e98c229e5a
Add @coderigo for #1011 thanks!
2013-07-28 18:51:22 +02:00
Kevin Brown
9088c18da8
Added to the credits
2013-07-26 11:03:37 -04:00
Stephan Groß
0fa9866848
Add @willkg for #1007 thanks!
2013-07-26 09:26:32 +02:00
Stephan Groß
c23412b51c
Add @pzinovkin for #995 thanks!
2013-07-24 11:02:10 +02:00
Steve
61a242e27b
added script block to list of blocks
...
Phew, was afraid I wouldn't be able to overwrite this section..
2013-07-23 10:40:54 -04:00
Kevin Brown
8f2e71a67f
Modified documentation for CSRF as mentioned in #984
2013-07-19 19:49:20 -04:00
Tom Christie
1cfb1cf458
Added @cyroxx for work on #978
2013-07-10 21:14:18 +01:00
Tom Christie
77364d2b84
Add screenshot, and tweak docs
2013-07-09 14:00:53 +01:00
Tom Christie
cb95e0aab1
Merge pull request #970 from sebastibe/browsable-autocomplete-field-doc
...
Add recommendation about autocomplete widgets for the browsable API
2013-07-09 05:46:30 -07:00
Tom Christie
f94ce6e7cb
Added @gertjanol for work on #976 - thank you :)
2013-07-09 13:13:56 +01:00
Sebastien Beal
997a93ac2e
Add info about autocomplete widgets for browsable API
2013-07-07 19:04:47 +09:00
Tom Christie
0950d3e0ef
Tweak docs
2013-07-04 08:02:08 +01:00
Tom Christie
7c0019854b
Horizontal rule for nicer formatting
2013-07-03 13:19:07 +01:00
Tom Christie
a55a293450
Improve browsable API docs including theme screenshots
2013-07-03 13:02:32 +01:00
Tom Christie
2c477a9ca1
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
2013-07-02 22:16:24 +01:00
Tom Christie
03e0ce35fe
Added 'Documenting your API' section. Closes #616
2013-07-02 22:15:46 +01:00
Tom Christie
e969c96aa0
Added @omouse for work on #955 - thanks! :)
2013-07-02 22:08:40 +01:00
Tom Christie
7ba2f44a0f
Version 2.3.6
2013-06-27 13:00:05 +01:00
Tom Christie
af2fdc03a6
Update release notes
2013-06-26 22:45:39 +01:00
Tom Christie
cb83bc373f
Added @trwired for fix #943 . Thanks :)
2013-06-26 22:44:44 +01:00
Tom Christie
494703fc8e
Update release notes
2013-06-26 22:40:14 +01:00
Tom Christie
fb6bcd9f06
Update release notes, noting support for StreamingHttpResponse. Refs #939
2013-06-21 22:43:01 +01:00
Tom Christie
4f7f93e20e
Added @freakydug, for changes in #941 . Thanks :)
2013-06-21 22:28:36 +01:00
Tom Christie
ef38886fe8
Update release notes
2013-06-14 15:40:20 +01:00
Tom Christie
1cc2a7b25e
Added @davesque for work on #926 . Thanks! :)
2013-06-12 22:46:07 +02:00
Tom Christie
5ce1d6c86b
Added @mindlace for work on #922 . Thx!
2013-06-08 09:38:21 +02:00
Tom Christie
f317699d47
Added @areski for docs fix #912 . Thanks!
2013-06-05 14:36:40 +02:00
Tom Christie
28c2c46a03
Version 2.3.5
2013-06-03 12:34:18 +01:00
Tom Christie
11cbf8dca2
Added @copitux for work on #900 . Thanks! :)
2013-06-03 09:50:29 +02:00
Tom Christie
959ece66e5
Added @aburgel for work on #887 . Thank you :)
2013-06-02 20:43:20 +01:00
Tom Christie
27d8b848bc
Add notes on 'method' argument to '@action' decorator
2013-06-02 20:40:56 +01:00
Tom Christie
b15a6ccef2
Serializer field 'default' argument may be a callable
2013-06-02 20:12:49 +01:00
Tom Christie
363b342548
Update release notes
2013-05-31 12:24:36 +01:00
Tom Christie
2e566ade39
Release notes
2013-05-30 11:47:21 +01:00
Stephan Groß
7a570e16e9
Fix md formatting and typos
2013-05-28 17:13:12 +02:00
Stephan Groß
d7bf02e09e
Add @pborreli for #897
2013-05-28 16:43:08 +02:00
Pascal Borreli
8f35ac4f93
Fixed typos
2013-05-28 15:09:23 +01:00
Tom Christie
2a38aa7291
Version 2.3.4
2013-05-24 23:55:59 +01:00
Tom Christie
fcaee6e580
Clean up OPTIONS implementation
2013-05-24 23:44:23 +01:00
Tom Christie
78c53d530f
Updating docs
2013-05-24 21:08:27 +01:00
Tom Christie
02b29267ac
Fix release notes
2013-05-22 21:04:42 +01:00
Tom Christie
6434a5f4a8
Added @mikee2185 and @mjtorn for their work on #467 . Thank you :)
2013-05-21 12:12:39 +01:00
Tom Christie
8bbb94dea9
Added @atarzwell for docs fix #876 . Thanks!
2013-05-21 12:18:37 +02:00
Tom Christie
26e037d415
Fix broken docs links. Closes #873
2013-05-20 13:49:42 +01:00
Tom Christie
3aad12220d
Added @commonorgarden, for fix #875 . Thank you :)
2013-05-20 13:46:29 +01:00
Tom Christie
351814e110
Added @lolek09 for work on #862 . Kick ass!
2013-05-18 18:32:02 +02:00
Tom Christie
6af61a19b7
Added @matteosuppo for work on #865 . Thanks!
2013-05-18 18:07:43 +02:00
Tom Christie
3ba43b960e
Added @andymckay for refactoring #860
2013-05-18 16:19:05 +02:00
Tom Christie
794413734f
Merge branch 'master' of https://github.com/mmcardle/django-rest-framework into styling-fixes
2013-05-18 14:50:49 +01:00
Tom Christie
304c07681d
Merge
2013-05-18 14:45:06 +01:00
Tom Christie
275bfa2320
Added @grimborg and @ryankask. Go Team. :)
2013-05-18 14:03:08 +01:00
Mark McArdle
72bc5a3556
documentation for https://github.com/tomchristie/django-rest-framework/issues/775
2013-05-18 13:19:13 +01:00
Tom Christie
a0e3c44c99
Added @craigds, @pyriku, @brianz - Yay for sprints!
2013-05-18 13:40:20 +02:00
Tom Christie
f1fb434e6d
Update release-notes.md
2013-05-16 19:59:33 +02:00
Tom Christie
bc3dfca5e3
Added @rouge8 for bugfix #844 . Thank you!
2013-05-16 19:58:17 +02:00
Tom Christie
aff88d15f7
Version 2.3.3
2013-05-16 15:08:12 +01:00
Tom Christie
599c0eb0db
Added @jsummerfield for cleanups in #824 . Thanks!
2013-05-14 19:38:41 +02:00
Tom Christie
d199a89c18
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
2013-05-14 11:40:43 +01:00
Tom Christie
6487fa535b
Added @avinash240 for bugfix #822
2013-05-14 11:39:30 +01:00
Tom Christie
727a64f3b9
Updated release notes
2013-05-14 11:38:55 +01:00
Tom Christie
f9aeb68383
Updated release notes
2013-05-14 09:59:29 +01:00
Tom Christie
1154d873e9
Added django-viewsets to credits. Refs #738 .
2013-05-13 13:35:16 +02:00
Tom Christie
fd84cf7f10
Docs tweaks
2013-05-10 21:56:33 +01:00
Tom Christie
2e3032ff8c
Added @hamishcampbell for docs fix #818 . Thanks!
2013-05-10 14:14:42 +02:00
Tom Christie
4ab7b8f257
Version 2.3.2
2013-05-08 20:49:49 +01:00
Tom Christie
9d59e55cec
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
2013-05-08 20:09:03 +01:00
Tom Christie
2379014f15
Add rails in credits section
2013-05-08 20:08:35 +01:00
Tom Christie
42ba5b425b
Added @dhepper for typo fixes in #812 .
2013-05-08 10:02:52 +02:00
Tom Christie
a758066c03
Added @eyepulp for fix #810
2013-05-07 17:25:51 +01:00
Tom Christie
d7c08222f1
Fix breadcrumb rendering issue
2013-05-07 14:11:48 +01:00
Tom Christie
ed2cf180c9
Version 2.3.0
2013-05-07 13:29:38 +01:00
Tom Christie
3353889ae8
Docs for FileUploadParser
2013-05-07 13:27:27 +01:00
Tom Christie
0f00da848d
Tweak 2.3 release notes
2013-05-07 13:07:42 +01:00
Tom Christie
3c2bb06660
Support for multiple filter classes
2013-05-07 13:00:44 +01:00
Tom Christie
d71a5533f9
allow_empty -> pending deprecation in preference of overridden get_queryset.
2013-05-07 12:25:41 +01:00
Tom Christie
b70c9cc107
Merge master
2013-05-05 18:12:35 +01:00
Tom Christie
2d44dc3f54
Update release notes
2013-05-02 12:46:10 +01:00
Victor Shih
8cabae22c5
Example and spelling fixes. Change "browseable" to "browsable" for consistency.
2013-05-01 21:26:40 -07:00
Tom Christie
ddbbe7844b
Document lookup_field in release notes
2013-05-01 09:10:49 +01:00
Tom Christie
22af28d146
Merge master
2013-04-30 19:32:34 +01:00
Tom Christie
21ae3a6691
Drop out attribute
2013-04-30 08:24:33 +01:00
Tom Christie
81c3b4f250
Updated release notes
2013-04-29 17:32:32 +01:00
Tom Christie
0c1ab584d3
Tweaks for preferring .queryset over .model
2013-04-29 14:08:38 +01:00
Tom Christie
70831ad0bb
Docs tweaks
2013-04-29 12:08:21 +01:00
Tom Christie
5d357a9b08
Added @chenjyw for depth bugfix #802 . Thanks!
2013-04-29 10:28:51 +02:00
Tom Christie
d985aec3c9
DecimalField
2013-04-26 13:59:06 +01:00
Tom Christie
74b3307978
Docs, docs, docs
2013-04-25 20:43:37 +01:00
Tom Christie
9abaf77401
More viewset/router docs
2013-04-25 17:39:33 +01:00
Tom Christie
b14b584989
Remove 2.0 migration guide which was never included
2013-04-25 12:48:01 +01:00
Tom Christie
b94da2468c
Various clean up and lots of docs
2013-04-24 22:40:24 +01:00
Tom Christie
eaac152940
Added @forgingdestiny for login template work.
...
Thanks! (Refs: #794 )
2013-04-17 23:19:16 +02:00
Tom Christie
eb58596b89
Update release-notes.md
2013-04-17 23:17:08 +02:00
Matt Majewski
f7fdcd55e4
Update browsable-api.md
...
Add login template docs
2013-04-17 12:27:48 -03:00
Tom Christie
ea55143a23
Version 2.2.7
2013-04-17 09:07:20 +01:00
Tom Christie
37fe0bf0de
Remove unneccessary tests from #789 , and bit of cleanup.
2013-04-17 09:03:24 +01:00
Stephan Groß
15f4013859
Remove rebase docs
2013-04-15 13:06:22 +02:00
Stephan Groß
8b44599aba
Update release notes
2013-04-15 13:04:36 +02:00
Stephan Groß
ad436d966f
Add DecimalField support
2013-04-15 13:02:18 +02:00
Stephan Groß
1b5382c146
Add DecimalField support
2013-04-15 12:40:18 +02:00
Tom Christie
c2280e34ec
Version 2.2.6
2013-04-04 21:53:15 +01:00
glic3rinu
77ac204429
Rephrased break_long_headers release notes line
2013-04-04 14:07:56 +02:00
glic3rinu
e8978eaf68
Added break_long_headers on the release notes
2013-04-04 14:02:20 +02:00
Tom Christie
df30b345b1
Update release-notes.md
2013-04-03 13:58:42 +02:00
Tom Christie
cd94cfc441
Added @preed for bugfix #772 . Thanks!
2013-04-03 13:55:58 +02:00
Tom Christie
c39ef12de0
Update release-notes.md
2013-04-03 13:53:18 +02:00
Tom Christie
afd64dc51a
Added @atlefren for bugfix in #776
2013-04-03 13:50:26 +02:00
Tom Christie
7d7c03eb24
Added @vshih for docs fixes in #769 . Thanks!
2013-04-01 17:09:36 +02:00
Tom Christie
399ac70b83
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
2013-03-30 15:40:11 +00:00
Tom Christie
2e06f5c832
Fix typo
2013-03-29 17:26:58 +00:00
Tom Christie
89f3c1f8c4
Update release-notes.md
2013-03-29 13:44:50 +00:00
Tom Christie
fb105d138c
Minor tweak
2013-03-28 14:54:25 +00:00
Tom Christie
92c929094c
Version 2.2.5
2013-03-26 07:48:53 +00:00
Tom Christie
dca24cd914
Added @stoneg for typo fix #754 . Thank you!
2013-03-25 16:44:36 +00:00
Tom Christie
624ce250cd
Updating contribution docs (still wip)
2013-03-22 22:06:38 +00:00
Tom Christie
9a2ba4bf54
Update release notes
2013-03-22 21:37:51 +00:00
Tom Christie
acc8c1faa4
force_insert, force_update arguments. Closes #484 .
...
Confirmed by `assertNumQueries(…)` in tests.
2013-03-13 20:40:39 +00:00
Tom Christie
4b68089d44
Version 2.2.4
2013-03-13 13:07:46 +00:00
Tom Christie
a798a5350a
Fix duplicated database queries for paginated lists.
...
Closes #713 .
2013-03-13 11:42:12 +00:00
Tom Christie
1aecd71eb4
Added @kuhnza for work on #695 . Thanks!
2013-03-12 20:52:04 +00:00
Tom Christie
208407d569
Update release notes.
2013-03-12 20:49:44 +00:00
Tom Christie
377dc2cda2
Only honor X-HTTP-Method-Override for POST requests.
2013-03-12 20:49:20 +00:00
Tom Christie
716d86863f
Merge pull request #695 from kuhnza/master
...
Support for X-HTTP-Method-Override Header
2013-03-12 13:40:48 -07:00
Tom Christie
a574dc7f85
Update release notes
2013-03-12 20:12:22 +00:00
Tom Christie
e8db504a98
Merge master
2013-03-12 18:49:38 +00:00
Dave Kuhn
2bcb8ff12c
Documentation for X-HTTP-Method-Override
2013-03-12 13:48:40 +11:00
Tom Christie
2088023293
Update release notes
2013-03-10 20:39:04 +00:00
Tom Christie
0df008dc83
Added @bouke for bug fix #722 . Thanks!
2013-03-10 20:37:15 +00:00