Marten Kenbeek
|
16411b8400
|
Fixed #26013 -- Moved django.core.urlresolvers to django.urls.
Thanks to Tim Graham for the review.
|
2015-12-31 14:21:29 -05:00 |
Nick Sandford
|
ff19df9c2d
|
Fixed #19536 -- Included object-tools when ModelAdmin.has_add_permission() is False.
|
2015-12-29 12:10:44 -05:00 |
Bryan Marty
|
62ca2dea04
|
Fixed #8065 -- Made id_list an optional argument for QuerySet.in_bulk().
|
2015-12-26 17:57:19 -05:00 |
Alexander Sosnovskiy
|
2a7ce34600
|
Fixed #14286 -- Added models.BigAutoField.
|
2015-12-25 20:01:31 -05:00 |
Tim Graham
|
c70c5f04a4
|
Fixed #25979 -- Dropped support for PostgreSQL 9.1.
|
2015-12-23 13:48:48 -05:00 |
Sergey Fedoseev
|
5d348bba31
|
Fixed #25950 -- Added support for GEOSisClosed.
|
2015-12-22 16:54:02 -05:00 |
Jon Dufresne
|
f1628f6be1
|
Fixed #25838 -- Added "python" as an interface to the shell command.
Deprecates the "--plain" option.
|
2015-12-22 08:22:12 -05:00 |
Tim Graham
|
b10f66831b
|
Fixed #25958 -- Removed support for 'skip_validation' in BaseCommand.execute(**options).
|
2015-12-21 14:26:42 -05:00 |
Karen Tracey
|
5399ccc0f4
|
Fixed #494 -- Added ability to specify classes on admin inline fieldsets.
This includes the ability to collapse inlines by specifying a class named
'collapse'.
|
2015-12-21 13:50:06 -05:00 |
Sergey Fedoseev
|
c984e2bc15
|
Fixed #25869 -- Added trim and precision properties to WKTWriter.
|
2015-12-18 19:44:43 +01:00 |
Niels Van Och
|
99a1265a39
|
Fixed #25063 -- Added path to makemigration's output of migration file.
|
2015-12-18 11:20:00 -05:00 |
Ed Bartosh
|
423b3afce4
|
Fixed #25939 -- Removed redundant transaction in QuerySet.update_or_create().
There is no need to wrap the save() call in transaction.atomic() as
it's already done down the call stack in Model.save_base().
|
2015-12-14 19:41:11 -05:00 |
Sergey Fedoseev
|
5146e2cf98
|
Fixed #25662 -- Allowed creation of empty GEOS geometries.
|
2015-12-14 13:29:38 -05:00 |
Johannes Hoppe
|
5233b70070
|
Fixed #25725 -- Made HttpReponse immediately close objects.
|
2015-12-14 12:46:48 -05:00 |
Iacopo Spalletti
|
d693074d43
|
Fixed #20223 -- Added keep_lazy() as a replacement for allow_lazy().
Thanks to bmispelon and uruz for the initial patch.
|
2015-12-12 14:46:48 -05:00 |
Sergey Fedoseev
|
f7889b83b0
|
Fixed #25924 -- Removed gis.utils.srs.add_postgis_srs() backwards-compatibility alias.
|
2015-12-12 10:49:04 -05:00 |
Tim Graham
|
030ee15850
|
Refs #25918 -- Fixed typo in 1.10 release notes.
|
2015-12-11 12:54:04 -05:00 |
Tim Graham
|
59f861fcb4
|
Fixed #25918 -- Removed unused LOGOUT_URL setting.
Thanks hop for the report and patch.
|
2015-12-11 12:43:02 -05:00 |
Johannes Hoppe
|
cf546e11ac
|
Fixed #21221 -- Made form Media and static template tag use staticfiles if installed.
|
2015-12-10 14:30:19 -05:00 |
Raphael Michel
|
82976e5c3f
|
Fixed #25637 -- Added URLValidator hostname length validation.
URLValidator now validates the maximum length of a hostname and the
maximum length of all labels inside the hostname.
|
2015-12-08 15:46:45 -05:00 |
Tim Graham
|
166e0490d3
|
Fixed #25895 -- Used a consistent style for UserAdmin overrides.
Thanks Justin Abrahms for the report.
|
2015-12-08 14:40:55 -05:00 |
Thomas Grainger
|
d638cdc42a
|
Fixed #25165 -- Removed inline JavaScript from the admin.
This allows setting a Content-Security-Policy HTTP header
(refs #15727).
Special thanks to blighj, the original author of this patch.
|
2015-12-05 15:51:57 -05:00 |
Sergey Fedoseev
|
25f5b5c19d
|
Fixed #25853 -- Added support for GeoHash function on SpatiaLite.
|
2015-12-04 08:09:21 -05:00 |
Alexander Sosnovskiy
|
b61eab18f7
|
Fixed #13774 -- Added models.Field.rel_db_type().
|
2015-12-04 07:55:41 -05:00 |
Sergey Fedoseev
|
395af23ac1
|
Refs #25659 -- Added missing docs for Difference/Intersection/SymDifference functions.
Complements 7127eb287f .
|
2015-12-03 12:59:01 -05:00 |
Sergey Fedoseev
|
0825f77f76
|
Fixed #25836 -- Added support for MakeLine aggregate on SpatiaLite.
|
2015-12-02 17:25:33 -05:00 |
Sergey Fedoseev
|
f920be7c32
|
Fixed #25773 -- Deprecated the geos.MultiPolygon.cascaded_union property.
|
2015-11-25 17:31:24 -05:00 |
Daniel Wiesmann
|
8f5904560a
|
Fixed #25734 -- Made GDALBand min and max properties use GDALComputeRasterStatistics.
Thanks Sergey Fedoseev and Tim Graham for the review.
|
2015-11-25 13:40:39 -05:00 |
Sergey Fedoseev
|
ccc8f67b77
|
Fixed #25722 -- Added the GEOSGeometry.covers() method.
|
2015-11-20 12:36:03 -05:00 |
Andrei Fokau
|
998894e1b9
|
Fixed #25764 -- Added support for serialization of enum.Enum in migrations.
Thanks Tim Graham for the review.
|
2015-11-19 17:21:12 -05:00 |
Anton Baklanov
|
80bcbecd4a
|
Fixed #19361 -- Added link to object's change form in admin's post-save message.
Thanks Roel Kramer for tests.
|
2015-11-19 15:04:32 -05:00 |
Tim Graham
|
4921d4e59f
|
Fixed #25769 -- Updated get_version() release candidate naming for PEP 0440.
|
2015-11-19 10:00:09 -05:00 |
Sergey Fedoseev
|
034dfbfc05
|
Fixed #25654 -- Added the GEOSGeometry.unary_union property.
|
2015-11-18 19:17:16 -05:00 |
Sergey Fedoseev
|
7a452c5ce2
|
Fixed #25665 -- Deprecated getter/setter of Point.tuple.
|
2015-11-18 12:06:03 -05:00 |
Sergey Fedoseev
|
7803f429a4
|
Refs #25665 -- Deprecated getters/setters of Point coordinate properties.
|
2015-11-18 11:57:26 -05:00 |
Sergey Fedoseev
|
b7177cc2a4
|
Refs #25665 -- Deprecated getter/setter of GEOSGeometry.srid.
|
2015-11-18 11:49:48 -05:00 |
Raphael Michel
|
16945f0e9c
|
Fixed #25695 -- Added template_name parameter to csrf_failure() view.
|
2015-11-17 14:28:18 -05:00 |
Aaron Elliot Ross
|
19a5f6da32
|
Fixed #25469 -- Added autoescape option to DjangoTemplates backend.
Thanks Aymeric for the initial patch and Carl for review.
|
2015-11-12 19:14:23 -05:00 |
j0hnsmith
|
0115f9faa5
|
Fixed #25692 -- Added natural keys support to Site model.
|
2015-11-07 21:19:25 +01:00 |
Tim Graham
|
ebd26bf5a5
|
Removed an extra heading in the 1.10 release notes.
|
2015-11-03 12:02:25 +00:00 |
Sergey Fedoseev
|
0a26121797
|
Refs #25629 -- Added `arity` class attribute to `Func` expressions
|
2015-11-02 20:09:21 +01:00 |
Sergey Fedoseev
|
b78226cd3d
|
Fixed #25655 -- Dropped support for GEOS < 3.3
|
2015-11-01 20:41:52 +01:00 |
Sergey Fedoseev
|
8ad923b9d0
|
Fixed #25636 -- Dropped support for SpatiaLite < 3.0
|
2015-10-31 14:22:34 +01:00 |
Claude Paroz
|
7d81ee6efc
|
Fixed #16734 -- Set script prefix even outside of requests
Thanks Tim Graham for the review.
|
2015-10-29 20:12:38 +01:00 |
Tim Graham
|
15ef1dd478
|
Fixed #20846 -- Increased User.username max_length to 254 characters.
Thanks Collin Anderson and Nick Sandford for work on the patch.
|
2015-10-29 08:58:49 -04:00 |
Tim Graham
|
9c5e272860
|
Fixed #25550 -- Deprecated direct assignment to the reverse side of a related set.
|
2015-10-27 07:57:15 -04:00 |
Jon Dufresne
|
3c7d2ee881
|
Fixed #25604 -- Added makemigrations --check option.
Command exits with non-zero status if changes without migrations exist.
|
2015-10-24 14:45:00 -04:00 |
Dheerendra Rathor
|
59e85f09c6
|
Fixed #25519 -- Made the admin "View site" link point to sites running on a subpath.
Used request.META['SCRIPT_NAME'] as the site_url if it hasn't been
customized from the default value of '/'.
|
2015-10-22 13:51:00 -04:00 |
Jon Dufresne
|
05248a1009
|
Fixed #25576 -- Added IOBase methods required by TextIOWrapper to HttpResponse.
|
2015-10-21 10:42:29 -04:00 |
Andrew Artajos
|
48888a1a67
|
Fixed #25501 -- Made the file-based cache backend use the highest pickling protocol.
|
2015-10-20 13:05:33 -04:00 |