---
title: "Django 4.1.6 リリースノート"
version: 6.0
locale: ja
source: https://docs.djangoproject.com/ja/6.0/releases/4.1.6/
canonical: https://djangodocs.dev/ja/6.0/releases/4.1.6/
---
# Django 4.1.6 リリースノート

*2023年2月1日*

Django 4.1.6 では、4.1.5 における1件の深刻度 "moderate" のセキュリティ問題と、1件のバグが修正されています。

## CVE-2023-23969: `Accept-Language` ヘッダーを通じた Dos 攻撃の可能性

The parsed values of `Accept-Language` headers are cached in order to avoid
repetitive parsing. This leads to a potential denial-of-service vector via
excessive memory usage if large header values are sent.

In order to avoid this vulnerability, the `Accept-Language` header is now
parsed up to a maximum length.

## バグ修正

- Django 4.1 において、ソートの式を含む `UniqueConstraint` を持つモデルのバリデーションがクラッシュするバグを修正しました ([#34291](https://code.djangoproject.com/ticket/34291))。
