Skip to content

Commit a7525d8

Browse files
authored
Version 3.4.4 (encode#4395)
1 parent ae720d9 commit a7525d8

File tree

2 files changed

+64
-1
lines changed

2 files changed

+64
-1
lines changed

docs/topics/release-notes.md

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

4141
## 3.4.x series
4242

43+
### 3.4.4 [12th August 2016][3.4.4-milestone]
44+
45+
* Ensure views are fully initialized when generating schemas. ([#4373][gh4373], [#4382][gh4382], [#4383][gh4383], [#4279][gh4279], [#4278][gh4278])
46+
* Add form field descriptions to schemas. ([#4387][gh4387])
47+
* Fix category generation for schema endpoints. ([#4391][gh4391], [#4394][gh4394], [#4390][gh4390], [#4386][gh4386], [#4376][gh4376], [#4329][gh4329])
48+
* Don't strip empty query params when paginating. ([#4392][gh4392], [#4393][gh4393], [#4260][gh4260])
49+
* Do not re-run query for empty results with LimitOffsetPagination. ([#4201][gh4201], [#4388][gh4388])
50+
* Stricter type validation for CharField. ([#4380][gh4380], [#3394][gh3394])
51+
* RelatedField.choices should preserve non-string values. ([#4111][gh4111], [#4379][gh4379], [#3365][gh3365])
52+
* Test case for rendering checkboxes in vertical form style. ([#4378][gh4378], [#3868][gh3868], [#3868][gh3868])
53+
* Show error traceback HTML in browsable API ([#4042][gh4042], [#4172][gh4172])
54+
* Fix handling of ALLOWED_VERSIONS and no DEFAULT_VERSION. [#4370][gh4370]
55+
* Allow `max_digits=None` on DecimalField. ([#4377][gh4377], [#4372][gh4372])
56+
* Limit queryset when rendering relational choices. ([#4375][gh4375], [#4122][gh4122], [#3329][gh3329], [#3330][gh3330], [#3877][gh3877])
57+
* Resolve form display with ChoiceField, MultipleChoiceField and non-string choices. ([#4374][gh4374], [#4119][gh4119], [#4121][gh4121], [#4137][gh4137], [#4120][gh4120])
58+
* Fix call to TemplateHTMLRenderer.resolve_context() fallback method. ([#4371][gh4371])
59+
4360
### 3.4.3
4461

4562
**Date**: [5th August 2016][3.4.3-milestone]
@@ -540,6 +557,7 @@ For older release notes, [please see the version 2.x documentation][old-release-
540557
[3.4.1-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.4.1+Release%22
541558
[3.4.2-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.4.2+Release%22
542559
[3.4.3-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.4.3+Release%22
560+
[3.4.4-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.4.4+Release%22
543561

544562
<!-- 3.0.1 -->
545563
[gh2013]: https://github.com/tomchristie/django-rest-framework/issues/2013
@@ -1000,3 +1018,48 @@ For older release notes, [please see the version 2.x documentation][old-release-
10001018

10011019
<!-- 3.4.3 -->
10021020
[gh4361]: https://github.com/tomchristie/django-rest-framework/issues/4361
1021+
1022+
<!-- 3.4.4 -->
1023+
1024+
[gh2829]: https://github.com/tomchristie/django-rest-framework/issues/2829
1025+
[gh3329]: https://github.com/tomchristie/django-rest-framework/issues/3329
1026+
[gh3330]: https://github.com/tomchristie/django-rest-framework/issues/3330
1027+
[gh3365]: https://github.com/tomchristie/django-rest-framework/issues/3365
1028+
[gh3394]: https://github.com/tomchristie/django-rest-framework/issues/3394
1029+
[gh3868]: https://github.com/tomchristie/django-rest-framework/issues/3868
1030+
[gh3868]: https://github.com/tomchristie/django-rest-framework/issues/3868
1031+
[gh3877]: https://github.com/tomchristie/django-rest-framework/issues/3877
1032+
[gh4042]: https://github.com/tomchristie/django-rest-framework/issues/4042
1033+
[gh4111]: https://github.com/tomchristie/django-rest-framework/issues/4111
1034+
[gh4119]: https://github.com/tomchristie/django-rest-framework/issues/4119
1035+
[gh4120]: https://github.com/tomchristie/django-rest-framework/issues/4120
1036+
[gh4121]: https://github.com/tomchristie/django-rest-framework/issues/4121
1037+
[gh4122]: https://github.com/tomchristie/django-rest-framework/issues/4122
1038+
[gh4137]: https://github.com/tomchristie/django-rest-framework/issues/4137
1039+
[gh4172]: https://github.com/tomchristie/django-rest-framework/issues/4172
1040+
[gh4201]: https://github.com/tomchristie/django-rest-framework/issues/4201
1041+
[gh4260]: https://github.com/tomchristie/django-rest-framework/issues/4260
1042+
[gh4278]: https://github.com/tomchristie/django-rest-framework/issues/4278
1043+
[gh4279]: https://github.com/tomchristie/django-rest-framework/issues/4279
1044+
[gh4329]: https://github.com/tomchristie/django-rest-framework/issues/4329
1045+
[gh4370]: https://github.com/tomchristie/django-rest-framework/issues/4370
1046+
[gh4371]: https://github.com/tomchristie/django-rest-framework/issues/4371
1047+
[gh4372]: https://github.com/tomchristie/django-rest-framework/issues/4372
1048+
[gh4373]: https://github.com/tomchristie/django-rest-framework/issues/4373
1049+
[gh4374]: https://github.com/tomchristie/django-rest-framework/issues/4374
1050+
[gh4375]: https://github.com/tomchristie/django-rest-framework/issues/4375
1051+
[gh4376]: https://github.com/tomchristie/django-rest-framework/issues/4376
1052+
[gh4377]: https://github.com/tomchristie/django-rest-framework/issues/4377
1053+
[gh4378]: https://github.com/tomchristie/django-rest-framework/issues/4378
1054+
[gh4379]: https://github.com/tomchristie/django-rest-framework/issues/4379
1055+
[gh4380]: https://github.com/tomchristie/django-rest-framework/issues/4380
1056+
[gh4382]: https://github.com/tomchristie/django-rest-framework/issues/4382
1057+
[gh4383]: https://github.com/tomchristie/django-rest-framework/issues/4383
1058+
[gh4386]: https://github.com/tomchristie/django-rest-framework/issues/4386
1059+
[gh4387]: https://github.com/tomchristie/django-rest-framework/issues/4387
1060+
[gh4388]: https://github.com/tomchristie/django-rest-framework/issues/4388
1061+
[gh4390]: https://github.com/tomchristie/django-rest-framework/issues/4390
1062+
[gh4391]: https://github.com/tomchristie/django-rest-framework/issues/4391
1063+
[gh4392]: https://github.com/tomchristie/django-rest-framework/issues/4392
1064+
[gh4393]: https://github.com/tomchristie/django-rest-framework/issues/4393
1065+
[gh4394]: https://github.com/tomchristie/django-rest-framework/issues/4394

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__ = '3.4.3'
11+
__version__ = '3.4.4'
1212
__author__ = 'Tom Christie'
1313
__license__ = 'BSD 2-Clause'
1414
__copyright__ = 'Copyright 2011-2016 Tom Christie'

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy