---
title: "Django 6.0.1 release notes"
version: 6.1
locale: es
source: https://docs.djangoproject.com/es/6.1/releases/6.0.1/
canonical: https://djangodocs.dev/es/6.1/releases/6.0.1/
---
# Django 6.0.1 release notes

*January 6, 2026*

Django 6.0.1 fixes one data loss bug introduced in Django 5.2 as well as
several other bugs in Django 6.0.

## Bugfixes

- Fixed a bug in Django 5.2 where data exceeding `max_length` was silently
  truncated by [`QuerySet.bulk_create()`](/es/6.1/ref/models/querysets/#django.db.models.query.QuerySet.bulk_create) on PostgreSQL ([#33647](https://code.djangoproject.com/ticket/33647)).
- Fixed a regression in Django 6.0 where [`querystring`](/es/6.1/ref/templates/builtins/#std-templatetag-querystring) mishandled
  multi-value [`QueryDict`](/es/6.1/ref/request-response/#django.http.QueryDict) keys, both by only preserving the
  last value and by incorrectly handling `None` values ([#36783](https://code.djangoproject.com/ticket/36783)).
- Fixed a regression in Django 6.0 that prevented changing the name of a
  [`ManyToManyField`](/es/6.1/ref/models/fields/#django.db.models.ManyToManyField) from taking effect when applying
  migrations ([#36800](https://code.djangoproject.com/ticket/36800)).
- Fixed a bug where management command colorized help (introduced in
  Python 3.14) ignored the [`--no-color`](/es/6.1/ref/django-admin/#cmdoption-no-color) option and the
  [`DJANGO_COLORS`](/es/6.1/ref/django-admin/#envvar-DJANGO_COLORS) setting ([#36376](https://code.djangoproject.com/ticket/36376)).
- Fixed a regression in Django 6.0 that caused
  [`bulk_create()`](/es/6.1/ref/models/querysets/#django.db.models.query.QuerySet.bulk_create) to crash
  when introspecting the connection on SQLite ([#36818](https://code.djangoproject.com/ticket/36818)).
- Fixed a visual regression in Django 6.0 for admin form fields grouped under a
  `<fieldset>` in Safari ([#36807](https://code.djangoproject.com/ticket/36807)).
- Fixed a crash in Django 6.0 caused by infinite recursion when calling
  `repr()` on an unevaluated `django.utils.csp.LazyNonce` instance
  ([#36810](https://code.djangoproject.com/ticket/36810)).
- Fixed a regression in Django 6.0 where [`path()`](/es/6.1/ref/urls/#django.urls.path) routes
  defined using [`gettext_lazy()`](/es/6.1/ref/utils/#django.utils.translation.gettext_lazy) failed to
  resolve correctly ([#36796](https://code.djangoproject.com/ticket/36796)).
- Fixed a regression in Django 6.0 where the [`Widget.use_fieldset`](/es/6.1/ref/forms/widgets/#django.forms.Widget.use_fieldset)
  attribute of [`ClearableFileInput`](/es/6.1/ref/forms/widgets/#django.forms.ClearableFileInput) was flipped
  from `False` to `True` ([#36829](https://code.djangoproject.com/ticket/36829)).
- Reverted an undocumented optimization in Django 6.0 that modified permission
  [`name`](/es/6.1/ref/contrib/auth/#django.contrib.auth.models.Permission.name) and
  [`codename`](/es/6.1/ref/contrib/auth/#django.contrib.auth.models.Permission.codename) values when renaming
  models via a migration. This change could affect unrelated
  [`Permission`](/es/6.1/ref/contrib/auth/#django.contrib.auth.models.Permission) objects ([#36843](https://code.djangoproject.com/ticket/36843)) and
  did not report conflicts ([#36793](https://code.djangoproject.com/ticket/36793)).
