- 17 May, 2019 3 kayıt (commit)
-
-
Batuhan Taşkaya yazdı
getfullargspec() doesn't work with wrapped functions.
-
Johannes Hoppe yazdı
-
Claude Paroz yazdı
Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
-
- 16 May, 2019 4 kayıt (commit)
-
-
Iain Watts yazdı
-
Curtis Maloney yazdı
-
Vyacheslav Ver yazdı
-
Jon Dufresne yazdı
-
- 15 May, 2019 4 kayıt (commit)
-
-
Jon Dufresne yazdı
-
Ahisahar Pretel yazdı
-
Ally Weir yazdı
-
Daniel Hahler yazdı
-
- 14 May, 2019 1 kayıt (commit)
-
-
Florian Apolloner yazdı
This fixes an issue with postgres_tests.test_integration.PostgresIntegrationTests which would not find Django in a CI run.
-
- 13 May, 2019 3 kayıt (commit)
-
-
Jonatas C. Damasceno yazdı
-
Tobias Bengfort yazdı
-
Rob yazdı
-
- 12 May, 2019 1 kayıt (commit)
-
-
Amir Hadi yazdı
Co-authored-by: Tim Graham <timograham@gmail.com> Co-authored-by: Patryk Zawadzki <patrys@room-303.com> Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
-
- 10 May, 2019 1 kayıt (commit)
-
-
Jon Dufresne yazdı
Support for the following tags was added: area, embed, param, track, and wbr. The full list of self closing tags is documented at: https://html.spec.whatwg.org/#void-elements
-
- 09 May, 2019 5 kayıt (commit)
-
-
Jon Dufresne yazdı
-
Jon Dufresne yazdı
-
luzpaz yazdı
-
Troon yazdı
-
Jon Dufresne yazdı
-
- 08 May, 2019 8 kayıt (commit)
-
-
Przemysław Suliga yazdı
time.monotonic() available from Python 3.3: - Nicely communicates a narrow intent of "get a local system monotonic clock time" instead of possible "get a not necessarily accurate Unix time stamp because it needs to be communicated to outside of this process/machine" when time.time() is used. - Its result isn't affected by the system clock updates. There are two classes of time.time() uses changed to time.monotonic() by this change: - measuring time taken to run some code. - setting and checking a "close_at" threshold for for persistent db connections (django/db/backends/base/base.py).
-
Mariusz Felisiak yazdı
-
Hasan Ramezani yazdı
placeholder is required for "select" with "required" attribute.
-
Mariusz Felisiak yazdı
-
Jon Dufresne yazdı
Starting with wheel 0.32.0 (2018-09-29), the "license-file" option is deprecated. LICENSE is now included automatically.
-
Carlton Gibson yazdı
-
Carlton Gibson yazdı
-
Jon Dufresne yazdı
The function was undocumented and only required for compatibility with Python 2. Code should use Python's html.unescape() that was added in Python 3.4.
-
- 07 May, 2019 9 kayıt (commit)
-
-
Rob yazdı
Using annotated FilteredRelations raised a FieldError when coupled with exclude(). This is due to not passing filtered relation fields to the subquery created in split_exclude(). We fixed this issue by passing the filtered relation data to the newly created subquery. Secondly, in the case where an INNER JOIN is used in the excluded subquery, the ORM would trim the filtered relation INNER JOIN in attempt to simplify the query. This will also remove the ON clause filters generated by the FilteredRelation. We added logic to not trim the INNER JOIN if it is from FilteredRelation.
-
sanchjat yazdı
-
Chris Adkins yazdı
-
Daniel Musketa yazdı
-
Rob Golding-Day yazdı
-
Tobias Kunze yazdı
Refs #26678 -- Added tests for using the field the relation points to with RelatedManager.add()/remove()/set().
-
Tobias Kunze yazdı
Fixed #26678 -- Doc'd that RelatedManager.add()/remove()/set() accepts the field the relation points to.
-
Ben Muschol yazdı
Fixes bug on browsers which do support the required attribute but not the :valid pseudo-selector
-
Daniel Hahler yazdı
It was removed in in 728548e4.
-
- 06 May, 2019 1 kayıt (commit)
-
-
Tobias Kunze yazdı
-