mitodl / sga-lti

an LTI implementation of Staff Graded Assignments, for use with edX
BSD 3-Clause "New" or "Revised" License
2 stars 2 forks source link

Update dependency pylint-django to v0.11.1 #97

Closed renovate[bot] closed 5 months ago

renovate[bot] commented 5 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
pylint-django ==0.7.1 -> ==0.11.1 age adoption passing confidence

Release Notes

PyCQA/pylint-django (pylint-django) ### [`v0.11.1`](https://togithub.com/PyCQA/pylint-django/blob/HEAD/CHANGELOG.rst#Version-0111-25-May-2018--the-DjangoCon-Heidelberg-edition) [Compare Source](https://togithub.com/PyCQA/pylint-django/compare/0.11...0.11.1) - Enable test case for `urlpatterns` variable which was previously disabled - Disable `unused-argument` message for the `request` argument passed to view functions. Fix `#​155 `\__ - Add transformations for `model_utils` managers instead of special-casing them. Fix `#​160 `\__ ### [`v0.11`](https://togithub.com/PyCQA/pylint-django/blob/HEAD/CHANGELOG.rst#Version-2011-10-July-2019) [Compare Source](https://togithub.com/PyCQA/pylint-django/compare/0.10.1...0.11) - Use `functools.wrap` to preserve `leave_module` info (Mohit Solanki) ### [`v0.10.1`](https://togithub.com/PyCQA/pylint-django/compare/0.10.0...0.10.1) [Compare Source](https://togithub.com/PyCQA/pylint-django/compare/0.10.0...0.10.1) ### [`v0.10.0`](https://togithub.com/PyCQA/pylint-django/blob/HEAD/CHANGELOG.rst#Version-0100-10-April-2018) [Compare Source](https://togithub.com/PyCQA/pylint-django/compare/0.9.4...0.10.0) - Remove the compatibility layer for older astroid versions - Make flake8 happy. Fix `#​102 `\__ - Fix: compatibility with Python < 3.6 caused by `ModuleNotFoundError` not available on older versions of Python (Juan Rial) - Show README and CHANGELOG on PyPI. Fix `#​122 `\__ - Fix explicit unicode check with `python_2_unicode_compatible` base models (Federico Bond) - Suppress `not-an-iterable` message for 'objects'. Fix `#​117 `\__ - Teach pylint_django that `objects.all()` is subscriptable. Fix `#​144 `\__ - Suppress `invalid-name` for `wsgi.application`. Fix `#​77 `\__ - Add test for `WSGIRequest.context`. Closes `#​78 `\__ - Register transforms for `FileField`. Fix `#​60 `\__ - New checker `pylint_django.checkers.db_performance`. Enables checking of migrations and reports when there's an `AddField` operation with a default value which may slow down applying migrations on large tables. This may also lead to production tables being locked while migrations are being applied. Fix `#​118 `\__ - Suppress `no-member` for `factory.SubFactory` objects. Useful when model factories use `factory.SubFactory()` for foreign key relations. ### [`v0.9.4`](https://togithub.com/PyCQA/pylint-django/blob/HEAD/CHANGELOG.rst#Version-094-12-March-2018) [Compare Source](https://togithub.com/PyCQA/pylint-django/compare/0.9.3...0.9.4) - Add an optional dependency on Django - Fix the `DjangoInstalledChecker` so it can actually warn when Django isn't available - Fix `#​136 `\__ by adding automated build and sanity test scripts ### [`v0.9.3`](https://togithub.com/PyCQA/pylint-django/blob/HEAD/CHANGELOG.rst#Version-093-removed-from-PyPI) [Compare Source](https://togithub.com/PyCQA/pylint-django/compare/0.9.1...0.9.3) - Fix `#​133 `\__ and `#​134 `\__ by including package data when building wheel and tar.gz packages for PyPI (Joseph Herlant) ### [`v0.9.1`](https://togithub.com/PyCQA/pylint-django/blob/HEAD/CHANGELOG.rst#Version-091-26-Feb-2018) [Compare Source](https://togithub.com/PyCQA/pylint-django/compare/0.9.0...0.9.1) - Fix `#​123 `\__ - Update links after the move to PyCQA (Mr. Senko) - Add test for Meta class from django_tables2 (Mr. Senko) - Fix flake8 complaints (Peter Bittner) - Add missing .txt and .rc test files to MANIFEST.in (Joseph Herlant) ### [`v0.9.0`](https://togithub.com/PyCQA/pylint-django/compare/0.8.1...0.9.0) [Compare Source](https://togithub.com/PyCQA/pylint-django/compare/0.8.1...0.9.0) ### [`v0.8.1`](https://togithub.com/pylint-dev/pylint-django/releases/tag/0.8.1): Version 0.8.1 (14 Dec 2018) [Compare Source](https://togithub.com/PyCQA/pylint-django/compare/0.8.0...0.8.1) - Backported fix for [#​120](https://togithub.com/PyCQA/pylint-django/issues/120). **WARNING:** this release has not been tested via our regular CI process because the 0.8.x branch is missing lots of internal infrastructure and it will not be generally supported! This version is provided as a last-resort measure for users who can't upgrade to the 2.x series! Use at your own risk! ### [`v0.8.0`](https://togithub.com/PyCQA/pylint-django/blob/HEAD/CHANGELOG.rst#Version-080-20-Jan-2018) [Compare Source](https://togithub.com/PyCQA/pylint-django/compare/0.7.2...0.8.0) - This is the last version to support Python 2. Issues a deprecation warning! - `#​109 `**, adding 'urlpatterns', 'register', 'app_name' to good names. Obsoletes `#​111 `**, fixes `#​108 `\__ (Vinay Pai) - Add 'handler500' to good names (Mr. Senko) - `#​103 `\__: Support factory_boy's DjangoModelFactory Meta class (Konstantinos Koukopoulos) - `#​100 `**: Fix E1101:Instance of '**proxy**\ ' has no 'format' member' when using .format() on a ugettext_lazy translation. Fixes `#​80 `** (canarduck) - `#​99 `**: Add tests and transforms for DurationField, fixes `#​95 `** (James M. Allen) - `#​92 `\__: Add json field to WSGIRequest proxy (sjk4sc) - `#​84 `\__: Add support for django.contrib.postgres.fields and UUIDField (Villiers Strauss) - Stop testing with older Django versions. Currently testing with Django 1.11.x and 2.0 - Stop testing on Python 2, no functional changes in the source code though - Update tests and require latest version of pylint (>=1.8), fixes `#​53 `**, `#​97 `** - `#​81 `\__ Fix 'duplicate-except' false negative for except blocks which catch the `DoesNotExist` exception. ### [`v0.7.2`](https://togithub.com/PyCQA/pylint-django/blob/HEAD/CHANGELOG.rst#Version-072) [Compare Source](https://togithub.com/PyCQA/pylint-django/compare/0.7.1...0.7.2) - `#​76 `\__ Better handling of mongoengine querysetmanager - `#​73 `\__ `#​72 `\__ Make package zip safe to help fix some path problems - `#​68 `\__ Suppressed invalid constant warning for "app_name" in urls.py - `#​67 `\__ Fix view.args and view.kwargs - `#​66 `\__ accessing \_meta no longer causes a protected-access warning as this is a public API as of Django 1.8 - `#​65 `\__ Add support of mongoengine module. - `#​59 `\__ Silence old-style-class for widget Meta

Configuration

📅 Schedule: Branch creation - "every weekend" in timezone US/Eastern, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.