| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-12-07 | Fixed #34172 -- Improved ModelAdmin.get_urls example. | Sylvain Fankhauser | |
| 2022-12-07 | Fixed #32319 -- Added ES module support to ManifestStaticFilesStorage. | James Bligh | |
| Co-authored-by: James Bligh <james.bligh@silvercloudhealth.com> | |||
| 2022-12-07 | Refs #32339 -- Updated Form API docs to prefer as_div() output style. | David Smith | |
| 2022-12-06 | Used homogeneous weights list in SearchRank tests. | Florian Apolloner | |
| A homogenous array is required on PostgreSQL. | |||
| 2022-12-06 | Fixed typo in tests/postgres_tests/test_signals.py comment. | Daniele Varrazzo | |
| 2022-12-06 | Refs #33308 -- Modernized database wrapper in the PostgreSQL backend. | Florian Apolloner | |
| - Used connection.info instead of connection.get_parameter_status() and connection.server_info which don't exist in psycopg 3. - Set encoding using the client_encoding connection parameter instead of connection.set_client_encoding() that doesn't exist in psycopg 3. - Used the dbname connection parameter instead of deprecated alias - database. | |||
| 2022-12-06 | Fixed AdminViewDeletedObjectsTest.test_cyclic failure when using --keepdb. | Mariusz Felisiak | |
| This changes to hardcoded pks when hardcoded fks are used. | |||
| 2022-12-06 | Added stub release notes for 4.1.5. | Carlton Gibson | |
| 2022-12-06 | Added release date for 4.1.4. | Carlton Gibson | |
| 2022-12-06 | Fixed #29084 -- Skipped some postgres_tests.test_search tests when ↵ | Pablo | |
| pg_catalog isn't English. | |||
| 2022-12-06 | Fixed #24048 -- Corrected QuerySet.only() docs about interaction with defer(). | Ryan Cheley | |
| 2022-12-06 | Updated various links to HTTPS and new locations. | Mariusz Felisiak | |
| 2022-12-05 | Fixed #34194 -- Added django.utils.http.content_disposition_header(). | Alex Vandiver | |
| 2022-12-05 | Removed redundant definition of DatabaseFeatures.can_release_savepoints on ↵ | Mariusz Felisiak | |
| MySQL. | |||
| 2022-12-05 | Improved test coverage for django.db.transaction. | Pablo | |
| 2022-12-05 | Fixed #34199 -- Added example to StringAgg docs. | sdolemelipone | |
| 2022-12-05 | Fixed typo in docs/ref/contrib/postgres/aggregates.txt. | sdolemelipone | |
| 2022-12-02 | Improved isolation of TestGeneralAggregate.test_default_argument(). | Simon Charette | |
| 2022-12-02 | Refs #33308 -- Avoided passing None to RawSQL's params. | Florian Apolloner | |
| Passing None to params causes errors in determining the data type on psycopg3. | |||
| 2022-12-02 | Refs #33308 -- Made PostGISAdapter do not use psycopg2's Binary(). | Florian Apolloner | |
| 2022-12-01 | Refs #33308 -- Deprecated support for passing encoded JSON string literals ↵ | Simon Charette | |
| to JSONField & co. JSON should be provided as literal Python objects an not in their encoded string literal forms. | |||
| 2022-12-01 | Refs #33308 -- Added get_type_oids() hook and simplified registering type ↵ | Daniele Varrazzo | |
| handlers on PostgreSQL. | |||
| 2022-12-01 | Refs #33308 -- Ensured type handlers are registered for all PostgreSQL ↵ | Florian Apolloner | |
| specific tests. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2022-12-01 | Refs #33308 -- Used psycopg's errors instead of errorcodes. | Florian Apolloner | |
| 2022-11-30 | Refs #34095 -- Changed more properties to use rem units in admin CSS. | SwastikTripathi | |
| 2022-11-30 | Refs #33397, Refs #34160 -- Added release note for resolving output_field ↵ | Mariusz Felisiak | |
| changes. | |||
| 2022-11-29 | Refs #10929 -- Fixed aggregates crash when passing strings as defaults. | Simon Charette | |
| Previously strings were interpreted as F() expressions and default crashed with AttributeError: 'F' object has no attribute 'empty_result_set_value' | |||
| 2022-11-29 | Fixed #33701 -- Added fine-grained error locations to the technical 500 ↵ | Giebisch | |
| debug page. | |||
| 2022-11-29 | Fixed #34187 -- Made UserCreationForm save many-to-many fields. | sdolemelipone | |
| 2022-11-28 | Refs #34119 -- Skipped ↵ | Mariusz Felisiak | |
| test_callable_default_hidden_widget_value_not_overridden when JSONField is not supported. | |||
| 2022-11-28 | Refs #31169 -- Skipped test_get_test_db_clone_settings_not_supported on not ↵ | Mariusz Felisiak | |
| in-memory SQLite database. multiprocessing's start method is checked only for in-memory SQLite databases. | |||
| 2022-11-28 | Doc's check_password()'s setter and preferred arguments. | Mariusz Felisiak | |
| Follow up to 90e05aaeac612a4251640564aa65f103ac635e12. | |||
| 2022-11-25 | Fixed #34103 -- Fixed logging SQL queries with duplicate parameters on Oracle. | David Sanders | |
| 2022-11-25 | Fixed #33747 -- Added exception notes to the technical 500 debug page. | Giebisch | |
| 2022-11-24 | Used DatabaseFeatures.django_test_skips to skip ↵ | Christophe Baldy | |
| AssertNumQueriesUponConnectionTests tests. | |||
| 2022-11-24 | Fixed #34173 -- Skipped saving sessions on 5xx responses. | SirAbhi13 | |
| 2022-11-24 | Adjusted BaseFormSet.get_form_kwargs example in docs. | Riccardo Magliocchetti | |
| 2022-11-24 | Fixed #34064 -- Adjusted locale override wording in settings docs. | Tibor Leupold | |
| 2022-11-24 | Fixed #29062 -- Prevented possibility of database lock when using ↵ | baldychristophe | |
| LiveServerTestCase with in-memory SQLite database. Thanks Chris Jerdonek for the implementation idea. | |||
| 2022-11-23 | Fixed #31679 -- Delayed annotating aggregations. | Simon Charette | |
| By avoiding to annotate aggregations meant to be possibly pushed to an outer query until their references are resolved it is possible to aggregate over a query with the same alias. Even if #34176 is a convoluted case to support, this refactor seems worth it given the reduction in complexity it brings with regards to annotation removal when performing a subquery pushdown. | |||
| 2022-11-23 | Fixed typo in settings topic doc. | KrishnaKumar Thanki | |
| 2022-11-23 | Corrected a typo in signals reference. | Adam Zapletal | |
| 2022-11-23 | Refs #32873 -- Adjusted formatting note on USE_L10N default. | Anders Hovmöller | |
| 2022-11-23 | Refs #33050 -- Added test for QuerySet.count() on combined queries with ↵ | Mariusz Felisiak | |
| select_related(). Thanks Simon Charette for noticing this. Fixed in 70499b25c708557fb9ee2264686cd172f4b2354e. | |||
| 2022-11-22 | Fixed #34171 -- Fixed QuerySet.bulk_create() on fields with db_column in ↵ | DevilsAutumn | |
| unique_fields/update_fields. Bug in 0f6946495a8ec955b471ca1baaf408ceb53d4796. Thanks Joshua Brooks for the report. | |||
| 2022-11-22 | Fixed #34177 -- Fixed QuerySet.bulk_create() crash on "pk" in unique_fields. | Mariusz Felisiak | |
| Bug in 0f6946495a8ec955b471ca1baaf408ceb53d4796. | |||
| 2022-11-22 | Bumped gh-problem-matcher-wrap version to 2.0.0. | Mariusz Felisiak | |
| This avoids issues with using deprecated Node.js 12 actions. | |||
| 2022-11-22 | Used CSS flex for form rows. | Tom Carrick | |
| 2022-11-21 | Fixed #31090 -- Logged transaction management queries. | Ilya Bass | |
| Thanks to Petter Strandmark for the original idea and Mariusz Felisiak for advice during the DjangoConUS 2022 Sprint! | |||
| 2022-11-18 | Removed unnecessary ForeignKey.get_reverse_path_info(). | Mariusz Felisiak | |
| get_reverse_path_info() is already inherited from ForeignObject. | |||
