summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2022-05-04Refs #33646 -- Reduced sync_to_async hops on async QuerySet iteration.Simon Charette
2022-05-04Fixed #33675 -- Dropped support for PostgreSQL 10 and PostGIS 2.4.Mariusz Felisiak
2022-05-03Refs #30581 -- Added Q.flatten().Gagaro
2022-05-03Fixed #29854 -- Made _all_related_fields() return deterministically ordered f...Collin Anderson
2022-05-02Refs #33646 -- Made QuerySet.raw() async-compatible.Mariusz Felisiak
2022-05-02Refs #33646 -- Added RawModelIterable.Mariusz Felisiak
2022-05-02Fixed #33413 -- Made migrations propage collations to related fields.David Wobrock
2022-04-29Refs #33671 -- Fixed migrations crash when adding collation to a primary key ...Mariusz Felisiak
2022-04-29Fixed #33670 -- Fixed altering primary key on SQLite.Mariusz Felisiak
2022-04-29Refs #33413 -- Added collation to CharField/TextField's db_parameters.David Wobrock
2022-04-26Fixed #33646 -- Added async-compatible interface to QuerySet.Andrew Godwin
2022-04-26Fixed #33655 -- Removed unnecessary constant from GROUP BY clause for QuerySe...marcperrinoptel
2022-04-22Removed unnecessary variable in Index.create_sql().Hannes Ljungberg
2022-04-22Refs #31223 -- Added __class_getitem__() to ForeignKey.Collin Anderson
2022-04-21Fixed #33509 -- Added "(no-op)" to sqlmigrate output for operations without S...Adam Johnson
2022-04-21Fixed #33004 -- Made saving objects with unsaved GenericForeignKey raise Valu...sarahboyce
2022-04-19Refs #32226 -- Fixed JSON format of QuerySet.explain() on PostgreSQL when for...Mariusz Felisiak
2022-04-18Fixed DatabaseFeatures.uses_savepoints/can_release_savepoints and related tes...Mariusz Felisiak
2022-04-14Made select_for_update() don't raise TransactionManagementError on databases ...Mariusz Felisiak
2022-04-14Expanded QuerySet.explain() error message if a backend supports no formats.Tim Graham
2022-04-14Removed unneeded code in explain_query_prefix()Tim Graham
2022-04-13Fixed #30511 -- Used identity columns instead of serials on PostgreSQL.Florian Apolloner
2022-04-13Fixed DatabaseFeatures.supports_index_column_ordering and related tests with ...Mariusz Felisiak
2022-04-13Removed unnecessary tuple call in SQLInsertCompiler.David Smith
2022-04-12Fixed DatabaseFeatures.supports_expression_indexes on MySQL with MyISAM.Mariusz Felisiak
2022-04-12Fixed #24296 -- Made QuerySet.exists() clear selected columns for not sliced ...mgaligniana
2022-04-12Fixed #33626 -- Cleared cache when unregistering a lookup.Himanshu-Balasamanta
2022-04-11Removed DatabaseFeatures.validates_explain_options.Mariusz Felisiak
2022-04-11Fixed CVE-2022-28347 -- Protected QuerySet.explain(**options) against SQL inj...Mariusz Felisiak
2022-04-11Fixed CVE-2022-28346 -- Protected QuerySet.annotate(), aggregate(), and extra...Mariusz Felisiak
2022-04-07Fixed #33618 -- Fixed MTI updates outside of primary key chain.Simon Charette
2022-04-06Fixed #33471 -- Made AlterField operation a noop when changing "choices".sarahboyce
2022-04-04Fixed #33605 -- Fixed migration crash when altering RegexValidator to pre-com...Brian Helba
2022-03-31Fixed #33397 -- Corrected resolving output_field for DateField/DateTimeField/...Luke Plant
2022-03-31Refs #33397 -- Added register_combinable_fields().Luke Plant
2022-03-31Removed unnecessary Query.get_loaded_field_names_cb() and Query.deferred_to_d...Mariusz Felisiak
2022-03-31Refs #24020 -- Removed redundant Query.get_loaded_field_names().Mariusz Felisiak
2022-03-31Updated select_related_descend() comment.Mariusz Felisiak
2022-03-30Fixed #33598 -- Reverted "Removed unnecessary reuse_with_filtered_relation ar...Mariusz Felisiak
2022-03-29Updated Oracle docs links to Oracle 21c.Mariusz Felisiak
2022-03-24Refs #32365 -- Removed internal uses of utils.timezone.utc alias.Carlton Gibson
2022-03-23Refs #32365 -- Made migration writer use datetime.timezone.utc.Carlton Gibson
2022-03-22Refs #30581 -- Fixed DatabaseFeatures.bare_select_suffix on MySQL < 8 and Mar...Gagaro
2022-03-17Prevented initialization of unused database connections.Florian Apolloner
2022-03-17Moved ensure_defaults() and prepare_test_settings() logic to ConnectionHandle...Florian Apolloner
2022-03-17Removed usage of django.db.utils.ConnectionHandler.databases.Florian Apolloner
2022-03-16Made BaseConstraint importable from django.db.models.Gagaro
2022-03-16Used sets for field names for exclusion.Gagaro
2022-03-16Refs #30581 -- Allowed sql.Query to be used without model.Gagaro
2022-03-15Fixed #31169 -- Adapted the parallel test runner to use spawn.David Smith