Bruno Alla
|
604341c85f
|
Fixed #28331 -- Added ContextMixin.extra_context to allowing passing context in as_view().
|
2017-07-06 10:34:54 -04:00 |
Mariusz Felisiak
|
df1106a40f
|
Fixed #28365 -- Unified DatabaseOperations.date_interval_sql() return value with similar methods.
|
2017-07-06 07:37:47 -04:00 |
Ran Benita
|
b9f7dce84b
|
Fixed #28010 -- Added FOR UPDATE OF support to QuerySet.select_for_update().
|
2017-06-29 16:00:15 -04:00 |
Daniel Hahler
|
43a4835edf
|
Fixed #27473 -- Added DurationField support to Extract.
|
2017-06-28 10:10:09 -04:00 |
Mariusz Felisiak
|
3297dede7f
|
Fixed #28046 -- Added the db_tablespace parameter to class-based indexes.
Thanks Markus Holtermann and Tim Graham for reviews.
|
2017-06-27 21:15:15 +02:00 |
Mariusz Felisiak
|
617505ca89
|
Fixed #28330 -- Prevented passing positional arguments to an Index.
Thanks Tim Graham for the review.
|
2017-06-27 13:39:37 -04:00 |
Sergey Fedoseev
|
44a7b98abb
|
Fixed #27964 -- Made MySQL backend raise exception if spatial transformation is needed for query.
|
2017-06-26 15:10:55 -04:00 |
Simon Charette
|
ea91ad4c13
|
Refs #25530 -- Changed _create_index_name to take a table as first parameter.
|
2017-06-20 22:59:22 -04:00 |
Mads Jensen
|
de42adf4ff
|
Fixed #27869 -- Added fastupdate and gin_pending_list_limit params to GinIndex.
Thanks Tim Graham and Markus Holtermann for review.
|
2017-06-20 10:54:39 -04:00 |
Paul Tiplady
|
335a8d7895
|
Fixed #28322 -- Added dbshell support for MySQL client TLS certs.
|
2017-06-19 18:11:25 -04:00 |
Chandrakant Kumar
|
2b09e4c88e
|
Fixed #27787 -- Made call_command() validate the options it receives.
|
2017-06-16 21:28:38 -04:00 |
Daniel Wiesmann
|
6f44f714c9
|
Fixed #28300 -- Allowed GDALRasters to use the vsimem filesystem.
Thanks Tim Graham for the review and edits.
|
2017-06-16 12:09:05 -04:00 |
Adam Bogdał
|
cd2fe829dd
|
Fixed #24195 -- Deconstructed the limit_choices_to option of related fields.
Migrations will now be created for changes to limit_choices_to.
|
2017-06-14 08:57:24 -04:00 |
Collin Anderson
|
1a49b89470
|
Fixed #27953 -- Added instance's pk to Model.__str__().
|
2017-06-09 13:42:53 -04:00 |
Mads Jensen
|
c7f6ffbdcf
|
Fixed #28103 -- Added quarter extract, truncation, and lookup.
Thanks Mariusz Felisiak, Tim Graham, and Adam Johnson for review.
|
2017-06-08 15:15:29 -04:00 |
Daniel Wiesmann
|
fe5e34a295
|
Fixed #28288 -- Allowed passing papsz options to GDALRaster initialization.
|
2017-06-08 12:44:26 -04:00 |
Daniel Wiesmann
|
e0b456bee7
|
Fixed #28232 -- Made raster metadata readable and writable on GDALRaster/Band.
|
2017-06-07 11:30:35 -04:00 |
Claude Paroz
|
23142eea85
|
Fixed #18394 -- Added error for invalid JavaScriptCatalog packages
Thanks Tim Graham for the review.
|
2017-06-06 18:02:22 +02:00 |
Tim Graham
|
41e02ab368
|
Clarified purpose of "Database backend API" backwards incompatible changes section.
|
2017-06-06 11:33:09 -04:00 |
Florian Apolloner
|
823d73be3e
|
Fixed #28275 -- Added more hooks to SchemaEditor._alter_field().
|
2017-06-06 11:08:40 -04:00 |
Claude Paroz
|
43b574007e
|
Fixed #28192 -- Required passing optional form field args as keyword args.
|
2017-06-03 10:49:01 -04:00 |
Mariusz Felisiak
|
516b7664dc
|
Fixed #28260 -- Allowed customizing the test tablespace initial and autoextend size on Oracle.
Thanks Tim Graham for the review.
|
2017-06-02 18:35:56 +02:00 |
François Freitag
|
edee5a8de6
|
Fixed #27639 -- Added chunk_size parameter to QuerySet.iterator().
|
2017-06-01 17:50:41 -04:00 |
Mariusz Felisiak
|
9af6c97504
|
Refs #26682 -- Added AutoField introspection on Oracle.
|
2017-06-01 19:33:48 +02:00 |
Mariusz Felisiak
|
924a89e135
|
Fixed #26682 -- Added support for Oracle identity columns.
Thanks Shai Berger and Tim Graham for reviews.
|
2017-06-01 19:33:48 +02:00 |
Ingo Klöcker
|
6bb3b2bff4
|
Refs #27777 -- Improved docs/added test for File context manager change.
|
2017-05-31 21:02:58 -04:00 |
Matthias Erll
|
eee34ef64c
|
Fixed #22550 -- Prohibited QuerySet.last()/reverse() after slicing.
|
2017-05-31 19:34:56 -04:00 |
Nick Zaccardi
|
95993a89ce
|
Fixed #28248 -- Fixed password reset tokens being valid for 1 day longer than PASSWORD_RESET_TIMEOUT_DAYS.
|
2017-05-29 09:22:22 -04:00 |
Tim Heap
|
5b6181f4d5
|
Fixed #27922 -- Added ErrorDict.get_json_data().
|
2017-05-27 09:19:42 -04:00 |
Chris Lamb
|
2f09a28558
|
Fixed #27881 -- Added diffsettings --output option.
Thanks Haris Ibrahim K. V. for writng docs.
|
2017-05-27 09:00:06 -04:00 |
Pavel Kulikov
|
af1fa5e7da
|
Fixed #27978 -- Allowed loaddata to read data from stdin.
Thanks Squareweave for the django-loaddata-stdin project from which this
is adapted.
|
2017-05-26 19:54:21 -04:00 |
Mariusz Felisiak
|
b3eb6eaf1a
|
Refs #27859 -- Added DatabaseWrapper.display_name.
Thanks Tim Graham for the review.
|
2017-05-23 09:09:35 -04:00 |
Ling-Xiao Yang
|
04ab96ec4f
|
Fixed #28015 -- Added makemessages --add-location option.
Thanks François Freitag for review.
|
2017-05-22 09:03:53 -04:00 |
François Freitag
|
98b3b14a64
|
Fixed #28203 -- Ignored connection configuration queries in assertNumQueries().
|
2017-05-18 11:48:03 -04:00 |
Danilo Bargen
|
a7975260b5
|
Fixed #28195 -- Added OSMWidget.default_zoom attribute.
|
2017-05-14 14:31:17 -04:00 |
Alexander Allakhverdiyev
|
a7c6c705e8
|
Fixed #28129 -- Allowed custom template tags to use keyword-only arguments.
|
2017-05-11 10:09:44 -04:00 |
Claude Paroz
|
d842ada305
|
Refs #27795 -- Stopped converting integer format settings to str in JS/JSON i18n views
Thanks Tim Graham for the review.
|
2017-05-08 19:32:03 +02:00 |
Josh Schneier
|
5df0ff4155
|
Fixed #28089 -- Removed requirement to implement get_short_name() and get_full_name() in AbstractBaseUser subclasses.
|
2017-05-06 17:05:42 -04:00 |
Raphael Michel
|
504e7782fe
|
Refs #22654 -- Added additional tests and amended release note.
|
2017-05-05 18:45:07 -04:00 |
Josh Schneier
|
a1b2c1d76e
|
Fixed #28137 -- Deprecated HttpRequest.xreadlines().
|
2017-04-26 19:39:22 -04:00 |
Paolo Melchiorre
|
fcb5dbfec0
|
Fixed #27996 -- Added RandomUUID function and CryptoExtension to contrib.postgres.
|
2017-04-25 20:21:36 -04:00 |
Raphael Michel
|
bde814142a
|
Fixed #22654 -- Broken decimal validation
|
2017-04-07 12:45:08 +02:00 |
Sergey Fedoseev
|
5e710cf4a5
|
Fixed #11854 -- Added Azimuth GIS function. (#8286)
|
2017-04-02 14:24:06 -04:00 |
Sergey Fedoseev
|
24023c6a8f
|
Fixed #25874 -- Made GEOSGeometry read SRID from GeoJSON input.
|
2017-04-01 15:35:30 -04:00 |
Sergey Fedoseev
|
ede4f6d48c
|
Fixed #12410 -- Added LineLocatePoint GIS function.
|
2017-04-01 15:02:09 -04:00 |
Sergey Fedoseev
|
0a13b249e2
|
Fixed #26967 -- Added MySQL support for AsGeoJSON, GeoHash, IsValid functions, and isvalid lookup.
|
2017-04-01 13:43:53 -04:00 |
Carlton Gibson
|
6b3724fa11
|
Fixed #27359 -- Made Engine.get_default() return the first DjangoTemplates engine if multiple are defined.
|
2017-03-31 17:26:42 -04:00 |
Brad Melin
|
b625907a79
|
Fixed #27834 -- Added StrIndex database function.
|
2017-03-14 19:58:56 -04:00 |
Mariusz Felisiak
|
94d8bea212
|
Fixed #24365 -- Made inspectdb translate MySQL unsigned integer columns to positive integer fields.
|
2017-03-08 10:56:00 -05:00 |
Grzegorz Tężycki
|
fede65260a
|
Fixed #26911 -- Removed NoReverseMatch silencing in RedirectView.
|
2017-03-01 15:56:39 -05:00 |