From b2892e8aceab33b2f22ef6d213a1c9e2d3eca396 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Sep 2022 17:01:57 +0000 Subject: [PATCH 1/9] Bump pytest from 7.1.2 to 7.1.3 Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.1.2 to 7.1.3. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/7.1.2...7.1.3) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index f21216eb..59c2605e 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -44,7 +44,7 @@ pyflakes==2.4.0 # via flake8 pyparsing==2.4.7 # via packaging -pytest==7.1.2 +pytest==7.1.3 # via -r requirements-dev.in six==1.15.0 # via From 915fdd11779e9690c1e6b9cebb7e8e2b532fe8ca Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 5 Sep 2022 23:46:47 +0000 Subject: [PATCH 2/9] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/psf/black: 22.6.0 → 22.8.0](https://github.com/psf/black/compare/22.6.0...22.8.0) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 085af262..441c8729 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,7 +4,7 @@ repos: hooks: - id: isort - repo: https://github.com/psf/black - rev: 22.6.0 + rev: 22.8.0 hooks: - id: black - repo: https://github.com/pycqa/flake8 From 156587f39cb40a025457f4db0e3d81a1778bb37e Mon Sep 17 00:00:00 2001 From: Mandeep Gill Date: Sat, 10 Sep 2022 14:45:38 +0100 Subject: [PATCH 3/9] Fix param name of autodiscovery -> autodiscover The docs say to set `autodiscovery: False` in `settings.COMPONENTS` to disable autodiscovery, but in the `app_settings` code the field is called `autodiscover`. Cheers! --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 70342743..68321ade 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Read on to learn about the details! # Release notes -*Version 0.22* starts autoimporting all files inside components subdirectores, to simplify setup. An existing project might start to get AlreadyRegistered-errors because of this. To solve this, either remove your custom loading of components, or set "autodiscovery": False in settings.COMPONENTS. +*Version 0.22* starts autoimporting all files inside components subdirectores, to simplify setup. An existing project might start to get AlreadyRegistered-errors because of this. To solve this, either remove your custom loading of components, or set "autodiscover": False in settings.COMPONENTS. *Version 0.17* renames `Component.context` and `Component.template` to `get_context_data` and `get_template_name`. The old methods still work, but emit a deprecation warning. This change was done to sync naming with Django's class based views, and make using django-components more familiar to Django users. `Component.context` and `Component.template` will be removed when version 1.0 is released. @@ -396,7 +396,7 @@ If you specify all the component locations with the setting above and have a lot ```python COMPONENTS = { - "autodiscovery": False, + "autodiscover": False, } ``` From e8a5a4aee341838caaca077b91dea105830759d2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Sep 2022 14:12:57 +0000 Subject: [PATCH 4/9] docs(contributor): contrib-readme-action has updated readme --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 68321ade..737b8701 100644 --- a/README.md +++ b/README.md @@ -170,13 +170,21 @@ Read on to find out how to build your first component! Real-Gecko + + + mands +
+ Mandeep Gill +
+ telenieko
Marc Fargas
- + + spollard From 6e02b3e4649917948dfa07405239594da3597401 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Oct 2022 17:01:32 +0000 Subject: [PATCH 5/9] Bump django from 4.0.7 to 4.0.8 Bumps [django](https://github.com/django/django) from 4.0.7 to 4.0.8. - [Release notes](https://github.com/django/django/releases) - [Commits](https://github.com/django/django/compare/4.0.7...4.0.8) --- updated-dependencies: - dependency-name: django dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 59c2605e..2729321d 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -12,7 +12,7 @@ attrs==20.3.0 # via pytest distlib==0.3.1 # via virtualenv -django==4.0.7 +django==4.0.8 # via -r requirements-dev.in filelock==3.0.12 # via From e7eb0407f71ac20000c6680c3cb6e994a28421a9 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 11 Oct 2022 00:46:43 +0000 Subject: [PATCH 6/9] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/psf/black: 22.8.0 → 22.10.0](https://github.com/psf/black/compare/22.8.0...22.10.0) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 441c8729..b763c9dc 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,7 +4,7 @@ repos: hooks: - id: isort - repo: https://github.com/psf/black - rev: 22.8.0 + rev: 22.10.0 hooks: - id: black - repo: https://github.com/pycqa/flake8 From e3153dd196ba9a83a7699cc6b19f00266f75143a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Oct 2022 17:01:45 +0000 Subject: [PATCH 7/9] Bump pytest from 7.1.3 to 7.2.0 Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.1.3 to 7.2.0. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/7.1.3...7.2.0) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements-dev.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 2729321d..e1958d46 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -14,6 +14,8 @@ distlib==0.3.1 # via virtualenv django==4.0.8 # via -r requirements-dev.in +exceptiongroup==1.0.0rc9 + # via pytest filelock==3.0.12 # via # tox @@ -35,16 +37,14 @@ pluggy==0.13.1 # pytest # tox py==1.10.0 - # via - # pytest - # tox + # via tox pycodestyle==2.8.0 # via flake8 pyflakes==2.4.0 # via flake8 pyparsing==2.4.7 # via packaging -pytest==7.1.3 +pytest==7.2.0 # via -r requirements-dev.in six==1.15.0 # via From 4bd19800b963c7f5bd29e069af33c77ec30a0f84 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 4 Nov 2022 17:01:04 +0000 Subject: [PATCH 8/9] Bump tox from 3.25.1 to 3.27.0 Bumps [tox](https://github.com/tox-dev/tox) from 3.25.1 to 3.27.0. - [Release notes](https://github.com/tox-dev/tox/releases) - [Changelog](https://github.com/tox-dev/tox/blob/master/docs/changelog.rst) - [Commits](https://github.com/tox-dev/tox/compare/3.25.1...3.27.0) --- updated-dependencies: - dependency-name: tox dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements-dev.txt | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index e1958d46..a493fb1d 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -14,8 +14,6 @@ distlib==0.3.1 # via virtualenv django==4.0.8 # via -r requirements-dev.in -exceptiongroup==1.0.0rc9 - # via pytest filelock==3.0.12 # via # tox @@ -52,11 +50,7 @@ six==1.15.0 # virtualenv sqlparse==0.4.2 # via django -toml==0.10.2 - # via tox -tomli==2.0.0 - # via pytest -tox==3.25.1 +tox==3.27.0 # via -r requirements-dev.in virtualenv==20.4.3 # via tox From 9a31e9fc15046267fc8a3c9492c9826e427a9beb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Nov 2022 17:01:04 +0000 Subject: [PATCH 9/9] Bump tox from 3.27.0 to 3.27.1 Bumps [tox](https://github.com/tox-dev/tox) from 3.27.0 to 3.27.1. - [Release notes](https://github.com/tox-dev/tox/releases) - [Changelog](https://github.com/tox-dev/tox/blob/master/docs/changelog.rst) - [Commits](https://github.com/tox-dev/tox/compare/3.27.0...3.27.1) --- updated-dependencies: - dependency-name: tox dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index a493fb1d..ba7b48e8 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -50,7 +50,7 @@ six==1.15.0 # virtualenv sqlparse==0.4.2 # via django -tox==3.27.0 +tox==3.27.1 # via -r requirements-dev.in virtualenv==20.4.3 # via tox