Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Bump the development-dependencies group across 1 directory with 14 updates #65

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 17, 2024

Bumps the development-dependencies group with 14 updates in the /config/requirements directory:

Package From To
django-debug-toolbar 4.4.2 4.4.6
django-stubs 5.0.2 5.0.4
django-stubs-ext 5.0.2 5.0.4
django-test-plus 2.2.3 2.2.4
ipython 8.25.0 8.26.0
model-bakery 1.18.1 1.19.2
mypy 1.10.0 1.11.1
prompt-toolkit 3.0.46 3.0.47
pure-eval 0.2.2 0.2.3
pyyaml 6.0.1 6.0.2
regex 2023.12.25 2024.7.24
ruff 0.4.8 0.6.1
tqdm 4.66.4 4.66.5
types-pyyaml 6.0.12.20240311 6.0.12.20240808

Updates django-debug-toolbar from 4.4.2 to 4.4.6

Release notes

Sourced from django-debug-toolbar's releases.

4.4.6

What's Changed

Full Changelog: django-commons/django-debug-toolbar@4.4.5...4.4.6

4.4.5

What's Changed

Full Changelog: django-commons/django-debug-toolbar@4.4.4...4.4.5

4.4.4

What's Changed

New Contributors

Full Changelog: django-commons/django-debug-toolbar@4.4.3...4.4.4

4.4.3

What's Changed

New Contributors

Full Changelog: django-commons/django-debug-toolbar@4.4.2...4.4.3

Changelog

Sourced from django-debug-toolbar's changelog.

4.4.6 (2024-07-10)

  • Changed ordering (and grammatical number) of panels and their titles in documentation to match actual panel ordering and titles.
  • Skipped processing the alerts panel when response isn't a HTML response.

4.4.5 (2024-07-05)

  • Avoided crashing when the alerts panel was skipped.
  • Removed the inadvertently added hard dependency on Jinja2.

4.4.4 (2024-07-05)

  • Added check for StreamingHttpResponse in alerts panel.
  • Instrument the Django Jinja2 template backend. This only instruments the immediate template that's rendered. It will not provide stats on any parent templates.

4.4.3 (2024-07-04)

  • Added alerts panel with warning when form is using file fields without proper encoding type.
  • Fixed overriding font-family for both light and dark themes.
  • Restored compatibility with iptools.IpRangeList.
  • Limit E001 check to likely error cases when the SHOW_TOOLBAR_CALLBACK has changed, but the toolbar's URL paths aren't installed.
  • Introduce helper function debug_toolbar_urls to simplify installation.
  • Moved "1rem" height/width for SVGs to CSS properties.
Commits
  • 8f4fa8e Version 4.4.6
  • 982a127 Alerts panel: Only process HTML responses
  • 9bcd6ca [pre-commit.ci] pre-commit autoupdate
  • 699c1d9 Fixed order and grammatical number of panels in documentation (#1956)
  • dfad5db Close #1509: Revert the infinite recursion fix, Django has changed the behavi...
  • 7acad6b django-debug-toolbar 4.4.5
  • 944120c Only import the jinja2 instrumentation when jinja2 itself is importable (#1954)
  • a591d86 Fix #1951: Do not crash if the 'alerts' key doesn't exist (#1953)
  • 57ada8e Version 4.4.4
  • 9834e7e Ignore check for jinja2's base.html template in integration test
  • Additional commits viewable in compare view

Updates django-stubs from 5.0.2 to 5.0.4

Commits

Updates django-stubs-ext from 5.0.2 to 5.0.4

Commits

Updates django-test-plus from 2.2.3 to 2.2.4

Changelog

Sourced from django-test-plus's changelog.

Version 2.2.4 - June 24th, 2024

  • Fix bug with APITest case
Commits

Updates ipython from 8.25.0 to 8.26.0

Commits

Updates model-bakery from 1.18.1 to 1.19.2

Release notes

Sourced from model-bakery's releases.

1.19.2

What's Changed

New Contributors

Full Changelog: model-bakers/model_bakery@1.19.1...1.19.2

1.19.1

What's Changed

New Contributors

Full Changelog: model-bakers/model_bakery@1.19.0...1.19.1

1.19.0

What's Changed

Full Changelog: model-bakers/model_bakery@1.18.3...1.19.0

1.18.3

What's Changed

Full Changelog: model-bakers/model_bakery@1.18.2...1.18.3

1.18.2

What's Changed

New Contributors

Full Changelog: model-bakers/model_bakery@1.18.1...1.18.2

Changelog

Sourced from model-bakery's changelog.

1.19.2

Added

  • docs: Add Django settings example for custom field generators

Changed

  • Align GFK and content type fields generation
  • Allow prepare() to be used with GFK

1.19.1

Changed

  • Handle bulk creation when using reverse related name

1.19.0

Added

  • Add Django 5.1 support

1.18.3

Changed

  • Fix support of GenericForeignKey fields in combination with _fill_optional

1.18.2

Changed

  • Fix make_recipe to work with _quantity (#28)
Commits

Updates mypy from 1.10.0 to 1.11.1

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next release

Mypy 1.11

We’ve just uploaded mypy 1.11 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features, performance improvements and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Support Python 3.12 Syntax for Generics (PEP 695)

Mypy now supports the new type parameter syntax introduced in Python 3.12 (PEP 695). This feature is still experimental and must be enabled with the --enable-incomplete-feature=NewGenericSyntax flag, or with enable_incomplete_feature = NewGenericSyntax in the mypy configuration file. We plan to enable this by default in the next mypy feature release.

This example demonstrates the new syntax:

# Generic function
def f[T](https://github.com/python/mypy/blob/master/x: T) -> T: ...
reveal_type(f(1))  # Revealed type is 'int'
Generic class
class C[T]:
def init(self, x: T) -> None:
self.x = x
c = C('a')
reveal_type(c.x)  # Revealed type is 'str'
Type alias
type A[T] = C[list[T]]

This feature was contributed by Jukka Lehtosalo.

Support for functools.partial

Mypy now type checks uses of functools.partial. Previously mypy would accept arbitrary arguments.

This example will now produce an error:

from functools import partial
</tr></table> 

... (truncated)

Commits

Updates prompt-toolkit from 3.0.46 to 3.0.47

Release notes

Sourced from prompt-toolkit's releases.

3.0.47

New features:

  • Allow passing exception classes for KeyboardInterrupt and EOFError in PromptSession.

Fixes:

  • Compute padding parameters for Box widget lazily.
Changelog

Sourced from prompt-toolkit's changelog.

3.0.47: 2024-06-10

New features:

  • Allow passing exception classes for KeyboardInterrupt and EOFError in PromptSession.

Fixes:

  • Compute padding parameters for Box widget lazily.
Commits
  • 6695411 Release 3.0.47
  • 67e644b Small simplification in Screen code.
  • 8889675 fix(Examples): address a typo in one of the examples
  • 15f3aec Allow passing exception classes for KeyboardInterrupt and EOFError in PromptS...
  • a04c37d Compute padding parameters for Box widget lazily.
  • See full diff in compare view

Updates pure-eval from 0.2.2 to 0.2.3

Commits
  • b02b404 fix warning in test_cannot_subscript
  • d13f0ed add version to all
  • 581eaa3 Merge pull request #20 from CNSeniorious000/master
  • 449b394 test 3.13
  • ae379b4 Merge pull request #18 from hroncok/python3.13b2
  • cc1076c Specify exports in __all__ to prevent pyright errors
  • 89645cf Explicitly remove the ctx attribute in copy_ast_without_context
  • c1dd5b3 Merge pull request #17 from frenzymadness/py313b1
  • 42e8a1f Fix compatibility of check_copy_ast_without_context with Py 3.13b1
  • 3d1564d Check for delete to detect data descriptors, as in https://github.com/pyt...
  • Additional commits viewable in compare view

Updates pyyaml from 6.0.1 to 6.0.2

Release notes

Sourced from pyyaml's releases.

6.0.2

What's Changed

  • Support for Cython 3.x and Python 3.13.

Full Changelog: yaml/pyyaml@6.0.1...6.0.2

6.0.2rc1

  • Support for extension build with Cython 3.x
  • Support for Python 3.13
  • Added PyPI wheels for musllinux on aarch64
Changelog

Sourced from pyyaml's changelog.

6.0.2 (2024-08-06)

Commits

Updates regex from 2023.12.25 to 2024.7.24

Changelog

Sourced from regex's changelog.

Version: 2024.7.24

Git issue 539: Bug: Partial matching fails on a simple example

Version: 2024.6.22

Git issue 535: Regex fails Unicode 15.1 GraphemeBreakTest due to missing new GB9c rule implementation

Version: 2024.5.15

Git issue 530: hangs with fuzzy and optionals

It's not hanging, it'll finish eventually. It's just an example of catastrophic backtracking.

The error printed when Ctrl+C is pressed does show a bug, though, which is now fixed.

Version: 2024.5.10

Updated for Python 3.13.

<time.h> now needs to be included explicitly because Python.h no longer includes it.

Version: 2024.4.28

Git issue 527: `VERBOSE`/`X` flag breaks `\N` escapes

Version: 2024.4.16

Git issue 525: segfault when fuzzy matching empty list

Version: 2023.12.25

Cannot get release notification action in main.yml to work. Commenting it out for now.

Version: 2023.12.24

Fixed invalid main.yml.

Version: 2023.12.23

The escape function no longer escapes \x00. It's not necessary.

Inline flags can now be turned off and apply to what follows.

Added \R to match line endings.

Version: 2023.10.3

Updated to Unicode 15.1.0.

... (truncated)

Commits
  • e8a8d28 Git issue 539: Bug: Partial matching fails on a simple example
  • 6d086ff Git issue 535: Regex fails Unicode 15.1 GraphemeBreakTest due to missing new ...
  • 8eabb42 Git issue 530: hangs with fuzzy and optionals
  • be139ff Updated for Python 3.13.
  • 2e3272b Git issue 527: VERBOSE/X flag breaks \N escapes
  • 9c950f2 Updated changelog.
  • 5d65c8a Git issue 525: segfault when fuzzy matching empty list
  • 4f2ed52 Cannot get release notification action in main.yml to work. Commenting it out...
  • See full diff in compare view

Updates ruff from 0.4.8 to 0.6.1

Release notes

Sourced from ruff's releases.

0.6.1

Release Notes

This is a hotfix release to address an issue with ruff-pre-commit. In v0.6, Ruff changed its behavior to lint and format Jupyter notebooks by default; however, due to an oversight, these files were still excluded by default if Ruff was run via pre-commit, leading to inconsistent behavior. This has now been fixed.

Preview features

  • [fastapi] Implement fast-api-unused-path-parameter (FAST003) (#12638)

Rule changes

  • [pylint] Rename too-many-positional to too-many-positional-arguments (R0917) (#12905)

Server

  • Fix crash when applying "fix-all" code-action to notebook cells (#12929)

Other changes

  • [flake8-naming]: Respect import conventions (N817) (#12922)

Contributors

Install ruff 0.6.1

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/ruff/releases/download/0.6.1/ruff-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -c "irm https://github.com/astral-sh/ruff/releases/download/0.6.1/ruff-installer.ps1 | iex"

Download ruff 0.6.1

File Platform Checksum
ruff-aarch64-apple-darwin.tar.gz Apple Silicon macOS checksum
ruff-x86_64-apple-darwin.tar.gz Intel macOS checksum

... (truncated)

Changelog

Sourced from ruff's changelog.

0.6.1

This is a hotfix release to address an issue with ruff-pre-commit. In v0.6, Ruff changed its behavior to lint and format Jupyter notebooks by default; however, due to an oversight, these files were still excluded by default if Ruff was run via pre-commit, leading to inconsistent behavior. This has now been fixed.

Preview features

  • [fastapi] Implement fast-api-unused-path-parameter (FAST003) (#12638)

Rule changes

  • [pylint] Rename too-many-positional to too-many-positional-arguments (R0917) (#12905)

Server

  • Fix crash when applying "fix-all" code-action to notebook cells (#12929)

Other changes

  • [flake8-naming]: Respect import conventions (N817) (#12922)

0.6.0

Check out the blog post for a migration guide and overview of the changes!

Breaking changes

See also, the "Remapped rules" section which may result in disabled rules.

  • Lint and format Jupyter Notebook by default (#12878).
  • Detect imports in src layouts by default for isort rules (#12848)
  • The pytest rules PT001 and PT023 now default to omitting the decorator parentheses when there are no arguments (#12838).

Deprecations

The following rules are now deprecated:

Remapped rules

The following rules have been remapped to new rule codes:

... (truncated)

Commits

Updates tqdm from 4.66.4 to 4.66.5

Release notes

Sourced from tqdm's releases.

tqdm v4.66.5 stable

Commits
  • 951a2ba Merge pull request #1595 from hroncok/py3.13-await-aclose
  • 2fbad6a Avoid Python 3.13+ RuntimeWarning: coroutine method 'aclose' of 'acount' was ...
  • 0254345 Merge pull request #1594 from mgorny/py313-docstring
  • 43230f6 slight lint
  • 5ba6595 cli: Fix docstring processing with Python 3.13+
  • 448946a Merge pull request #1602 from tqdm/devel
  • 46cd395 add py3.12 support
  • d8ac656 ncols: support FreeBSD
  • 4f66276 bump deps & linters
  • 54796cc docs: bump versions
  • See full diff in compare view

Updates types-pyyaml from 6.0.12.20240311 to 6.0.12.20240808

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

… updates

Bumps the development-dependencies group with 14 updates in the /config/requirements directory:

| Package | From | To |
| --- | --- | --- |
| [django-debug-toolbar](https://github.com/jazzband/django-debug-toolbar) | `4.4.2` | `4.4.6` |
| [django-stubs](https://github.com/typeddjango/django-stubs) | `5.0.2` | `5.0.4` |
| [django-stubs-ext](https://github.com/typeddjango/django-stubs) | `5.0.2` | `5.0.4` |
| [django-test-plus](https://github.com/revsys/django-test-plus) | `2.2.3` | `2.2.4` |
| [ipython](https://github.com/ipython/ipython) | `8.25.0` | `8.26.0` |
| [model-bakery](https://github.com/model-bakers/model_bakery) | `1.18.1` | `1.19.2` |
| [mypy](https://github.com/python/mypy) | `1.10.0` | `1.11.1` |
| [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit) | `3.0.46` | `3.0.47` |
| [pure-eval](https://github.com/alexmojaki/pure_eval) | `0.2.2` | `0.2.3` |
| [pyyaml](https://github.com/yaml/pyyaml) | `6.0.1` | `6.0.2` |
| [regex](https://github.com/mrabarnett/mrab-regex) | `2023.12.25` | `2024.7.24` |
| [ruff](https://github.com/astral-sh/ruff) | `0.4.8` | `0.6.1` |
| [tqdm](https://github.com/tqdm/tqdm) | `4.66.4` | `4.66.5` |
| [types-pyyaml](https://github.com/python/typeshed) | `6.0.12.20240311` | `6.0.12.20240808` |



Updates `django-debug-toolbar` from 4.4.2 to 4.4.6
- [Release notes](https://github.com/jazzband/django-debug-toolbar/releases)
- [Changelog](https://github.com/jazzband/django-debug-toolbar/blob/main/docs/changes.rst)
- [Commits](django-commons/django-debug-toolbar@4.4.2...4.4.6)

Updates `django-stubs` from 5.0.2 to 5.0.4
- [Release notes](https://github.com/typeddjango/django-stubs/releases)
- [Commits](typeddjango/django-stubs@5.0.2...5.0.4)

Updates `django-stubs-ext` from 5.0.2 to 5.0.4
- [Release notes](https://github.com/typeddjango/django-stubs/releases)
- [Commits](typeddjango/django-stubs@5.0.2...5.0.4)

Updates `django-test-plus` from 2.2.3 to 2.2.4
- [Changelog](https://github.com/revsys/django-test-plus/blob/main/CHANGELOG.md)
- [Commits](https://github.com/revsys/django-test-plus/commits)

Updates `ipython` from 8.25.0 to 8.26.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@8.25.0...8.26.0)

Updates `model-bakery` from 1.18.1 to 1.19.2
- [Release notes](https://github.com/model-bakers/model_bakery/releases)
- [Changelog](https://github.com/model-bakers/model_bakery/blob/main/CHANGELOG.md)
- [Commits](model-bakers/model_bakery@1.18.1...1.19.2)

Updates `mypy` from 1.10.0 to 1.11.1
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.10.0...v1.11.1)

Updates `prompt-toolkit` from 3.0.46 to 3.0.47
- [Release notes](https://github.com/prompt-toolkit/python-prompt-toolkit/releases)
- [Changelog](https://github.com/prompt-toolkit/python-prompt-toolkit/blob/master/CHANGELOG)
- [Commits](prompt-toolkit/python-prompt-toolkit@3.0.46...3.0.47)

Updates `pure-eval` from 0.2.2 to 0.2.3
- [Commits](alexmojaki/pure_eval@v0.2.2...v0.2.3)

Updates `pyyaml` from 6.0.1 to 6.0.2
- [Release notes](https://github.com/yaml/pyyaml/releases)
- [Changelog](https://github.com/yaml/pyyaml/blob/main/CHANGES)
- [Commits](yaml/pyyaml@6.0.1...6.0.2)

Updates `regex` from 2023.12.25 to 2024.7.24
- [Changelog](https://github.com/mrabarnett/mrab-regex/blob/hg/changelog.txt)
- [Commits](mrabarnett/mrab-regex@2023.12.25...2024.7.24)

Updates `ruff` from 0.4.8 to 0.6.1
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@v0.4.8...0.6.1)

Updates `tqdm` from 4.66.4 to 4.66.5
- [Release notes](https://github.com/tqdm/tqdm/releases)
- [Commits](tqdm/tqdm@v4.66.4...v4.66.5)

Updates `types-pyyaml` from 6.0.12.20240311 to 6.0.12.20240808
- [Commits](https://github.com/python/typeshed/commits)

---
updated-dependencies:
- dependency-name: django-debug-toolbar
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: django-stubs
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: django-stubs-ext
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: django-test-plus
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: ipython
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: model-bakery
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prompt-toolkit
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: pure-eval
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: pyyaml
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: regex
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: tqdm
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: types-pyyaml
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Aug 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants