Revisions of python-djangorestframework

buildservice-autocommit accepted request 1167552 from John Vandenberg's avatar John Vandenberg (jayvdb) (revision 46)
baserev update by copy to link target
John Vandenberg's avatar John Vandenberg (jayvdb) accepted request 1167550 from John Vandenberg's avatar John Vandenberg (jayvdb) (revision 45)
- Disable pytest filterwarnings which is breaking the test suite.
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 44)
- update to 3.15.1:
  * Django 5.0 and Python 3.12 support
  * Use POST method instead of GET to perform logout in browsable API
  * Added jQuery 3.7.1 support & dropped previous version
  * Use str as default path converter
  * Partial serializer should not have required fields
  * Propagate 'default' from model field to serializer field.
  * Allow to override child.run_validation call in ListSerializer
  * Align SearchFilter behaviour to django.contrib.admin search
  * Class name added to unknown field error
  * Fix: Pagination response schemas.
  * Fix choices in ChoiceField to support IntEnum
  * Fix `SearchFilter` rendering search field with invalid value
  * Fix OpenAPI Schema yaml rendering for `timedelta`
  * Added Deprecation Warnings for CoreAPI
  * Removed usage of `field.choices` that triggered full table load
  * Permit mixed casing of string values for `BooleanField` validation
  * Fixes `BrowsableAPIRenderer` for usage with `ListSerializer`.
  * Change semantic of `OR` of two permission classes
  * Remove dependency on `pytz`
  * Make set_value a method within `Serializer`
  * Fix URLPathVersioning reverse fallback
  * Fix mapping for choice values
  * Refactor read function to use context manager for file handling
  * Fix: fallback on CursorPagination ordering if unset on the view
  * Replaced `OrderedDict` with `dict`
  * Implement `__eq__` for validators
  * Ensure CursorPagination respects nulls in the ordering field
  * Use ZoneInfo as primary source of timezone data
  * Add username search field for TokenAdmin (#8927)
buildservice-autocommit accepted request 1157631 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 43)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 1157538 from Max Lin's avatar Max Lin (mlin7442) (revision 42)
Add %{?sle15_python_module_pythons}
buildservice-autocommit accepted request 1142708 from Steve Kowalik's avatar Steve Kowalik (StevenK) (revision 41)
baserev update by copy to link target
Steve Kowalik's avatar Steve Kowalik (StevenK) committed (revision 40)
- Switch to pyproject macros.
- Drop core{api,schema} from BuildRequires/Recommends, they are no
  longer developed, and will be removed.
- Switch to psycopg (so version 3).
buildservice-autocommit accepted request 1095766 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 39)
baserev update by copy to link target
Markéta Machová's avatar Markéta Machová (mcalabkova) accepted request 1095725 from Andreas Schneider's avatar Andreas Schneider (gladiac) (revision 38)
- Use sle15_python_module_pythons
buildservice-autocommit accepted request 1061103 from John Vandenberg's avatar John Vandenberg (jayvdb) (revision 37)
baserev update by copy to link target
John Vandenberg's avatar John Vandenberg (jayvdb) accepted request 1061092 from John Vandenberg's avatar John Vandenberg (jayvdb) (revision 36)
- Skip two tests failing upstream with latest Markdown.
buildservice-autocommit accepted request 1005789 from John Vandenberg's avatar John Vandenberg (jayvdb) (revision 35)
baserev update by copy to link target
John Vandenberg's avatar John Vandenberg (jayvdb) accepted request 1005784 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 34)
- Update to 3.14.0
  * Django 2.2 is no longer supported. [#8662]
  * Django 4.1 compatibility. [#8591]
  * Don't evaluate DateTimeField.default_timezone when a custom 
    timezone is set. [#8531]
  * Make relative URLs clickable in Browseable API. [#8464]
  * Make ReturnDict support dict union operators on Python 3.9 and 
    later. [#8302]
- Drop merged patch 8530-update-tests-new-Pygments.patch
buildservice-autocommit accepted request 999146 from John Vandenberg's avatar John Vandenberg (jayvdb) (revision 33)
baserev update by copy to link target
John Vandenberg's avatar John Vandenberg (jayvdb) accepted request 999145 from John Vandenberg's avatar John Vandenberg (jayvdb) (revision 32)
- Skip two tests, TestPosgresFieldsMapping.test_array_field and
  TestViewNamesAndDescriptions.test_markdown
- Add README.md to package
- Be more precise about files included under site-packages
buildservice-autocommit accepted request 983909 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 31)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 30)
- Add 8530-update-tests-new-Pygments.patch to allow working with
  the current Pygments (gh#encode/django-rest-framework#8160).
John Vandenberg's avatar John Vandenberg (jayvdb) accepted request 944602 from John Vandenberg's avatar John Vandenberg (jayvdb) (revision 29)
- Skip Tumbleweed Python 3.6 incompatible with Django 4
John Vandenberg's avatar John Vandenberg (jayvdb) accepted request 942395 from John Vandenberg's avatar John Vandenberg (jayvdb) (revision 28)
- Re-activate tests on Leap 15.2
- Update to v3.13.1
  ...
- from v3.13
  * Django 4.0 support
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 27)
- Update to 3.12.4:
  - Properly handle ATOMIC_REQUESTS when multiple database
    configurations are used. [#7739]
  - Bypass COUNT query when LimitOffsetPagination is configured
    but pagination params are not included on the request.
    [#6098]
  - Respect allow_null=True on DecimalField. [#7718]
  - Allow title cased "Yes"/"No" values with BooleanField.
    [#7739]
  - Add PageNumberPagination.get_page_number() method for
    overriding behavior. [#7652]
  - Fixed rendering of timedelta values in OpenAPI schemas, when
    present as default, min, or max fields. [#7641]
  - Render JSONFields with indentation in browsable API forms.
    [#6243]
  - Remove unnecessary database query in admin Token views.
    [#7852]
  - Raise validation errors when bools are passed to
    PrimaryKeyRelatedField fields, instead of casting to ints.
    [#7597]
  - Don't include model properties as automatically generated
    ordering fields with OrderingFilter. [#7609]
  - Use deque instead of list for tracking throttling .history.
    [#7849]
  - Fix issue if rest_framework.authtoken.models is imported, but
    rest_framework.authtoken is not in INSTALLED_APPS. [#7571]
  - Ignore subclasses of BrowsableAPIRenderer in OpenAPI schema.
    [#7497]
  - Narrower exception catching in serilizer fields, to ensure
    that any errors in broken get_queryset() methods are not
Displaying revisions 1 - 20 of 46
openSUSE Build Service is sponsored by