Movatterモバイル変換


[0]ホーム

URL:


GitHub SearchDjango REST framework

Release Notes

Versioning

  • Minor version numbers (0.0.x) are used for changes that are API compatible. You should be able to upgrade between minor point releases without any other code changes.

  • Medium version numbers (0.x.0) may include API changes, in line with thedeprecation policy. You should read the release notes carefully before upgrading between medium point releases.

  • Major version numbers (x.0.0) are reserved for substantial project milestones.

As REST Framework is considered feature-complete, most releases are expected to be minor releases.

Deprecation policy

REST framework releases follow a formal deprecation policy, which is in line withDjango's deprecation policy.

The timeline for deprecation of a feature present in version 1.0 would work as follows:

  • Version 1.1 would remainfully backwards compatible with 1.0, but would raiseRemovedInDRF13Warning warnings, subclassingPendingDeprecationWarning, if you use the feature that are due to be deprecated. These warnings aresilent by default, but can be explicitly enabled when you're ready to start migrating any required changes. For example if you start running your tests usingpython -Wd manage.py test, you'll be warned of any API changes you need to make.

  • Version 1.2 would escalate these warnings to subclassDeprecationWarning, which is loud by default.

  • Version 1.3 would remove the deprecated bits of API entirely.

Note that in line with Django's policy, any parts of the framework not mentioned in the documentation should generally be considered private API, and may be subject to change.

Upgrading

To upgrade Django REST framework to the latest version, use pip:

pip install -U djangorestframework

You can determine your currently installed version usingpip show:

pip show djangorestframework

3.16.x series

3.16.1

Date: 6th August 2025

This release fixes a few bugs, clean-up some old code paths for unsupported Python versions and improve translations.

Minor changes

  • Cleanup optionalbackports.zoneinfo dependency and conditions on unsupported Python 3.8 and lower in#9681. Python versions prior to 3.9 were already unsupported so this shouldn't be a breaking change.

Bug fixes

  • Fix regression inunique_together validation withSerializerMethodField in#9712
  • FixUniqueTogetherValidator to handle fields withsource attribute in#9688
  • Drop HTML line breaks on long headers in browsable API in#9438

Translations

  • Add Kazakh locale support in#9713
  • Update translations for Korean translations in#9571
  • Update German translations in#9676
  • Update Chinese translations in#9675
  • Update Arabic translations-sal in#9595
  • Update Persian translations in#9576
  • Update Spanish translations in#9701
  • Update Turkish Translations in#9749
  • Fix some typos in Brazilian Portuguese translations in#9673

Documentation

  • Removed reference to GitHub Issues and Discussions in#9660
  • Adddrf-restwind and update outdated images inbrowsable-api.md in#9680
  • Updated funding page to represent current scope in#9686
  • Fix broken Heroku JSON Schema link in#9693
  • Update Django documentation links to use stable version in#9698
  • Expand docs on unique constraints cause 'required=True' in#9725
  • Revert extension back fromdjangorestframework-guardian2 todjangorestframework-guardian in#9734
  • Add note to tutorial about requiredrequest in serializer context when usingHyperlinkedModelSerializer in#9732

Internal changes

  • Update GitHub Actions to use Ubuntu 24.04 for testing in#9677
  • Update test matrix to use Django 5.2 stable version in#9679
  • Addpyupgrade topre-commit hooks in#9682
  • Fix test with Django 5 whenpytz is available in#9715

New Contributors

Full Changelog: https://github.com/encode/django-rest-framework/compare/3.16.0...3.16.1

3.16.0

Date: 28th March 2025

This release is considered a significant release to improve upstream support with Django and Python. Some of these may change the behavior of existing features and pre-existing behavior. Specifically, some fixes were added to around the support ofUniqueConstraint with nullable fields which will improve built-in serializer validation.

Features

  • Add official support for Django 5.1 and its newLoginRequiredMiddleware in#9514 and#9657
  • Add official Django 5.2a1 support in#9634
  • Add support for Python 3.13 in#9527 and#9556
  • Support Django 2.1+ test client JSON data automatically serialized in#6511 and fix a regression in#9615

Bug fixes

  • Fix unique together validator to respect condition's fields fromUniqueConstraint in#9360
  • Fix raising on nullable fields part ofUniqueConstraint in#9531
  • Fixunique_together validation with source in#9482
  • Added protections toAttributeError raised within properties in#9455
  • Fixget_template_context to handle also lists in#9467
  • Fix "Converter is already registered" deprecation warning. in#9512
  • Fix noisy warning and accept integers as min/max values ofDecimalField in#9515
  • Fix usages ofopen() insetup.py in#9661

Translations

  • Add some missing Chinese translations in#9505
  • Fix spelling mistakes in Farsi language were corrected in#9521
  • Fixing and adding missing Brazilian Portuguese translations in#9535

Removals

  • Remove support for Python 3.8 in#9670
  • Remove long deprecated code from request wrapper in#9441
  • Remove deprecatedAutoSchema._get_reference method in#9525

Documentation and internal changes

  • Provide tests for hashing ofOperandHolder in#9437
  • Update documentation: Addadrf third party package in#9198
  • Update tutorials links in Community contributions docs in#9476
  • Fix usage of deprecated Django function in example from docs in#9509
  • Move path converter docs into a separate section in#9524
  • Add test covering update view withoutqueryset attribute in#9528
  • Fix Transifex link in#9541
  • Fix examplehttpie call in docs in#9543
  • Fix example for serializer field with choices in docs in#9563
  • Remove extra<> in validators example in#9590
  • Updatestrftime link in the docs in#9624
  • Switch to codecov GHA in#9618
  • Add note regarding availability of theaction attribute in 'Introspecting ViewSet actions' docs section in#9633
  • Improved description of allowed throttling rates in documentation in#9640
  • Addrest-framework-gm2m-relations package to the list of 3rd party libraries in#9063
  • Fix a number of typos in the test suite in the docs in#9662
  • Adddjango-pyoidc as a third party authentication library in#9667

New Contributors

Full Changelog: https://github.com/encode/django-rest-framework/compare/3.15.2...3.16.0

3.15.x series

3.15.2

Date: 14th June 2024

  • Fix potential XSS vulnerability in browsable API.#9435
  • Revert "Ensure CursorPagination respects nulls in the ordering field".#9381
  • Use warnings rather than logging a warning for DecimalField.#9367
  • Remove unused code.#9393
  • Django < 4.2 and Python < 3.8 no longer supported.#9393

3.15.1

Date: 22nd March 2024

  • FixSearchFilter handling of quoted and comma separated strings, when.get_search_terms is being called into by a custom class. See [#9338]
  • Revert number of 3.15.0 issues which included unintended side-effects. See [#9331]

3.15.0

Date: 15th March 2024

  • Django 5.0 and Python 3.12 support [#9157]
  • Use POST method instead of GET to perform logout in browsable API [9208]
  • Added jQuery 3.7.1 support & dropped previous version [#9094]
  • Use str as default path converter [#9066]
  • Document support for http.HTTPMethod in the @action decorator added in Python 3.11 [#9067]
  • Update exceptions.md [#9071]
  • Partial serializer should not have required fields [#7563]
  • Propagate 'default' from model field to serializer field. [#9030]
  • Allow to override child.run_validation call in ListSerializer [#8035]
  • Align SearchFilter behavior to django.contrib.admin search [#9017]
  • Class name added to unknown field error [#9019]
  • Fix: Pagination response schemas. [#9049]
  • Fix choices in ChoiceField to support IntEnum [#8955]
  • FixSearchFilter rendering search field with invalid value [#9023]
  • Fix OpenAPI Schema yaml rendering fortimedelta [#9007]
  • FixNamespaceVersioning ignoringDEFAULT_VERSION on non-None namespaces [#7278]
  • Added Deprecation Warnings for CoreAPI [#7519]
  • Removed usage offield.choices that triggered full table load [#8950]
  • Permit mixed casing of string values forBooleanField validation [#8970]
  • FixesBrowsableAPIRenderer for usage withListSerializer. [#7530]
  • Change semantic ofOR of two permission classes [#7522]
  • Remove dependency onpytz [#8984]
  • Make set_value a method withinSerializer [#8001]
  • Fix URLPathVersioning reverse fallback [#7247]
  • Warn about Decimal type in min_value and max_value arguments of DecimalField [#8972]
  • Fix mapping for choice values [#8968]
  • Refactor read function to use context manager for file handling [#8967]
  • Fix: fallback on CursorPagination ordering if unset on the view [#8954]
  • ReplacedOrderedDict withdict [#8964]
  • Refactor get_field_info method to include max_digits and decimal_places attributes in SimpleMetadata class [#8943]
  • Implement__eq__ for validators [#8925]
  • Ensure CursorPagination respects nulls in the ordering field [#8912]
  • Use ZoneInfo as primary source of timezone data [#8924]
  • Add username search field for TokenAdmin (#8927) [#8934]
  • Handle Nested Relation in SlugRelatedField when many=False [#8922]
  • Bump version of jQuery to 3.6.4 & updated ref links [#8909]
  • Support UniqueConstraint [#7438]
  • Allow Request, Response, Field, and GenericAPIView to be subscriptable. This allows the classes to be made generic for type checking. [#8825]
  • Feat: Add some changes to ValidationError to support django style validation errors [#8863]
  • Fix Respectcan_read_model permission in DjangoModelPermissions [#8009]
  • Add SimplePathRouter [#6789]
  • Re-prefetch related objects after updating [#8043]
  • Fix FilePathField required argument [#8805]
  • Raise ImproperlyConfigured exception ifbasename is not unique [#8438]
  • Use PrimaryKeyRelatedField pkfield in openapi [#8315]
  • replace partition with split in BasicAuthentication [#8790]
  • Fix BooleanField's allow_null behavior [#8614]
  • Handle Django's ValidationErrors in ListField [#6423]
  • Remove a bit of inline CSS. Add CSP nonce where it might be required and is available [#8783]
  • Use autocomplete widget for user selection in Token admin [#8534]
  • Make browsable API compatible with strong CSP [#8784]
  • Avoid inline script execution for injecting CSRF token [#7016]
  • Mitigate global dependency on inflection [#8017] [#8781]
  • Register Django urls [#8778]
  • Implemented Verbose Name Translation for TokenProxy [#8713]
  • Properly handle OverflowError in DurationField deserialization [#8042]
  • Fix OpenAPI operation name plural appropriately [#8017]
  • Represent SafeString as plain string on schema rendering [#8429]
  • Fix #8771 - Checking for authentication even if_ignore_model_permissions = True [#8772]
  • Fix 404 when page query parameter is empty string [#8578]
  • Fixes instance check in ListSerializer.to_representation [#8726] [#8727]
  • FloatField will crash if the input is a number that is too big [#8725]
  • Add missing DurationField to SimpleMetadata label_lookup [#8702]
  • Add support for Python 3.11 [#8752]
  • Make request consistently available in pagination classes [#8764]
  • Possibility to remove trailing zeros on DecimalFields representation [#6514]
  • Add a method for getting serializer field name (OpenAPI) [#7493]
  • Add__eq__ method forOperandHolder class [#8710]
  • Avoid importingdjango.test package when not testing [#8699]
  • Preserve exception messages for wrapped Django exceptions [#8051]
  • Includeexamples andformat to OpenAPI schema of CursorPagination [#8687] [#8686]
  • Fix infinite recursion with deepcopy on Request [#8684]
  • Refactor: Replace try/except with contextlib.suppress() [#8676]
  • Minor fix to SerializeMethodField docstring [#8629]
  • Minor refactor: Unnecessary use of list() function [#8672]
  • Unnecessary list comprehension [#8670]
  • Use correct class to indicate present deprecation [#8665]

3.14.x series

3.14.0

Date: 22nd September 2022

  • Django 2.2 is no longer supported. [#8662]
  • Django 4.1 compatibility. [#8591]
  • Add--api-version CLI option togenerateschema management command. [#8663]
  • Enforceis_valid(raise_exception=False) as a keyword-only argument. [#7952]
  • Stop callingset_context on Validators. [#8589]
  • ReturnNotImplemented fromErrorDetails.__ne__. [#8538]
  • Don't evaluateDateTimeField.default_timezone when a custom timezone is set. [#8531]
  • Make relative URLs clickable in Browsable API. [#8464]
  • SupportManyRelatedField falling back to the default value when the attribute specified by dot notation doesn't exist. MatchesManyRelatedField.get_attribute toField.get_attribute. [#7574]
  • Makeschemas.openapi.get_reference public. [#7515]
  • MakeReturnDict supportdict union operators on Python 3.9 and later. [#8302]
  • Update throttling to check ifrequest.user is set before checking if the user is authenticated. [#8370]

3.13.x series

3.13.1

Date: 15th December 2021

  • Revert schema naming changes with function based@api_view. [#8297]

3.13.0

Date: 13th December 2021

  • Django 4.0 compatibility. [#8178]
  • Addmax_length andmin_length options toListSerializer. [#8165]
  • Addget_request_serializer andget_response_serializer hooks toAutoSchema. [#7424]
  • Fix OpenAPI representation of null-able read only fields. [#8116]
  • RespectUNICODE_JSON setting in API schema outputs. [#7991]
  • Fix forRemoteUserAuthentication. [#7158]
  • Make Field constructors keyword-only. [#7632]

3.12.x series

3.12.4

Date: 26th March 2021

  • Revert use ofdeque instead oflist for tracking throttling.history. (Due to incompatibility with DjangoRedis cache backend. See #7870) [#7872]

3.12.3

Date: 25th March 2021

  • Properly handle ATOMIC_REQUESTS when multiple database configurations are used. [#7739]
  • BypassCOUNT query whenLimitOffsetPagination is configured but pagination params are not included on the request. [#6098]
  • Respectallow_null=True onDecimalField. [#7718]
  • Allow title cased"Yes"/"No" values withBooleanField. [#7739]
  • AddPageNumberPagination.get_page_number() method for overriding behavior. [#7652]
  • Fixed rendering of timedelta values in OpenAPI schemas, when present as default, min, or max fields. [#7641]
  • Render JSONFields with indentation in browsable API forms. [#6243]
  • Remove unnecessary database query in admin Token views. [#7852]
  • Raise validation errors when bools are passed toPrimaryKeyRelatedField fields, instead of casting to ints. [#7597]
  • Don't include model properties as automatically generated ordering fields withOrderingFilter. [#7609]
  • Usedeque instead oflist for tracking throttling.history. [#7849]

3.12.2

Date: 13th October 2020

  • Fix issue ifrest_framework.authtoken.models is imported, butrest_framework.authtoken is not in INSTALLED_APPS. [#7571]
  • Ignore subclasses of BrowsableAPIRenderer in OpenAPI schema. [#7497]
  • Narrower exception catching in serilizer fields, to ensure that any errors in brokenget_queryset() methods are not masked. [#7480]

3.12.1

Date: 28th September 2020

  • AddTokenProxy migration. [#7557]

3.12.0

Date: 28th September 2020

  • Add--file option togenerateschema command. [#7130]
  • Supporttags for OpenAPI schema generation. Seethe schema docs. [#7184]
  • Support customizing the operation ID for schema generation. Seethe schema docs. [#7190]
  • Support OpenAPI components for schema generation. Seethe schema docs. [#7124]
  • The following methods onAutoSchema become public API:get_path_parameters,get_pagination_parameters,get_filter_parameters,get_request_body,get_responses,get_serializer,get_paginator,map_serializer,map_field,map_choice_field,map_field_validators,allows_filters. Seethe schema docs
  • Add support for Django 3.1's database-agnositicJSONField. [#7467]
  • SearchFilter now supports nested search onJSONField andHStoreField model fields. [#7121]
  • SearchFilter now supports searching onannotate() fields. [#6240]
  • The authtoken model no longer exposes thepk in the admin URL. [#7341]
  • Add__repr__ for Request instances. [#7239]
  • UTF-8 decoding with Latin-1 fallback for basic auth credentials. [#7193]
  • CharField treats surrogate characters as a validation failure. [#7026]
  • Don't include callables as default values in schemas. [#7105]
  • ImproveListField schema output to include all available child information. [#7137]
  • Allowdefault=False to be included forBooleanField schema outputs. [#7165]
  • Include"type" information inChoiceField schema outputs. [#7161]
  • Include"type": "object" on schema objects. [#7169]
  • Don't include component in schema output for DELETE requests. [#7229]
  • Fix schema types forDecimalField. [#7254]
  • Fix schema generation forObtainAuthToken view. [#7211]
  • Support passingcontext=... to view.get_serializer() methods. [#7298]
  • Pass custom code toPermissionDenied if permission class has one set. [#7306]
  • Include "example" in schema pagination output. [#7275]
  • Default status code of 201 on schema output for POST requests. [#7206]
  • Use camelCase for operation IDs in schema output. [#7208]
  • Warn if duplicate operation IDs exist in schema output. [#7207]
  • Improve handling of decimal type when mappingChoiceField to a schema output. [#7264]
  • Disable YAML aliases for OpenAPI schema outputs. [#7131]
  • Fix action URL names for APIs included under a namespaced URL. [#7287]
  • Update jQuery version from 3.4 to 3.5. [#7313]
  • FixUniqueTogether handling when serializer fields usesource=.... [#7143]
  • HTTPHEAD requests now setself.action correctly on a ViewSet instance. [#7223]
  • Return a valid OpenAPI schema for the case where no API schema paths exist. [#7125]
  • Include tests in package distribution. [#7145]
  • Allow type checkers to support annotations likeModelSerializer[Author]. [#7385]
  • Don't include invalidcharset=None portion in the requestContent-Type header when using APIClient. [#7400]
  • Fix\Z/\z tokens in OpenAPI regexs. [#7389]
  • FixPrimaryKeyRelatedField andHyperlinkedRelatedField when source field is actually a property. [#7142]
  • Token.generate_key is now a class method. [#7502]
  • @action warns if method is wrapped in a decorator that does not preserve information using@functools.wraps. [#7098]
  • Deprecateserializers.NullBooleanField in favor ofserializers.BooleanField withallow_null=True [#7122]

3.11.x series

3.11.2

Date: 30th September 2020

  • Security: Dropurlize_quoted_links template tag in favor of Django's built-inurlize. Removes a XSS vulnerability for some kinds of content in the browsable API.

3.11.1

Date: 5th August 2020

  • Fix compat with Django 3.1

3.11.0

Date: 12th December 2019

  • Drop.set_context APIin favor of arequires_context marker.
  • Changed default widget for TextField with choices to select box.#6892
  • Supported nested writes on non-relational fields, such as JSONField.#6916
  • Include request/response media types in OpenAPI schemas, based on configured parsers/renderers.#6865
  • Include operation descriptions in OpenAPI schemas, based on the docstring on the view.#6898
  • Fix representation of serializers with all optional fields in OpenAPI schemas.#6941,#6944
  • Fix representation ofserializers.HStoreField in OpenAPI schemas.#6914
  • Fix OpenAPI generation when title or version is not provided.#6912
  • Useint64 representation for large integers in OpenAPI schemas.#7018
  • Improved error messages if no.to_representation implementation is provided on a field subclass.#6996
  • Fix for serializer classes that use multiple inheritance.#6980
  • Fix for reversing Hyperlinked URL fields with percent encoded components in the path.#7059
  • Update bootstrap to 3.4.1.#6923

3.10.x series

3.10.3

Date: 4th September 2019

  • Include API version in OpenAPI schema generation, defaulting to empty string.
  • Add pagination properties to OpenAPI response schemas.
  • Add missing "description" property to OpenAPI response schemas.
  • Only include "required" for non-empty cases in OpenAPI schemas.
  • Fix response schemas for "DELETE" case in OpenAPI schemas.
  • Use an array type for list view response schemas.
  • Use consistentlowerInitialCamelCase style in OpenAPI operation IDs.
  • FixminLength/maxLength/minItems/maxItems properties in OpenAPI schemas.
  • Only callFileField.url once in serialization, for improved performance.
  • Fix an edge case where throttling calculations could error after a configuration change.

3.10.2

Date: 29th July 2019

  • VariousOpenAPI schema fixes.
  • Ability to specify urlconf in include_docs_urls.

3.10.1

Date: 17th July 2019

  • Don't include autocomplete fields on TokenAuth admin, since it forces constraints on custom user models & admin.
  • Requireuritemplate for OpenAPI schema generation, but notcoreapi.

3.10.0

Date:15th July 2019

  • Switch to OpenAPI schema generation.
  • Drop Python 2 support.
  • Addgenerateschema --generator_class CLI option
  • Updated PyYaml dependency for OpenAPI schema generation topyyaml>=5.1#6680
  • Resolve DeprecationWarning with markdown.#6317
  • Useuser.get_username in templates, in preference touser.username.
  • Fix for cursor pagination issue that could occur after object deletions.
  • Fix for nullable fields withsource="*"
  • Always apply all throttle classes during throttling checks.
  • Updates to jQuery and Markdown dependencies.
  • Don't strict disallow redundantSerializerMethodField field name arguments.
  • Don't render extra actions in browable API if not authenticated.
  • Strip null characters from search parameters.
  • Deprecate thedetail_route decorator in favor ofaction, which accepts adetail bool. Use@action(detail=True) instead.gh6687
  • Deprecate thelist_route decorator in favor ofaction, which accepts adetail bool. Use@action(detail=False) instead.gh6687

3.9.x series

3.9.4

Date: 10th May 2019

This is a maintenance release that fixes an error handling bug under Python 2.

3.9.3

Date: 29th April 2019

This is the last Django REST Framework release that will support Python 2.Be sure to upgrade to Python 3 before upgrading to Django REST Framework 3.10.

  • Adjusted the compat check for django-guardian to allow the last guardian version (v1.4.9) compatible with Python 2.#6613

3.9.2

Date:3rd March 2019

  • Routers: invalidate_urls cache onregister()#6407
  • Deferred schema renderer creation to avoid requiring pyyaml.#6416
  • Added 'request_forms' block to base.html#6340
  • Fixed SchemaView to reset renderer on exception.#6429
  • Update Django Guardian dependency.#6430
  • Ensured support for Django 2.2#6422 &#6455
  • Made templates compatible with session-based CSRF.#6207
  • Adjusted fieldvalidators to accept non-list iterables.#6282
  • Added SearchFilter.get_search_fields() hook.#6279
  • Fix DeprecationWarning when accessing collections.abc classes via collections#6268
  • Allowed Q objects in limit_choices_to introspection.#6472
  • Added lazy evaluation to composed permissions.#6463
  • Add negation ~ operator to permissions composition#6361
  • Avoided calling distinct on annotated fields in SearchFilter.#6240
  • IntroducedRemovedInDRF…Warning classes to simplify deprecations.#6480

3.9.1

Date:16th January 2019

  • Resolve XSS issue in browsable API.#6330
  • Upgrade Bootstrap to 3.4.0 to resolve XSS issue.
  • Resolve issues with composable permissions.#6299
  • Respectlimit_choices_to on foreign keys.#6371

3.9.0

Date:18th October 2018

  • Improvements to ViewSet extra actions#5605
  • Fixaction support for ViewSet suffixes#6081
  • Allowaction docs sections#6060
  • Deprecate theRouter.registerbase_name argument in favor ofbasename.#5990
  • Deprecate theRouter.get_default_base_name method in favor ofRouter.get_default_basename.#5990
  • ChangeCharField to disallow null bytes.#6073 To revert to the old behavior, subclassCharField and removeProhibitNullCharactersValidator from the validators.python class NullableCharField(serializers.CharField): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.validators = [ v for v in self.validators if not isinstance(v, ProhibitNullCharactersValidator) ]
  • AddOpenAPIRenderer andgenerate_schema management command.#6229
  • Add OpenAPIRenderer by default, and add schema docs.#6233
  • Allow permissions to be composed#5753
  • Allow nullable BooleanField in Django 2.1#6183
  • Add testing of Python 3.7 support#6141
  • Test using Django 2.1 final release.#6109
  • Added djangorestframework-datatables to third-party packages#5931
  • Change ISO 8601 date format to exclude year/month-only options#5936
  • Update all pypi.python.org URLs to pypi.org#5942
  • Ensure that html forms (multipart form data) respect optional fields#5927
  • Allow hashing of ErrorDetail.#5932
  • Correct schema parsing for JSONField#5878
  • Render descriptions (from help_text) using safe#5869
  • Removed input value from default_error_message#5881
  • Added min_value/max_value support in DurationField#5643
  • Fixed instance being overwritten in pk-only optimization try/except block#5747
  • Fixed AttributeError from items filter when value is None#5981
  • Fixed Javascripte.indexOf is not a function error#5982
  • Fix schemas for extra actions#5992
  • Improved get_error_detail to use error_dict/error_list#5785
  • Improved URLs in Admin renderer#5988
  • Add "Community" section to docs, minor cleanup#5993
  • Moved guardian imports out of compat#6054
  • Deprecate theDjangoObjectPermissionsFilter class, moved to thedjangorestframework-guardian package.#6075
  • Drop Django 1.10 support#5657
  • Only catch TypeError/ValueError for object lookups#6028
  • Handle models without .objects manager in ModelSerializer.#6111
  • Improve ModelSerializer.create() error message.#6112
  • Fix CSRF cookie check failure when using session auth with django 1.11.6+#6113
  • Updated JWT docs.#6138
  • Fix autoescape not getting passed to urlize_quoted_links filter#6191

3.8.x series

3.8.2

Date:6th April 2018

  • Fixread_only +defaultunique_together validation.#5922
  • authtoken.views import coreapi from rest_framework.compat, not directly.#5921
  • Docs: Add missing argument 'detail' to Route#5920

3.8.1

Date:4th April 2018

  • Use oldurl_name behavior in route decorators#5915

    Forlist_route anddetail_route maintain the old behavior ofurl_name,basing it on theurl_path instead of the function name.

3.8.0

Date:3rd April 2018

  • Breaking Change: Alterread_only plusdefault behavior.#5886

    read_only fields will nowalways be excluded from writable fields.

    Previouslyread_only fields with adefault value would use thedefault for create and update operations.

    In order to maintain the old behavior you may need to pass the value ofread_only fields when callingsave() inthe view:

    def perform_create(self, serializer):    serializer.save(owner=self.request.user)

    Alternatively you may overridesave() orcreate() orupdate() on the serializer as appropriate.

  • Correct allow_null behavior when required=False#5888

    Without an explicitdefault,allow_null implies a default ofnull for outgoing serialization. Previously suchfields were being skipped when read-only or otherwise not required.

    Possible backwards compatibility break if you were relying on such fields being excluded from the outgoingrepresentation. In order to restore the old behavior you can overridedata to exclude the field whenNone.

    For example:

    @propertydef data(self):    """    Drop `maybe_none` field if None.    """    data = super().data    if 'maybe_none' in data and data['maybe_none'] is None:        del data['maybe_none']    return data
  • Refactor dynamic route generation and improve viewset action introspectibility.#5705

    ViewSets have been provided with new attributes and methods that allowit to introspect its set of actions and the details of the current action.

    • Mergedlist_route anddetail_route into a singleaction decorator.
    • Get all extra actions on aViewSet with.get_extra_actions().
    • Extra actions now set theurl_name andurl_path on the decorated method.
    • url_name is now based on the function name, instead of theurl_path, as the path is not always suitable (e.g., capturing arguments in the path).
    • Enable action url reversing through.reverse_action() method (added in 3.7.4)
    • Example reverse call:self.reverse_action(self.custom_action.url_name)
    • Adddetail initkwarg to indicate if the current action is operating on a collection or a single instance.

    Additional changes:

    • Deprecatedlist_route &detail_route in favor ofaction decorator withdetail boolean.
    • Deprecated dynamic list/detail route variants in favor ofDynamicRoute withdetail boolean.
    • Refactored the router's dynamic route generation.
    • list_route anddetail_route maintain the old behavior ofurl_name, basing it on theurl_path instead of the function name.
  • Fix formatting of the 3.7.4 release note#5704

  • Docs: Update DRF Writable Nested Serializers references#5711
  • Docs: Fixed typo in auth URLs example.#5713
  • Improve composite field child errors#5655
  • Disable HTML inputs for dict/list fields#5702
  • Fix typo in HostNameVersioning doc#5709
  • Use rsplit to get module and classname for imports#5712
  • Formalize URLPatternsTestCase#5703
  • Add exception translation test#5700
  • Test staticfiles#5701
  • Add drf-yasg to documentation and schema 3rd party packages#5720
  • Remove unusedcompat._resolve_model()#5733
  • Drop compat workaround for unsupported Python 3.2#5734
  • Preferiter(dict) overiter(dict.keys())#5736
  • Passpython_requires argument to setuptools#5739
  • Remove unused links from docs#5735
  • Prefer https protocol for links in docs when available#5729
  • Add HStoreField, postgres fields tests#5654
  • Always fully qualify ValidationError in docs#5751
  • Remove unreachable code from ManualSchema#5766
  • Allowed customizing API documentation code samples#5752
  • Updated docs to usepip show#5757
  • Load 'static' instead of 'staticfiles' in templates#5773
  • Fixed a typo infields docs#5783
  • Refer to "NamespaceVersioning" instead of "NamespacedVersioning" in the documentation#5754
  • ErrorDetail: add__eq__/__ne__ and__repr__#5787
  • Replacebackground-attachment: fixed in docs#5777
  • Make 404 & 403 responses consistent withexceptions.APIException output#5763
  • Small fix to API documentation: schemas#5796
  • Fix schema generation for PrimaryKeyRelatedField#5764
  • Represent serializer DictField as an Object in schema#5765
  • Added docs example reimplementing ObtainAuthToken#5802
  • Add schema to the ObtainAuthToken view#5676
  • Fix request formdata handling#5800
  • Fix authtoken views imports#5818
  • Update pytest, isort#5815#5817#5894
  • Fixed active timezone handling for non ISO8601 datetimes.#5833
  • Made TemplateHTMLRenderer render IntegerField inputs when value is0.#5834
  • Corrected endpoint in tutorial instructions#5835
  • Add Django Rest Framework Role Filters to Third party packages#5809
  • Use single copy of static assets. Update jQuery#5823
  • Changes ternary conditionals to be PEP308 compliant#5827
  • Added links to 'A Todo List API with React' and 'Blog API' tutorials#5837
  • Fix comment typo in ModelSerializer#5844
  • Add admin to installed apps to avoid test failures.#5870
  • Fixed schema for UUIDField in SimpleMetadata.#5872
  • Corrected docs on router include with namespaces.#5843
  • Test using model objects for dotted source default#5880
  • Allow traversing nullable related fields#5849
  • Added: Tutorial: Django REST with React (Django 2.0)#5891
  • AddLimitOffsetPagination.get_count to allow method override#5846
  • Don't show hidden fields in metadata#5854
  • Enable OrderingFilter to handle an empty tuple (or list) for the 'ordering' field.#5899
  • Added generic 500 and 400 JSON error handlers.#5904

3.7.x series

3.7.7

Date:21st December 2017

  • Fix typo to include *.mo locale files to packaging.#5697,#5695

3.7.6

Date:21st December 2017

  • Add missing *.ico icon files to packaging.

3.7.5

Date:21st December 2017

  • Add missing *.woff2 font files to packaging.#5692
  • Add missing *.mo locale files to packaging.#5695,#5696

3.7.4

Date:20th December 2017

  • Schema: Extract method formanual_fields processing#5633

    Allows for easier customization ofmanual_fields processing, for exampleto provide per-method manual fields.AutoSchema addsget_manual_fields,as the intended override point, and a utility methodupdate_fields, tohandle by-name field replacement from a list, which, in general, you are notexpected to override.

    Note:AutoSchema.__init__ now ensuresmanual_fields is a list.Previously may have been stored internally asNone.

  • Remove ulrparse compatibility shim; use six instead#5579

  • Drop compat wrapper forTimeDelta.total_seconds()#5577
  • Clean up all whitespace throughout project#5578
  • Compat cleanup#5581
  • Add pygments CSS block in browsable API views#5584#5587
  • Removeset_rollback() from compat#5591
  • Fix request body/POST access#5590
  • Rename test to reference correct issue#5610
  • Documentation Fixes#5611#5612
  • Remove references to unsupported Django versions in docs and code#5602
  • Test Serializer exclude for declared fields#5599
  • Fixed schema generation for filter backends#5613
  • Minor cleanup for ModelSerializer tests#5598
  • Reimplement request attribute access w/__getattr__#5617
  • Fixed SchemaJSRenderer renders invalid Javascript#5607
  • Make Django 2.0 support official/explicit#5619
  • Perform type check on passed request argument#5618
  • Fix AttributeError hiding on request authenticators#5600
  • Update test requirements#5626
  • Docs:Serializer._declared_fields enable modifying fields on a serializer#5629
  • Fix packaging#5624
  • Fix readme rendering for PyPI, add readme build to CI#5625
  • Update tutorial#5622
  • Non-required fields withallow_null=True should not imply a default value#5639
  • Docs: Addallow_null serialization output note#5641
  • Update to use the Django 2.0 release in tox.ini#5645
  • FixSerializer.data for Browsable API rendering when provided invaliddata#5646
  • Docs: Note AutoSchema limitations on bare APIView#5649
  • Add.basename and.reverse_action() to ViewSet#5648
  • Docs: Fix typos in serializers documentation#5652
  • Fixoverride_settings compat#5668
  • Add DEFAULT_SCHEMA_CLASS setting#5658
  • Add docs note re generated BooleanField beingrequired=False#5665
  • Add 'dist' build#5656
  • Fix typo in docstring#5678
  • Docs: AddUNAUTHENTICATED_USER = None note#5679
  • Update OPTIONS example from “Documenting Your API”#5680
  • Docs: Add note on object permissions for FBVs#5681
  • Docs: Add example toto_representation docs#5682
  • Add link to Classy DRF in docs#5683
  • Document ViewSet.action#5685
  • Fix schema docs typo#5687
  • Fix URL pattern parsing in schema generation#5689
  • Add example usingsource=‘*’ to custom field docs.#5688
  • Fix format_suffix_patterns behavior with Django 2 path() routes#5691

3.7.3

Date:6th November 2017

  • FixAppRegistryNotReady error from contrib.auth view imports#5567

3.7.2

Date:6th November 2017

  • Fixed Django 2.1 compatibility due to removal of django.contrib.auth.login()/logout() views.#5510
  • Add missing import for TextLexer.#5512
  • Adding examples and documentation for caching#5514
  • Include date and date-time format for schema generation#5511
  • Use triple backticks for markdown code blocks#5513
  • Interactive docs - make bottom sidebar items sticky#5516
  • Clarify pagination system check#5524
  • Stop JSONBoundField mangling invalid JSON#5527
  • Have JSONField render as textarea in Browsable API#5530
  • Schema: Exclude OPTIONS/HEAD for ViewSet actions#5532
  • Fix ordering for dotted sources#5533
  • Fix: Fields withallow_null=True should imply a default serialization value#5518
  • Ensure Location header is strictly a 'str', not subclass.#5544
  • Add import to example in api-guide/parsers#5547
  • Catch OverflowError for "out of range" datetimes#5546
  • Add djangorestframework-rapidjson to third party packages#5549
  • Increase test coverage fordrf_create_token command#5550
  • Add trove classifier for Python 3.6 support.#5555
  • Add pip cache support to the Travis CI configuration#5556
  • Rename [wheel] section to [bdist_wheel] as the former is legacy#5557
  • Fix invalid escape sequence deprecation warnings#5560
  • Add interactive docs error template#5548
  • Add rounding parameter to DecimalField#5562
  • Fix all BytesWarning caught during tests#5561
  • Use dict and set literals instead of calls to dict() and set()#5559
  • Change ImageField validation pattern, use validators from DjangoImageField#5539
  • Fix processing unicode symbols in query_string by Python 2#5552

3.7.1

Date:16th October 2017

  • Fix Interactive documentation always uses false for boolean fields in requests#5492
  • Improve compatibility with Django 2.0 alpha.#5500#5503
  • Improved handling of schema naming collisions#5486
  • Added additional docs and tests around providing a default value for dottedsource fields#5489

3.7.0

Date:6th October 2017

  • FixDjangoModelPermissions to ensure user authentication before calling the view'sget_queryset() method. As a side effect, this changes the order of the HTTP method permissions and authentication checks, and 405 responses will only be returned when authenticated. If you want to replicate the old behavior, see the PR for details.#5376
  • Deprecatedexclude_from_schema onAPIView andapi_view decorator. Setschema = None or@schema(None) as appropriate.#5422
  • Timezone-awareDateTimeFields now respect active or defaulttimezone during serialization, instead of always using UTC.#5435

    Resolves inconsistency whereby instances were serialized with supplied datetime forcreate but UTC forretrieve.#3732

    Possible backwards compatibility break if you were relying on datetime strings being UTC. Have client interpret datetimes orset default or active timezone (docs) to UTC if needed.

  • Removed DjangoFilterBackend inline with deprecation policy. Usedjango_filters.rest_framework.FilterSet and/ordjango_filters.rest_framework.DjangoFilterBackend instead.#5273

  • Don't strip microseconds fromtime when encoding. Makes consistent withdatetime.BC Change: Previously only milliseconds were encoded.#5440
  • AddedSTRICT_JSON setting (defaultTrue) to raise exception for the extended float values (nan,inf,-inf) accepted by Python'sjson module.BC Change: Previously these values would converted to corresponding strings. SetSTRICT_JSON toFalse to restore the previous behavior.#5265
  • Add support forpage_size parameter in CursorPaginator class#5250
  • MakeDEFAULT_PAGINATION_CLASSNone by default.BC Change: If your werejust settingPAGE_SIZE to enable pagination you will need to addDEFAULT_PAGINATION_CLASS. The previous default wasrest_framework.pagination.PageNumberPagination. There is a system check warning to catch this case. You may silence that if you are setting pagination class on a per-view basis.#5170
  • CatchAPIException fromget_serializer_fields in schema generation.#5443
  • Allow custom authentication and permission classes when usinginclude_docs_urls#5448
  • Defer translated string evaluation on validators.#5452
  • Added default value for 'detail' param into 'ValidationError' exception#5342
  • Adjust schema get_filter_fields rules to match framework#5454
  • Updated test matrix to add Django 2.0 and drop Django 1.8 & 1.9BC Change: This removes Django 1.8 and Django 1.9 from Django REST Framework supported versions.#5457
  • Fixed a deprecation warning in serializers.ModelField#5058
  • Added a more explicit error message whenget_queryset returnedNone#5348
  • Fix docs for Responsedata description#5361
  • Fixpycache/.pyc excludes when packaging#5373
  • Fix default value handling for dotted sources#5375
  • Ensure content_type is set when passing empty body to RequestFactory#5351
  • Fix ErrorDetail Documentation#5380
  • Allow optional content in the generic content form#5372
  • Updated supported values for the NullBooleanField#5387
  • Fix ModelSerializer custom named fields with source on model#5388
  • Fixed the MultipleFieldLookupMixin documentation example to properly check for object level permission#5398
  • Update get_object() example in permissions.md#5401
  • Fix authtoken management command#5415
  • Fix schema generation markdown#5421
  • AllowChoiceField.choices to be set dynamically#5426
  • Add the project layout to the quickstart#5434
  • Reuse 'apply_markdown' function in 'render_markdown' templatetag#5469
  • Added links todrf-openapi package in docs#5470
  • Added docstrings code highlighting with pygments#5462
  • Fixed documentation rendering for views nameddata#5472
  • Docs: Clarified 'to_internal_value()' validation behavior#5466
  • Fix missing six.text_type() call on APIException.str#5476
  • Document documentation.py#5478
  • Fix naming collisions in Schema Generation#5464
  • Call Django's authenticate function with the request object#5295
  • Update coreapi JS to 0.1.1#5479
  • Haveis_list_view recognize RetrieveModel… views#5480
  • Remove Django 1.8 & 1.9 compatibility code#5481
  • Remove deprecated schema code from DefaultRouter#5482
  • Refactor schema generation to allow per-view customization.BC Change:SchemaGenerator.get_serializer_fields has been refactored asAutoSchema.get_serializer_fields and drops theview argument [#5354][gh5354]

3.6.x series

3.6.4

Date:21st August 2017

  • Ignore any invalidly formed query parameters for OrderingFilter.#5131
  • Improve memory footprint when reading large JSON requests.#5147
  • Fix schema generation for pagination.#5161
  • Fix exception whenHTML_CUTOFF is set toNone.#5174
  • Fix browsable API not supportingmultipart/form-data correctly.#5176
  • Fixedtest_hyperlinked_related_lookup_url_encoded_exists.#5179
  • Make sure max_length is in FileField kwargs.#5186
  • Fixlist_route &detail_route with kwargs contains curly bracket inurl_path#5187
  • Add Django manage command to create a DRF user Token.#5188
  • Ensure API documentation templates do not check for user authentication#5162
  • Fix special case where OneToOneField is also primary key.#5192
  • Added aria-label and a new region for accessibility purposes in base.html#5196
  • Quote nested API parameters in api.js.#5214
  • Set ViewSet args/kwargs/request before dispatch.#5229
  • Added unicode support to SlugField.#5231
  • Fix HiddenField appears in Raw Data form initial content.#5259
  • Raise validation error on invalid timezone parsing.#5261
  • Fix SearchFilter to-many behavior/performance.#5264
  • Simplified chained comparisons and minor code fixes.#5276
  • RemoteUserAuthentication, docs, and tests.#5306
  • Revert "Cached the field's root and context property"#5313
  • Fix introspection of list field in schema.#5326
  • Fix interactive docs for multiple nested and extra methods.#5334
  • Fix/remove undefined template var "schema"#5346

3.6.3

Date:12th May 2017

  • Raise 404 if a URL lookup results in ValidationError. (#5126)
  • Honor http_method_names on class based view, when generating API schemas. (#5085)
  • Allow overriddenget_limit in LimitOffsetPagination to return all records. (#4437)
  • Fix partial update for the ListSerializer. (#4222)
  • Render JSONField control correctly in browsable API. (#4999,#5042)
  • Raise validation errors for invalid datetime in given timezone. (#4987)
  • Support restricting doc & schema shortcuts to a subset of urls. (#4979)
  • Resolve SchemaGenerator error with paginators that have nopage_size attribute. (#5086,#3692)
  • Resolve HyperlinkedRelatedField exception on string with %20 instead of space. (#4748,#5078)
  • Customizable schema generator classes. (#5082)
  • Update existing vary headers in response instead of overwriting them. (#5047)
  • Support passing.as_view() to view instance. (#5053)
  • Use correct exception handler when settings overridden on a view. (#5055,#5054)
  • Update Boolean field to support 'yes' and 'no' values. (#5038)
  • Fix unique validator for ChoiceField. (#5004,#5026,#5028)
  • JavaScript cleanups in API Docs. (#5001)
  • Include URL path regexs in API schemas where valid. (#5014)
  • Correctly set scheme in coreapi TokenAuthentication. (#5000,#4994)
  • HEAD requests on ViewSets should not return 405. (#4705,#4973,#4864)
  • Support usage of 'source' inextra_kwargs. (#4688)
  • Fix invalid content type for schema.js (#4968)
  • Fix DjangoFilterBackend inheritance issues. (#5089,#5117)

3.6.2

Date:10th March 2017

3.6.1

Date:9th March 2017

  • Ensuremarkdown dependency is optional. (#4947)

3.6.0

Date:9th March 2017

See therelease announcement.


3.5.x series

3.5.4

Date:10th February 2017

  • Add max_length and min_length arguments for ListField. (#4877)
  • Add per-view custom exception handler support. (#4753)
  • Support disabling of declared fields on serializer subclasses. (#4764)
  • Support custom view names on@list_route and@detail_route endpoints. (#4821)
  • Correct labels for fields in login template when custom user model is used. (#4841)
  • Whitespace fixes for descriptions generated from docstrings. (#4759,#4869,#4870)
  • Better error reporting when schemas are returned by views without a schema renderer. (#4790)
  • Fix for returned response ofPUT requests whenprefetch_related is used. (#4661,#4668)
  • Fix for breadcrumb view names. (#4750)
  • Fix for RequestsClient ensuring fully qualified URLs. (#4678)
  • Fix for incorrect behavior of writable-nested fields check in some cases. (#4634,#4669)
  • Resolve Django deprecation warnings. (#4712)
  • Various cleanup of test cases.

3.5.3

Date:7th November 2016

  • Don't raise incorrect FilterSet deprecation warnings. (#4660,#4643,#4644)
  • Schema generation should not raise 404 when a view permission class does. (#4645,#4646)
  • Addautofocus support for input controls. (#4650)

3.5.2

Date:1st November 2016

  • Restore exception tracebacks in Python 2.7. (#4631,#4638)
  • Properly display dicts in the admin console. (#4532,#4636)
  • Fix is_simple_callable with variable args, kwargs. (#4622,#4602)
  • Support 'on'/'off' literals with BooleanField. (#4640,#4624)
  • Enable cursor pagination of value querysets. (#4569)
  • Fix support of get_full_details() for Throttled exceptions. (#4627)
  • Fix FilterSet proxy. (#4620)
  • Make serializer fields import explicit. (#4628)
  • Drop redundant requests adapter. (#4639)

3.5.1

Date:21st October 2016

  • Makerest_framework/compat.py imports. (#4612,#4608,#4601)
  • Fix bug in schema base path generation. (#4611,#4605)
  • Fix broken case of ListSerializer with single item. (#4609,#4606)
  • Remove bareraise for Python 3.5 compat. (#4600)

3.5.0

Date:20th October 2016


3.4.x series

3.4.7

Date:21st September 2016

  • Fallback behavior for request parsing when request.POST already accessed. (#3951,#4500)
  • Fix regression ofRegexField. (#4489,#4490,#2617)
  • Missing comma inadmin.html causing CSRF error. (#4472,#4473)
  • Fix response rendering with empty context. (#4495)
  • Fix indentation regression in API listing. (#4493)
  • Fixed an issue where the incorrect value is set toResolverMatch.func_name of api_view decorated view. (#4465,#4462)
  • FixAPIClient.get() when path contains unicode arguments (#4458)

3.4.6

Date:23rd August 2016

  • Fix malformed Javascript in browsable API. (#4435)
  • Skip HiddenField from Schema fields. (#4425,#4429)
  • Improve Create to show the original exception traceback. (#3508)
  • FixAdminRenderer display of PK only related fields. (#4419,#4423)

3.4.5

Date:19th August 2016

  • Improve debug error handling. (#4416,#4409)
  • Allow custom CSRF_HEADER_NAME setting. (#4415,#4410)
  • Include .action attribute on viewsets when generating schemas. (#4408,#4398)
  • Do not include request.FILES items in request.POST. (#4407)
  • Fix rendering of checkbox multiple. (#4403)
  • Fix docstring of Field.get_default. (#4404)
  • Replace utf8 character with its ascii counterpart in README. (#4412)

3.4.4

Date:12th August 2016

3.4.3

Date:5th August 2016

  • Include fallback for users of older TemplateHTMLRenderer internal API. (#4361)

3.4.2

Date:5th August 2016

  • Include kwargs passed to 'as_view' when generating schemas. (#4359,#4330,#4331)
  • Accessrequest.user.is_authenticated as property not method, under Django 1.10+ (#4358,#4354)
  • Filter HEAD out from schemas. (#4357)
  • extra_kwargs takes precedence over uniqueness kwargs. (#4198,#4199,#4349)
  • Correct descriptions when tabs are used in code indentation. (#4345,#4347)*
  • Change template context generation in TemplateHTMLRenderer. (#4236)
  • Serializer defaults should not be included in partial updates. (#4346,#3565)
  • Consistent behavior & descriptive error from FileUploadParser when filename not included. (#4340,#3610,#4292,#4296)
  • DecimalField quantizes incoming digitals. (#4339,#4318)
  • Handle non-string input for IP fields. (#4335,#4336,#4338)
  • Fix leading slash handling when Schema generation includes a root URL. (#4332)
  • Test cases for DictField with allow_null options. (#4348)
  • Update tests from Django 1.10 beta to Django 1.10. (#4344)

3.4.1

Date:28th July 2016

  • Addedroot_renderers argument toDefaultRouter. (#4323,#4268)
  • Addedurl andschema_url arguments. (#4321,#4308,#4305)
  • Unique together checks should apply to read-only fields which have a default. (#4316,#4294)
  • Set view.format_kwarg in schema generator. (#4293,#4315)
  • Fix schema generator for views withpagination_class = None. (#4314,#4289)
  • Fix schema generator for views with noget_serializer_class. (#4265,#4285)
  • Fixes for media type parameters inAccept andContent-Type headers. (#4287,#4313,#4281)
  • Use verbose_name instead of object_name in error messages. (#4299)
  • Minor version update to Twitter Bootstrap. (#4307)
  • SearchFilter raises error when using with related field. (#4302,#4303,#4298)
  • Adding support for RFC 4918 status codes. (#4291)
  • Add LICENSE.md to the built wheel. (#4270)
  • Serializing "complex" field returns None instead of the value since 3.4 (#4272,#4273,#4288)

3.4.0

Date:14th July 2016

  • Don't strip microseconds in JSON output. (#4256)
  • Two slightly different iso 8601 datetime serialization. (#4255)
  • Resolve incorrect inclusion of media type parameters. (#4254)
  • Response Content-Type potentially malformed. (#4253)
  • Fix setup.py error on some platforms. (#4246)
  • Move alternate formats in coreapi into separate packages. (#4244)
  • Add localize keyword argument toDecimalField. (#4233)
  • Fix issues with routers for custom list-route and detail-routes. (#4229)
  • Namespace versioning with nested namespaces. (#4219)
  • Robust uniqueness checks. (#4217)
  • Minor refactoring ofmust_call_distinct. (#4215)
  • Overridable offset cutoff in CursorPagination. (#4212)
  • Pass through strings as-in with date/time fields. (#4196)
  • Add test confirming that required=False is valid on a relational field. (#4195)
  • In LimitOffsetPaginationlimit=0 should revert to default limit. (#4194)
  • Exclude read_only=True fields from unique_together validation & add docs. (#4192)
  • Handle bytestrings in JSON. (#4191)
  • JSONField(binary=True) represents using binary strings, which JSONRenderer does not support. (#4187)
  • JSONField(binary=True) represents using binary strings, which JSONRenderer does not support. (#4185)
  • More robust form rendering in the browsable API. (#4181)
  • Empty cases of.validated_data and.errors as lists not dicts for ListSerializer. (#4180)
  • Schemas & client libraries. (#4179)
  • RemovedAUTH_USER_MODEL compat property. (#4176)
  • Clean up existing deprecation warnings. (#4166)
  • Django 1.10 support. (#4158)
  • Updated jQuery version to 1.12.4. (#4157)
  • More robust default behavior on OrderingFilter. (#4156)
  • description.py codes and tests removal. (#4153)
  • Wrap guardian.VERSION in tuple. (#4149)
  • Refine validator for fields with kwargs. (#4146)
  • Fix None values representation in children of ListField, DictField. (#4118)
  • Resolve TimeField representation for midnight value. (#4107)
  • Set proper status code in AdminRenderer for the redirection after POST/DELETE requests. (#4106)
  • TimeField render returns None instead of 00:00:00. (#4105)
  • Fix incorrectly named zh-hans and zh-hant locale path. (#4103)
  • Prevent raising exception when limit is 0. (#4098)
  • TokenAuthentication: Allow custom keyword in the header. (#4097)
  • Handle incorrectly padded HTTP basic auth header. (#4090)
  • LimitOffset pagination crashes Browsable API when limit=0. (#4079)
  • Fixed DecimalField arbitrary precision support. (#4075)
  • Added support for custom CSRF cookie names. (#4049)
  • Fix regression introduced by #4035. (#4041)
  • No auth view failing permission should raise 403. (#4040)
  • Fix string_types / text_types confusion. (#4025)
  • Do not list related field choices in OPTIONS requests. (#4021)
  • Fix typo. (#4008)
  • Reorder initializing the view. (#4006)
  • Type error in DjangoObjectPermissionsFilter on Python 3.4. (#4005)
  • Fixed use of deprecated Query.aggregates. (#4003)
  • Fix blank lines around docstrings. (#4002)
  • Fixed admin pagination when limit is 0. (#3990)
  • OrderingFilter adjustments. (#3983)
  • Non-required serializer related fields. (#3976)
  • Using safer calling way of "@api_view" in tutorial. (#3971)
  • ListSerializer doesn't handle unique_together constraints. (#3970)
  • Add missing migration file. (#3968)
  • OrderingFilter should callget_serializer_class() to determine default fields. (#3964)
  • Remove old Django checks from tests and compat. (#3953)
  • Support callable as the value ofinitial for anyserializer.Field. (#3943)
  • Prevented unnecessary distinct() call in SearchFilter. (#3938)
  • Fix None UUID ForeignKey serialization. (#3936)
  • Drop EOL Django 1.7. (#3933)
  • Add missing space in serializer error message. (#3926)
  • Fixed _force_text_recursive typo. (#3908)
  • Attempt to address Django 2.0 deprecate warnings related tofield.rel. (#3906)
  • Fix parsing multipart data using a nested serializer with list. (#3820)
  • Resolving APIs URL to different namespaces. (#3816)
  • Do not HTML-escapehelp_text in Browsable API forms. (#3812)
  • OPTIONS fetches and shows all possible foreign keys in choices field. (#3751)
  • Django 1.9 deprecation warnings (#3729)
  • Test case for #3598 (#3710)
  • Adding support for multiple values for search filter. (#3541)
  • Use get_serializer_class in ordering filter. (#3487)
  • Serializers with many=True should return empty list rather than empty dict. (#3476)
  • LimitOffsetPagination limit=0 fix. (#3444)
  • Enable Validators to defer string evaluation and handle new string format. (#3438)
  • Unique validator is executed and breaks if field is invalid. (#3381)
  • Do not ignore overridden View.get_view_name() in breadcrumbs. (#3273)
  • Retry form rendering when rendering with serializer fails. (#3164)
  • Unique constraint prevents nested serializers from updating. (#2996)
  • Uniqueness validators should not be run for excluded (read_only) fields. (#2848)
  • UniqueValidator raises exception for nested objects. (#2403)
  • lookup_type is deprecated in favor oflookup_expr. (#4259)

3.3.x series

3.3.3

Date:14th March 2016.

  • Remove version string from templates. Thanks to @blag for the report and fixes. (#3878,#3913,#3912)
  • Fixes vertical html layout forBooleanField. Thanks to Mikalai Radchuk for the fix. (#3910)
  • Silenced deprecation warnings on Django 1.8. Thanks to Simon Charette for the fix. (#3903)
  • Internationalization for authtoken. Thanks to Michael Nacharov for the fix. (#3887,#3968)
  • FixToken model asabstract when the authtoken application isn't declared. Thanks to Adam Thomas for the report. (#3860,#3858)
  • Improve Markdown version compatibility. Thanks to Michael J. Schultz for the fix. (#3604,#3842)
  • QueryParameterVersioning does not useDEFAULT_VERSION setting. Thanks to Brad Montgomery for the fix. (#3833)
  • Add an expliciton_delete on the models. Thanks to Mads Jensen for the fix. (#3832)
  • FixDateField.to_representation to work with Python 2 unicode. Thanks to Mikalai Radchuk for the fix. (#3819)
  • FixedTimeField not handling string times. Thanks to Areski Belaid for the fix. (#3809)
  • Avoid updates ofMeta.extra_kwargs. Thanks to Kevin Massey for the report and fix. (#3805,#3804)
  • Fix nested validation error being rendered incorrectly. Thanks to Craig de Stigter for the fix. (#3801)
  • Document how to avoid CSRF and missing button issues withdjango-crispy-forms. Thanks to Emmanuelle Delescolle, José Padilla and Luis San Pablo for the report, analysis and fix. (#3787,#3636,#3637)
  • Improve Rest Framework Settings file setup time. Thanks to Miles Hutson for the report and Mads Jensen for the fix. (#3786,#3815)
  • Improve authtoken compatibility with Django 1.9. Thanks to S. Andrew Sheppard for the fix. (#3785)
  • FixMin/MaxValueValidator transfer from a model'sDecimalField. Thanks to Kevin Brown for the fix. (#3774)
  • Improve HTML title in the Browsable API. Thanks to Mike Lissner for the report and fix. (#3769)
  • FixAutoFilterSet to inherit fromdefault_filter_set. Thanks to Tom Linford for the fix. (#3753)
  • Fix transifex config to handle the new Chinese language codes. Thanks to @nypisces for the report and fix. (#3739)
  • DateTimeField does not handle empty values correctly. Thanks to Mick Parker for the report and fix. (#3731,#3726)
  • Raise error when setting a removed rest_framework setting. Thanks to Luis San Pablo for the fix. (#3715)
  • Add missing csrf_token in AdminRenderer post form. Thanks to Piotr Śniegowski for the fix. (#3703)
  • Refactored_get_reverse_relationships() to use correctto_field. Thanks to Benjamin Phillips for the fix. (#3696)
  • Document the use ofget_queryset forRelatedField. Thanks to Ryan Hiebert for the fix. (#3605)
  • Fix empty pk detection in HyperlinkRelatedField.get_url. Thanks to @jslang for the fix (#3962)

3.3.2

Date:14th December 2015.

  • ListField enforces input is a list. (#3513)
  • Fix regression hiding raw data form. (#3600,#3578)
  • Fix Python 3.5 compatibility. (#3534,#3626)
  • Allow setting a custom Django Paginator inpagination.PageNumberPagination. (#3631,#3684)
  • Fix relational fields withoutto_fields attribute. (#3635,#3634)
  • Fixtemplate.render deprecation warnings for Django 1.9. (#3654)
  • Sort response headers in browsable API renderer. (#3655)
  • Use related_objects api for Django 1.9+. (#3656,#3252)
  • Add confirm modal when deleting. (#3228,#3662)
  • Reveal previously hidden AttributeErrors and TypeErrors while calling has_[object_]permissions. (#3668)
  • Make DRF compatible with multi template engine in Django 1.8. (#3672)
  • UpdateNestedBoundField to also handle empty string when rendering its form. (#3677)
  • Fix UUID validation to properly catch invalid input types. (#3687,#3679)
  • Fix caching issues. (#3628,#3701)
  • Fix Admin and API browser for views without a filter_class. (#3705,#3596,#3597)
  • Add app_name to rest_framework.urls. (#3714)
  • Improve authtoken's views to support url versioning. (#3718,#3723)

3.3.1

Date:4th November 2015.

  • Resolve parsing bug when accessingrequest.POST (#3592)
  • Correctly deal withto_field referring to primary key. (#3593)
  • Allow filter HTML to render when nofilter_class is defined. (#3560)
  • Fix admin rendering issues. (#3564,#3556)
  • Fix issue with DecimalValidator. (#3568)

3.3.0

Date:28th October 2015.

  • HTML controls for filters. (#3315)
  • Forms API. (#3475)
  • AJAX browsable API. (#3410)
  • Added JSONField. (#3454)
  • Correctly mapto_field when creatingModelSerializer relational fields. (#3526)
  • Include keyword arguments when mappingFilePathField to a serializer field. (#3536)
  • Map appropriate modelerror_messages onModelSerializer uniqueness constraints. (#3435)
  • Includemax_length constraint forModelSerializer fields mapped from TextField. (#3509)
  • Added support for Django 1.9. (#3450,#3525)
  • Removed support for Django 1.5 & 1.6. (#3421,#3429)
  • Removed 'south' migrations. (#3495)

3.2.x series

3.2.5

Date:27th October 2015.

  • Escapeusername in optional logout tag. (#3550)

3.2.4

Date:21th September 2015.

  • Don't error on missingViewSet.search_fields attribute. (#3324,#3323)
  • Fixallow_empty not working on serializers withmany=True. (#3361,#3364)
  • LetDurationField accepts integers. (#3359)
  • Multi-level dictionaries not supported in multipart requests. (#3314)
  • FixListField truncation on HTTP PATCH (#3415,#2761)

3.2.3

Date:24th August 2015.

  • Addedhtml_cutoff andhtml_cutoff_text for limiting select dropdowns. (#3313)
  • Added regex style toSearchFilter. (#3316)
  • Resolve issues with setting blank HTML fields. (#3318) (#3321)
  • Correctly display existing 'select multiple' values in browsable API forms. (#3290)
  • Resolve duplicated validation message forIPAddressField. ([#3249gh3249) (#3250)
  • Fix to ensure admin renderer continues to work when pagination is disabled. (#3275)
  • Resolve error withLimitOffsetPagination when count=0, offset=0. (#3303)

3.2.2

Date:13th August 2015.

  • Adddisplay_value() method for use when displaying relational field select inputs. (#3254)
  • Fix issue withBooleanField checkboxes incorrectly displaying as checked. (#3258)
  • Ensure empty checkboxes properly setBooleanField toFalse in all cases. (#2776)
  • AllowWSGIRequest.FILES property without raising incorrect deprecated error. (#3261)
  • Resolve issue with rendering nested serializers in forms. (#3260)
  • Raise an error if user accidentally pass a serializer instance to a response, rather than data. (#3241)

3.2.1

Date:7th August 2015.

  • Fix for relational select widgets rendering without any choices. (#3237)
  • Fix for1,0 rendering astrue,false in the admin interface.#3227)
  • Fix for ListFields with single value in HTML form input. (#3238)
  • Allowrequest.FILES for compat with Django'sHTTPRequest class. (#3239)

3.2.0

Date:6th August 2015.

  • AddAdminRenderer. (#2926)
  • AddFilePathField. (#1854)
  • Addallow_empty toListField. (#2250)
  • Support django-guardian 1.3. (#3165)
  • Support grouped choices. (#3225)
  • Support error forms in browsable API. (#3024)
  • Allow permission classes to customize the error message. (#2539)
  • Supportsource=<method> on hyperlinked fields. (#2690)
  • ListField(allow_null=True) now allows null as the list value, not null items in the list. (#2766)
  • ManyToMany() maps toallow_empty=False,ManyToMany(blank=True) maps toallow_empty=True. (#2804)
  • Support custom serialization styles for primary key fields. (#2789)
  • OPTIONS requests support nested representations. (#2915)
  • Setview.action == "metadata" for viewsets withOPTIONS requests. (#3115)
  • Supportallow_blank onUUIDField. ([#3130][gh#3130])
  • Do not display view docstrings with 401 or 403 response codes. (#3216)
  • Resolve Django 1.8 deprecation warnings. (#2886)
  • Fix forDecimalField validation. (#3139)
  • Fix behavior ofallow_blank=False when used withtrim_whitespace=True. (#2712)
  • Fix issue with some field combinations incorrectly mapping to an invalidallow_blank argument. (#3011)
  • Fix for output representations with prefetches and modified querysets. (#2704,#2727)
  • Fix assertion error when CursorPagination is provided with certain invalid query parameters. (#2920)gh2920.
  • FixUnicodeDecodeError when invalid characters included in header withTokenAuthentication. (#2928)
  • Fix transaction rollbacks with@non_atomic_requests decorator. (#3016)
  • Fix duplicate results issue with Oracle databases usingSearchFilter. (#2935)
  • Fix checkbox alignment and rendering in browsable API forms. (#2783)
  • Fix for unsaved file objects which should use"url": null in the representation. (#2759)
  • Fix field value rendering in browsable API. (#2416)
  • FixHStoreField to includeallow_blank=True inDictField mapping. (#2659)
  • Numerous other cleanups, improvements to error messaging, private API & minor fixes.

3.1.x series

3.1.3

Date:4th June 2015.

  • AddDurationField. (#2481,#2989)
  • Addformat argument toUUIDField. (#2788,#3000)
  • MultipleChoiceField empties incorrectly on a partial update using multipart/form-data (#2993,#2894)
  • Fix a bug in options related to read-onlyRelatedField. (#2981,#2811)
  • Fix nested serializers withunique_together relations. (#2975)
  • Allow unexpected values forChoiceField/MultipleChoiceField representations. (#2839,#2940)
  • Rollback the transaction on error ifATOMIC_REQUESTS is set. (#2887,#2034)
  • Set the action on a view when override_method regardless of its None-ness. (#2933)
  • DecimalField accepts2E+2 as 200 and validates decimal place correctly. (#2948,#2947)
  • Support basic authentication with customUserModel that changeusername. (#2952)
  • IPAddressField improvements. (#2747,#2618,#3008)
  • ImproveDecimalField for easier subclassing. (#2695)

3.1.2

Date:13rd May 2015.

  • DateField.to_representation can handle str and empty values. (#2656,#2687,#2869)
  • Use default reason phrases from HTTP standard. (#2764,#2763)
  • Raise error whenModelSerializer used with abstract model. (#2757,#2630)
  • Handle reversal of non-API view_name inHyperLinkedRelatedField (#2724,#2711)
  • Don't require pk strictly for related fields. (#2745,#2754)
  • Metadata detects null boolean field type. (#2762)
  • Proper handling of depth in nested serializers. (#2798)
  • Display viewset without paginator. (#2807)
  • Don't check for deprecated.model attribute in permissions (#2818)
  • Restrict integer field to integers and strings. (#2835,#2836)
  • ImproveIntegerField to use compiled decimal regex. (#2853)
  • Prevent emptyqueryset to raise AssertionError. (#2862)
  • DjangoModelPermissions rely onget_queryset. (#2863)
  • CheckAcceptHeaderVersioning with content negotiation in place. (#2868)
  • AllowDjangoObjectPermissions to use views that defineget_queryset. (#2905)

3.1.1

Date:23rd March 2015.

  • Security fix: Escape tab switching cookie name in browsable API.
  • Display input forms in browsable API ifserializer_class is used, even whenget_serializer method does not exist on the view. (#2743)
  • Use a password input for the AuthTokenSerializer. (#2741)
  • Fix missing anchor closing tag after next button. (#2691)
  • Fixlookup_url_kwarg handling in viewsets. (#2685,#2591)
  • Fix problem with importingrest_framework.views inapps.py (#2678)
  • LimitOffsetPagination raisesTypeError if PAGE_SIZE not set (#2667,#2700)
  • German translation formin_value field error message referencesmax_value. (#2645)
  • RemoveMergeDict. (#2640)
  • Support serializing unsaved models with related fields. (#2637,#2641)
  • Allow blank/null on radio.html choices. (#2631)

3.1.0

Date:5th March 2015.

For full details see the3.1 release announcement.


3.0.x series

3.0.5

Date:10th February 2015.

  • Fix a bug where_closable_objects breaks pickling. (#1850,#2492)
  • Allow non-standardUser models withThrottling. (#2524)
  • Support customUser.db_table in TokenAuthentication migration. (#2479)
  • Fix misleadingAttributeError tracebacks onRequest objects. (#2530,#2108)
  • ManyRelatedField.get_value clearing field on partial update. (#2475)
  • Removed '.model' shortcut from code. (#2486)
  • Fixdetail_route andlist_route mutable argument. (#2518)
  • Prefetching the user object when getting the token inTokenAuthentication. (#2519)

3.0.4

Date:28th January 2015.

  • Django 1.8a1 support. (#2425,#2446,#2441)
  • AddDictField and support Django 1.8HStoreField. (#2451,#2106)
  • AddUUIDField and support Django 1.8UUIDField. (#2448,#2433,#2432)
  • BaseRenderer.render now raisesNotImplementedError. (#2434)
  • Fix timedelta JSON serialization on Python 2.6. (#2430)
  • ResultDict andResultList now appear as standard dict/list. (#2421)
  • Fix visibleHiddenField in the HTML form of the web browsable API page. (#2410)
  • UseOrderedDict forRelatedField.choices. (#2408)
  • Fix ident format when usingHTTP_X_FORWARDED_FOR. (#2401)
  • Fix invalid key with memcached while using throttling. (#2400)
  • FixFileUploadParser with version 3.x. (#2399)
  • Fix the serializer inheritance. (#2388)
  • Fix caching issues withReturnDict. (#2360)

3.0.3

Date:8th January 2015.

  • FixMinValueValidator onmodels.DateField. (#2369)
  • Fix serializer missing context when pagination is used. (#2355)
  • Namespaced router URLs are now supported by theDefaultRouter. (#2351)
  • required=False allows omission of value for output. (#2342)
  • Use textarea input formodels.TextField. (#2340)
  • Use customListSerializer for pagination if required. (#2331,#2327)
  • Better behavior with null and '' for blank HTML fields. (#2330)
  • Ensure fields inexclude are model fields. (#2319)
  • FixIntegerField andmax_length argument incompatibility. (#2317)
  • Fix the YAML encoder for 3.0 serializers. (#2315,#2283)
  • Fix the behavior of empty HTML fields. (#2311,#1101)
  • Fix Metaclass attribute depth ignoring fields attribute. (#2287)
  • Fixformat_suffix_patterns to work with Django'si18n_patterns. (#2278)
  • Ability to customize router URLs for custom actions, usingurl_path. (#2010)
  • Don't install Django REST Framework as egg. (#2386)

3.0.2

Date:17th December 2014.

  • Ensurerequest.user is made available to response middleware. (#2155)
  • Client.logout() also cancels any existingforce_authenticate. (#2218,#2259)
  • Extra assertions and better checks to preventing incorrect serializer API use. (#2228,#2234,#2262,#2263,#2266,#2267,#2289,#2291)
  • Fixedmin_length message forCharField. (#2255)
  • FixUnicodeDecodeError, which can occur on serializerrepr. (#2270,#2279)
  • Fix empty HTML values when a default is provided. (#2280,#2294)
  • FixSlugRelatedField raisingUnicodeEncodeError when used as a multiple choice input. (#2290)

3.0.1

Date:11th December 2014.

  • More helpful error message when the default Serializercreate() fails. (#2013)
  • Raise error when attempting to save serializer if data is not valid. (#2098)
  • FixFileUploadParser breaks with empty file names and multiple upload handlers. (#2109)
  • ImproveBindingDict to support standard dict-functions. (#2135,#2163)
  • Addvalidate() toListSerializer. (#2168,#2225,#2232)
  • Fix JSONP renderer failing to escape some characters. (#2169,#2195)
  • Add missing default style forFileField. (#2172)
  • Actions are required when callingViewSet.as_view(). (#2175)
  • Addallow_blank toChoiceField. (#2184,#2239)
  • Cosmetic fixes in the HTML renderer. (#2187)
  • Raise error iffields on serializer is not a list of strings. (#2193,#2213)
  • Improve checks for nested creates and updates. (#2194,#2196)
  • validated_attrs argument renamed tovalidated_data inSerializercreate()/update(). (#2197)
  • Remove deprecated code to reflect the dropped Django versions. (#2200)
  • Better serializer errors for nested writes. (#2202,#2215)
  • Fix pagination and custom permissions incompatibility. (#2205)
  • Raise error iffields on serializer is not a list of strings. (#2213)
  • Add missing translation markers for relational fields. (#2231)
  • Improve field lookup behavior for dicts/mappings. (#2244,#2243)
  • Optimized hyperlinked PK. (#2242)

3.0.0

Date: 1st December 2014

For full details see the3.0 release announcement.


For older release notes,please see the version 2.x documentation.


[8]ページ先頭

©2009-2025 Movatter.jp