Skip to content
Permalink
main
Loading

Commits on Nov 18, 2021

  1. Added Malay language.

    jhisham authored and felixxm committed Nov 18, 2021
  2. Refs #19721 -- Moved ModelAdmin.list_filter docs into a separate file.

    Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
    ssb10 and carltongibson committed Nov 18, 2021
  3. Configured Read The Docs to build all formats.

    `all` acts as an alias for all formats ([docs](https://docs.readthedocs.io/en/stable/config-file/v2.html#formats)). Whilst there are only three formats right now, this would auto expand to other formats in the future, which seems desirable?
    adamchainz authored and carltongibson committed Nov 18, 2021

Commits on Nov 16, 2021

  1. Fixed #28357 -- Fixed ModelAdmin.prepopulated_fields on newly added s…

    …tacked inline.
    
    Thanks Jakob Köhler for the initial patch.
    Shubh1815 authored and felixxm committed Nov 16, 2021

Commits on Nov 15, 2021

  1. Fixed #33287 -- Made GeoJSON serializer use json.loads() instead of e…

    …val().
    
    Thanks David Wyde for the report.
    Soj447 authored and felixxm committed Nov 15, 2021
  2. Fixed #33278 -- Improved error for connection/query attempts against …

    …disallowed databases in tests.
    SwastikTripathi authored and felixxm committed Nov 15, 2021
  3. Refs #33288 -- Removed SQLite's DatabaseIntrospection._get_foreign_ke…

    …y_constraints().
    
    The get_relations() method returns the exact same data in a more generic
    format.
    charettes authored and felixxm committed Nov 15, 2021
  4. Fixed #33288 -- Made SQLite introspection use information schema for …

    …relations.
    
    Previous solution was using brittle and complex parsing rules to
    extract them from the SQL used to define the tables.
    
    Removed a now unnecessary unit test that ensured the removed parsing
    logic accounted for optional spacing.
    charettes authored and felixxm committed Nov 15, 2021
  5. Refs #33288 -- Made SQLite introspection raise DatabaseError on nonex…

    …istent tables.
    
    All the other backends behave this way and we had to make adjustments
    to our test suite to account for this discrepancy.
    
    This also allows SQLite's get_relations() not to raise on a nonexistent
    table while making sure the InspectDBTestCase.test_introspection_errors
    test which ensures an error during introspection is surfaced in
    generated models files still passes.
    charettes authored and felixxm committed Nov 15, 2021

Commits on Nov 12, 2021

  1. Fixed #33161 -- Enabled durability check for nested atomic blocks in …

    …TestCase.
    
    Co-Authored-By: Adam Johnson <me@adamj.eu>
    2 people authored and felixxm committed Nov 12, 2021
  2. Fixed #33279 -- Fixed handling time zones with "-" sign in names.

    Thanks yakimka for the report.
    
    Regression in fde9b7d.
    cansarigol authored and felixxm committed Nov 12, 2021
  3. Moved RequestSite import to the toplevel.

    claudep authored and felixxm committed Nov 12, 2021

Commits on Nov 11, 2021

  1. Fixed #33269 -- Made AnonymousUser/PermissionsMixin.has_perms() raise…

    … ValueError on string or non-iterable perm_list.
    lieryan authored and felixxm committed Nov 11, 2021
  2. Fixed #6106 -- Prevented makemessages from changing .po files when up…

    … to date.
    
    Co-authored-by: Daniyal Abbasi <abbasi.daniyal98@gmail.com>
    2 people authored and felixxm committed Nov 11, 2021

Commits on Nov 10, 2021

  1. Removed DatabaseIntrospection.get_key_columns().

    Thanks Simon Charette for the report.
    felixxm committed Nov 10, 2021
  2. Fixed DatabaseIntrospection.get_relations() docstring.

    The foreign keys are "in" the given table, not "to" it.
    timgraham committed Nov 10, 2021

Commits on Nov 9, 2021

  1. Refs #33263 -- Added warning to BaseDeleteView when delete() method i…

    …s overridden.
    
    Follow up to 3a45fea.
    felixxm committed Nov 9, 2021
  2. Refs #16063 -- Added tests for searching against multiple related fie…

    …lds in admin changelist.
    jacobtylerwalls authored and felixxm committed Nov 9, 2021

Commits on Nov 5, 2021

  1. Fixed #33253 -- Reverted "Fixed #32319 -- Added ES module support to …

    …ManifestStaticFilesStorage."
    
    This reverts commit 91e2183.
    
    `export` and `import` directives have several syntax variants and not
    all of them were properly covered.
    
    Thanks Hervé Le Roy for the report.
    felixxm committed Nov 5, 2021
  2. Fixed #33235 -- Removed "for = ..." from MultiWidget's <label>.

    This improves accessibility for screen reader users.
    smithdc1 authored and felixxm committed Nov 5, 2021

Commits on Nov 4, 2021

  1. Fixed #33237 -- Fixed detecting source maps in ManifestStaticFilesSto…

    …rage for multiline files.
    
    Switched regex to multiline mode in order to match per-line, rather
    than against the whole file.
    
    Thanks to Joseph Abrahams for the report.
    
    Regression in 781b442.
    carltongibson authored and felixxm committed Nov 4, 2021
  2. Fixed #27147 -- Allowed specifying bounds of tuple inputs for non-dis…

    …crete range fields.
    gmcrocetti authored and felixxm committed Nov 4, 2021
  3. Refs #29738 -- Added test for serializing psycopg2's NumericRange wit…

    …h DecimalRangeField in migrations.
    gmcrocetti authored and felixxm committed Nov 4, 2021
Older