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 testing group across 1 directory with 25 updates #71

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

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Sep 2, 2024

Bumps the testing group with 25 updates in the /scripts directory:

Package From To
attrs 21.2.0 24.2.0
certifi 2020.12.5 2024.8.30
chardet 4.0.0 5.2.0
deepdiff 5.6.0 8.0.1
gitdb 4.0.7 4.0.11
gitpython 3.1.18 3.1.43
idna 2.10 3.8
iniconfig 1.1.1 2.0.0
mako 1.2.3 1.3.5
markupsafe 2.0.1 2.1.5
packaging 21.0 24.1
parse 1.19.0 1.20.2
parse-type 0.5.2 0.6.3
pluggy 0.13.1 1.5.0
py 1.10.0 1.11.0
pygithub 1.55 2.4.0
pyparsing 2.4.7 3.1.4
pytest 6.2.4 8.3.2
pytest-bdd 4.1.0 7.2.0
pyyaml 5.4.1 6.0.2
requests 2.25.1 2.32.3
retrying 1.3.3 1.3.4
semver 2.13.0 3.0.2
smmap 4.0.0 5.0.1
urllib3 1.26.5 2.2.2

Updates attrs from 21.2.0 to 24.2.0

Commits

Updates certifi from 2020.12.5 to 2024.8.30

Commits
  • 325c2fd 2024.08.30 (#304)
  • d66bf5f Bump actions/upload-artifact from 4.3.5 to 4.3.6 (#302)
  • 2150f23 Bump actions/upload-artifact from 4.3.4 to 4.3.5 (#301)
  • fc9b771 Bump actions/setup-python from 5.1.0 to 5.1.1 (#300)
  • 965b239 Bump actions/download-artifact from 4.1.7 to 4.1.8 (#297)
  • c1f50cc Bump actions/upload-artifact from 4.3.3 to 4.3.4 (#296)
  • bd81538 2024.07.04 (#295)
  • 06a2cbf Bump peter-evans/create-pull-request from 6.0.5 to 6.1.0 (#294)
  • 13bba02 Bump actions/checkout from 4.1.6 to 4.1.7 (#293)
  • e8abcd0 Bump pypa/gh-action-pypi-publish from 1.8.14 to 1.9.0 (#292)
  • Additional commits viewable in compare view

Updates chardet from 4.0.0 to 5.2.0

Release notes

Sourced from chardet's releases.

chardet 5.2.0

Adds support for running chardet CLI via python -m chardet (0e9b7bc20366163efcc221281201baff4100fe19, @​dan-blanchard)

chardet 5.1.0

Features

  • Add should_rename_legacy argument to most functions, which will rename older encodings to their more modern equivalents (e.g., GB2312 becomes GB18030) (#264, @​dan-blanchard)
  • Add capital letter sharp S and ISO-8859-15 support (#222, @​SimonWaldherr)
  • Add a prober for MacRoman encoding (#5 updated as c292b52a97e57c95429ef559af36845019b88b33, Rob Speer and @​dan-blanchard )
  • Add --minimal flag to chardetect command (#214, @​dan-blanchard)
  • Add type annotations to the project and run mypy on CI (#261, @​jdufresne)
  • Add support for Python 3.11 (#274, @​hugovk)

Fixes

Misc changes

chardet 5.0.0

⚠️ This release is the first release of chardet that no longer supports Python < 3.6 ⚠️

In addition to that change, it features the following user-facing changes:

  • Added a prober for Johab Korean (#207, @​grizlupo)
  • Added a prober for UTF-16/32 BE/LE (#109, #206, @​jpz)
  • Added test data for Croatian, Czech, Hungarian, Polish, Slovak, Slovene, Greek, and Turkish, which should help prevent future errors with those languages
  • Improved XML tag filtering, which should improve accuracy for XML files (#208)
  • Tweaked SingleByteCharSetProber confidence to match latest uchardet (#209)
  • Made detect_all return child prober confidences (#210)
  • Updated examples in docs (#223, @​domdfcoding)
  • Documentation fixes (#212, #224, #225, #226, #220, #221, #244 from too many to mention)
  • Minor performance improvements (#252, @​deedy5)
  • Add support for Python 3.10 when testing (#232, @​jdufresne)
  • Lots of little development cycle improvements, mostly thanks to @​jdufresne
Commits

Updates deepdiff from 5.6.0 to 8.0.1

Release notes

Sourced from deepdiff's releases.

8.0.0

With the introduction of threshold_to_diff_deeper, the values returned are different than in previous versions of DeepDiff. You can still get the older values by setting threshold_to_diff_deeper=0. However to signify that enough has changed in this release that the users need to update the parameters passed to DeepDiff, we will be doing a major version update.

  • use_enum_value=True makes it so when diffing enum, we use the enum's value. It makes it so comparing an enum to a string or any other value is not reported as a type change.
  • threshold_to_diff_deeper=float is a number between 0 and 1. When comparing dictionaries that have a small intersection of keys, we will report the dictionary as a new_value instead of reporting individual keys changed. If you set it to zero, you get the same results as DeepDiff 7.0.1 and earlier, which means this feature is disabled. The new default is 0.33 which means if less that one third of keys between dictionaries intersect, report it as a new object.
  • Deprecated ordered-set and switched to orderly-set. The ordered-set package was not being maintained anymore and starting Python 3.6, there were better options for sets that ordered. I forked one of the new implementations, modified it, and published it as orderly-set.
  • Added use_log_scale:bool and log_scale_similarity_threshold:float. They can be used to ignore small changes in numbers by comparing their differences in logarithmic space. This is different than ignoring the difference based on significant digits.
  • json serialization of reversed lists.
  • Fix for iterable moved items when iterable_compare_func is used.
  • Pandas and Polars support.

7.0.1

  • When verbose=2, return new_path when the path and new_path are different (for example when ignore_order=True and the index of items have changed).
  • Dropping support for Python 3.7
  • Introducing serialize to flat rows for delta objects.
  • fixes the issue with hashing datetime.date objects where it treated them as numbers instead of dates (fixes #445).
  • upgrading orjson to the latest version
  • Fix for bug when diffing two lists with ignore_order and providing compare_func
  • Fixes #438
  • Supporting Python 3.12 in the build process by Leo Sin
  • Fixes #457 by sf-tcalhoun
  • Fixes #441
  • Fixes #450
  • Fixes #443
  • Include type info and change the "unknown" value for flat rows to something that is friendly for Postgres enums

6.7.1

  • v6-7-1
  • v6-7-0
    • Delta can be subtracted from other objects now.
    • verify_symmetry is deprecated. Use bidirectional instead.
    • always_include_values flag in Delta can be enabled to include values in the delta for every change.
    • Fix for Delta.add breaks with esoteric dict keys.
    • You can load a delta from the list of flat dictionaries.

6.6.0

6.4.1

Bugfix: Numpy should be optional

6.4.0

... (truncated)

Commits

Updates gitdb from 4.0.7 to 4.0.11

Release notes

Sourced from gitdb's releases.

4.0.11

What's Changed

New Contributors

Full Changelog: gitpython-developers/gitdb@4.0.10...4.0.11

4.0.10

What's Changed

New Contributors

Full Changelog: gitpython-developers/gitdb@4.0.9...4.0.10

Commits
  • 2057ae6 bump versions to prepare for next release
  • 6a22706 Merge pull request #100 from gitpython-developers/dependabot/submodules/gitdb...
  • 8e61396 Bump gitdb/ext/smmap from 334ef84 to f1ace75
  • 9ea0635 Merge pull request #99 from EliahKagan/submodule-dependabot
  • 12db86c Have Dependabot update smmap submodule dependency
  • 8ec2390 Merge pull request #98 from DeflateAwning/patch-1
  • 70098c9 Add all to exc for linting
  • 256d341 Merge pull request #97 from EliahKagan/312stable
  • 00bbc44 No longer treat 3.12 as experimental on CI
  • cd8da41 Run CI on all branches
  • Additional commits viewable in compare view

Updates gitpython from 3.1.18 to 3.1.43

Release notes

Sourced from gitpython's releases.

3.1.43

Particularly Important Changes

These are likely to affect you, please do take a careful look.

Other Changes

New Contributors

Full Changelog: gitpython-developers/GitPython@3.1.42...3.1.43

3.1.42

What's Changed

... (truncated)

Commits
  • 5364053 bump version to 3.1.43
  • 4e626bd Merge pull request #1886 from EliahKagan/deprecation-warnings
  • f6060df Add GitMeta alias
  • 8327b45 Test GitMeta alias
  • f92f4c3 Clarify security risk in USE_SHELL doc and warnings
  • c7675d2 update security policy, to use GitHub instead of email
  • cf2576e Make/use test.deprecation.lib; abandon idea to filter by module
  • 7cd3aa9 Make test.performance.lib docstring more specific
  • b51b080 Explain the approach in test.deprecation to static checking
  • bdabb21 Expand USE_SHELL docstring; clarify a test usage
  • Additional commits viewable in compare view

Updates idna from 2.10 to 3.8

Release notes

Sourced from idna's releases.

v3.8

What's Changed

  • Fix regression where IDNAError exception was not being produced for certain inputs.
  • Add support for Python 3.13, drop support for Python 3.5 as it is no longer testable.
  • Documentation improvements
  • Updates to package testing using Github actions

Thanks to Hugo van Kemenade for contributions to this release.

Full Changelog: kjd/idna@v3.7...v3.8

v3.7

What's Changed

  • Fix issue where specially crafted inputs to encode() could take exceptionally long amount of time to process. [CVE-2024-3651]

Thanks to Guido Vranken for reporting the issue.

Full Changelog: kjd/idna@v3.6...v3.7

Changelog

Sourced from idna's changelog.

3.8 (2024-08-23) ++++++++++++++++

  • Fix regression where IDNAError exception was not being produced for certain inputs.
  • Add support for Python 3.13, drop support for Python 3.5 as it is no longer testable.
  • Documentation improvements
  • Updates to package testing using Github actions

Thanks to Hugo van Kemenade for contributions to this release.

3.7 (2024-04-11) ++++++++++++++++

  • Fix issue where specially crafted inputs to encode() could take exceptionally long amount of time to process. [CVE-2024-3651]

Thanks to Guido Vranken for reporting the issue.

3.6 (2023-11-25) ++++++++++++++++

  • Fix regression to include tests in source distribution.

3.5 (2023-11-24) ++++++++++++++++

  • Update to Unicode 15.1.0
  • String codec name is now "idna2008" as overriding the system codec "idna" was not working.
  • Fix typing error for codec encoding
  • "setup.cfg" has been added for this release due to some downstream lack of adherence to PEP 517. Should be removed in a future release so please prepare accordingly.
  • Removed reliance on a symlink for the "idna-data" tool to comport with PEP 517 and the Python Packaging User Guide for sdist archives.
  • Added security reporting protocol for project

Thanks Jon Ribbens, Diogo Teles Sant'Anna, Wu Tingfeng for contributions to this release.

3.4 (2022-09-14) ++++++++++++++++

  • Update to Unicode 15.0.0
  • Migrate to pyproject.toml for build information (PEP 621)
  • Correct another instance where generic exception was raised instead of IDNAError for malformed input
  • Source distribution uses zeroized file ownership for improved

... (truncated)

Commits
  • 784c6f4 Release v3.8
  • 28c7c9e Typo fix
  • a2b41c3 Pin remainder of Github Actions flagged in code scanning
  • 1f613c5 More Github Action dependency pinning
  • a87e2b6 Update OSSF scorecard to latest version
  • 12d4dd1 Merge pull request #182 from kjd/github-pypi-actions
  • e1a1541 Pin Github Actions dependencies
  • c109d3a Merge branch 'master' into github-pypi-actions
  • f8a8de4 Do not try to build/send packages to TestPyPI for now
  • 613bdde Update regexp to move global flag to start of expression
  • Additional commits viewable in compare view

Updates iniconfig from 1.1.1 to 2.0.0

Changelog

Sourced from iniconfig's changelog.

2.0.0

  • add support for Python 3.7-3.11
  • drop support for Python 2.6-3.6
  • add encoding argument defaulting to utf-8
  • inline and clarify type annotations
  • move parsing code from inline to extra file
  • add typing overloads for helper methods

.. note::

major release due to the major changes in python versions supported + changes in packaging

the api is expected to be compatible

Commits

Updates mako from 1.2.3 to 1.3.5

Release notes

Sourced from mako's releases.

1.3.5

Released: Tue May 14 2024

bug

  • [bug] [lexer] [regression] Reverted the fix for #400 as it caused new issues when traversing some bracketed situations.

    References: #400, #401

1.3.4

Released: Mon May 13 2024

bug

  • [bug] [parser] Fixed regression caused by the fix for #320 where new logic added to interpret list and dictionary comprehensions would fail for expression oriented keys. As the parsing in question was not necessary for these keys, it's been removed. Pull request courtesy Sébastien Granjoux.

    References: #398

  • [bug] [lexer] Fixed issue where a parsed expression which contained sub-brackets, such as dictionary literals, would fail to be interpreted correctly even though the initial parsing is correct. Pull request courtesy Jose Galvez.

    References: #400

1.3.3

Released: Wed Apr 10 2024

bug

  • [bug] [codegen] Fixed unexpected error when use control lines which the first control block with no bodies other than comments, as pass is now added to the first empty block. Pull request courtesy Hai Zhu.

    References: #146

  • [bug] [parser] Fixed unexpected syntax error in strict_undefined mode that occurred when using comprehensions within a function in a Mako Python code block. Now, the local variable in comprehensions won't be added to the checklist when using strict_undefined mode.

... (truncated)

Commits

Updates markupsafe from 2.0.1 to 2.1.5

Release notes

Sourced from markupsafe's releases.

2.1.5

This is a fix release for the 2.1.x feature release branch. It fixes bugs but does not otherwise change behavior and should not result in breaking changes.

Fixes a regression in striptags behavior from 2.14. Spaces are now collapsed correctly.

2.1.4

This is a fix release for the 2.1.x feature release branch. It fixes bugs but does not otherwise change behavior and should not result in breaking changes.

2.1.3

This is a fix release for the 2.1.x feature branch.

2.1.2

This is the first release to provide wheels for Python 3.11. An SLSA provenance file is also generated, and is available to download from the GitHub release page.

2.1.1

2.1.0

Changelog

Sourced from markupsafe's changelog.

Version 2.1.5

Released 2024-02-02

  • Fix striptags not collapsing spaces. :issue:417

Version 2.1.4

Released 2024-01-19

  • Don't use regular expressions for striptags, avoiding a performance issue. :pr:413

Version 2.1.3

Released 2023-06-02

  • Implement format_map, casefold, removeprefix, and removesuffix methods. :issue:370
  • Fix static typing for basic str methods on Markup. :issue:358
  • Use Self for annotating return types. :pr:379

Version 2.1.2

Released 2023-01-17

  • Fix striptags not stripping tags containing newlines. :issue:310

Version 2.1.1

Released 2022-03-14

  • Avoid ambiguous regex matches in striptags. :pr:293

Version 2.1.0

Released 2022-02-17

... (truncated)

Commits

Updates packaging from 21.0 to 24.1

Release notes

Sourced from packaging's releases.

24.1

What's Changed

New Contributors

Full Changelog: pypa/packaging@24.0...24.1

24.0

What's Changed

New Contributors

Full Changelog: pypa/packaging@23.2...24.0

23.2

What's Changed

... (truncated)

Changelog

Sourced from packaging's changelog.

24.1 - 2024-06-10


No unreleased changes.

24.0 - 2024-03-10

  • Do specifier matching correctly when the specifier contains an epoch number and has more components than the version (:issue:683)
  • Support the experimental --disable-gil builds in packaging.tags (:issue:727)
  • BREAKING: Make optional metadata.Metadata attributes default to None (:issue:733)
  • Fix errors when trying to access the description_content_type, keywords, and requires_python attributes on metadata.Metadata when those values have not been provided (:issue:733)
  • Fix a bug preventing the use of the built in ExceptionGroup on versions of Python that support it (:issue:725)

23.2 - 2023-10-01


* Document calendar-based versioning scheme (:issue:`716`)
* Enforce that the entire marker string is parsed (:issue:`687`)
* Requirement parsing no longer automatically validates the URL (:issue:`120`)
* Canonicalize names for requirements comparison (:issue:`644`)
* Introduce ``metadata.Metadata`` (along with ``metadata.ExceptionGroup`` and ``metadata.InvalidMetadata``; :issue:`570`)
* Introduce the ``validate`` keyword parameter to ``utils.normalize_name()`` (:issue:`570`)
* Introduce ``utils.is_normalized_name()`` (:issue:`570`)
* Make ``utils.parse_sdist_filename()`` and ``utils.parse_wheel_filename()``
  raise ``InvalidSdistFilename`` and ``InvalidWheelFilename``, respectively,
  when the version component of the name is invalid
* Remove support for Python 3.7 (:issue:`783`)

23.1 - 2023-04-12

  • Parse raw metadata (:issue:671)
  • Import underlying parser functions as an underscored variable (:issue:663)
  • Improve error for local version label with unsupported operators (:issue:67...

    Description has been truncated

Bumps the testing group with 25 updates in the /scripts directory:

| Package | From | To |
| --- | --- | --- |
| [attrs](https://github.com/sponsors/hynek) | `21.2.0` | `24.2.0` |
| [certifi](https://github.com/certifi/python-certifi) | `2020.12.5` | `2024.8.30` |
| [chardet](https://github.com/chardet/chardet) | `4.0.0` | `5.2.0` |
| [deepdiff](https://github.com/seperman/deepdiff) | `5.6.0` | `8.0.1` |
| [gitdb](https://github.com/gitpython-developers/gitdb) | `4.0.7` | `4.0.11` |
| [gitpython](https://github.com/gitpython-developers/GitPython) | `3.1.18` | `3.1.43` |
| [idna](https://github.com/kjd/idna) | `2.10` | `3.8` |
| [iniconfig](https://github.com/pytest-dev/iniconfig) | `1.1.1` | `2.0.0` |
| [mako](https://github.com/sqlalchemy/mako) | `1.2.3` | `1.3.5` |
| [markupsafe](https://github.com/pallets/markupsafe) | `2.0.1` | `2.1.5` |
| [packaging](https://github.com/pypa/packaging) | `21.0` | `24.1` |
| [parse](https://github.com/r1chardj0n3s/parse) | `1.19.0` | `1.20.2` |
| [parse-type](https://github.com/jenisys/parse_type) | `0.5.2` | `0.6.3` |
| [pluggy](https://github.com/pytest-dev/pluggy) | `0.13.1` | `1.5.0` |
| [py](https://github.com/pytest-dev/py) | `1.10.0` | `1.11.0` |
| [pygithub](https://github.com/pygithub/pygithub) | `1.55` | `2.4.0` |
| [pyparsing](https://github.com/pyparsing/pyparsing) | `2.4.7` | `3.1.4` |
| [pytest](https://github.com/pytest-dev/pytest) | `6.2.4` | `8.3.2` |
| [pytest-bdd](https://github.com/pytest-dev/pytest-bdd) | `4.1.0` | `7.2.0` |
| [pyyaml](https://github.com/yaml/pyyaml) | `5.4.1` | `6.0.2` |
| [requests](https://github.com/psf/requests) | `2.25.1` | `2.32.3` |
| [retrying](https://github.com/groodt/retrying) | `1.3.3` | `1.3.4` |
| [semver](https://github.com/python-semver/python-semver) | `2.13.0` | `3.0.2` |
| [smmap](https://github.com/gitpython-developers/smmap) | `4.0.0` | `5.0.1` |
| [urllib3](https://github.com/urllib3/urllib3) | `1.26.5` | `2.2.2` |



Updates `attrs` from 21.2.0 to 24.2.0
- [Commits](https://github.com/sponsors/hynek/commits)

Updates `certifi` from 2020.12.5 to 2024.8.30
- [Commits](certifi/python-certifi@2020.12.05...2024.08.30)

Updates `chardet` from 4.0.0 to 5.2.0
- [Release notes](https://github.com/chardet/chardet/releases)
- [Commits](chardet/chardet@4.0.0...5.2.0)

Updates `deepdiff` from 5.6.0 to 8.0.1
- [Release notes](https://github.com/seperman/deepdiff/releases)
- [Changelog](https://github.com/seperman/deepdiff/blob/master/docs/changelog.rst)
- [Commits](https://github.com/seperman/deepdiff/commits)

Updates `gitdb` from 4.0.7 to 4.0.11
- [Release notes](https://github.com/gitpython-developers/gitdb/releases)
- [Commits](gitpython-developers/gitdb@4.0.7...4.0.11)

Updates `gitpython` from 3.1.18 to 3.1.43
- [Release notes](https://github.com/gitpython-developers/GitPython/releases)
- [Changelog](https://github.com/gitpython-developers/GitPython/blob/main/CHANGES)
- [Commits](gitpython-developers/GitPython@3.1.18...3.1.43)

Updates `idna` from 2.10 to 3.8
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
- [Commits](kjd/idna@v2.10...v3.8)

Updates `iniconfig` from 1.1.1 to 2.0.0
- [Release notes](https://github.com/pytest-dev/iniconfig/releases)
- [Changelog](https://github.com/pytest-dev/iniconfig/blob/main/CHANGELOG)
- [Commits](pytest-dev/iniconfig@v1.1.1...v2.0.0)

Updates `mako` from 1.2.3 to 1.3.5
- [Release notes](https://github.com/sqlalchemy/mako/releases)
- [Changelog](https://github.com/sqlalchemy/mako/blob/main/CHANGES)
- [Commits](https://github.com/sqlalchemy/mako/commits)

Updates `markupsafe` from 2.0.1 to 2.1.5
- [Release notes](https://github.com/pallets/markupsafe/releases)
- [Changelog](https://github.com/pallets/markupsafe/blob/main/CHANGES.rst)
- [Commits](pallets/markupsafe@2.0.1...2.1.5)

Updates `packaging` from 21.0 to 24.1
- [Release notes](https://github.com/pypa/packaging/releases)
- [Changelog](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst)
- [Commits](pypa/packaging@21.0...24.1)

Updates `parse` from 1.19.0 to 1.20.2
- [Release notes](https://github.com/r1chardj0n3s/parse/releases)
- [Commits](r1chardj0n3s/parse@1.19.0...1.20.2)

Updates `parse-type` from 0.5.2 to 0.6.3
- [Release notes](https://github.com/jenisys/parse_type/releases)
- [Changelog](https://github.com/jenisys/parse_type/blob/main/CHANGES.txt)
- [Commits](jenisys/parse_type@v0.5.2...v0.6.3)

Updates `pluggy` from 0.13.1 to 1.5.0
- [Changelog](https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pluggy@0.13.1...1.5.0)

Updates `py` from 1.10.0 to 1.11.0
- [Changelog](https://github.com/pytest-dev/py/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/py@1.10.0...1.11.0)

Updates `pygithub` from 1.55 to 2.4.0
- [Release notes](https://github.com/pygithub/pygithub/releases)
- [Changelog](https://github.com/PyGithub/PyGithub/blob/main/doc/changes.rst)
- [Commits](PyGithub/PyGithub@v1.55...v2.4.0)

Updates `pyparsing` from 2.4.7 to 3.1.4
- [Release notes](https://github.com/pyparsing/pyparsing/releases)
- [Changelog](https://github.com/pyparsing/pyparsing/blob/master/CHANGES)
- [Commits](pyparsing/pyparsing@pyparsing_2.4.7...3.1.4)

Updates `pytest` from 6.2.4 to 8.3.2
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@6.2.4...8.3.2)

Updates `pytest-bdd` from 4.1.0 to 7.2.0
- [Release notes](https://github.com/pytest-dev/pytest-bdd/releases)
- [Changelog](https://github.com/pytest-dev/pytest-bdd/blob/master/CHANGES.rst)
- [Commits](pytest-dev/pytest-bdd@4.1.0...7.2.0)

Updates `pyyaml` from 5.4.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@5.4.1...6.0.2)

Updates `requests` from 2.25.1 to 2.32.3
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.25.1...v2.32.3)

Updates `retrying` from 1.3.3 to 1.3.4
- [Changelog](https://github.com/groodt/retrying/blob/main/HISTORY.rst)
- [Commits](https://github.com/groodt/retrying/commits/v1.3.4)

Updates `semver` from 2.13.0 to 3.0.2
- [Release notes](https://github.com/python-semver/python-semver/releases)
- [Changelog](https://github.com/python-semver/python-semver/blob/master/CHANGELOG.rst)
- [Commits](python-semver/python-semver@2.13.0...3.0.2)

Updates `smmap` from 4.0.0 to 5.0.1
- [Commits](gitpython-developers/smmap@v4.0.0...v5.0.1)

Updates `urllib3` from 1.26.5 to 2.2.2
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@1.26.5...2.2.2)

---
updated-dependencies:
- dependency-name: attrs
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: testing
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: testing
- dependency-name: chardet
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: testing
- dependency-name: deepdiff
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: testing
- dependency-name: gitdb
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: testing
- dependency-name: gitpython
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: testing
- dependency-name: idna
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: testing
- dependency-name: iniconfig
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: testing
- dependency-name: mako
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: testing
- dependency-name: markupsafe
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: testing
- dependency-name: packaging
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: testing
- dependency-name: parse
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: testing
- dependency-name: parse-type
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: testing
- dependency-name: pluggy
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: testing
- dependency-name: py
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: testing
- dependency-name: pygithub
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: testing
- dependency-name: pyparsing
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: testing
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: testing
- dependency-name: pytest-bdd
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: testing
- dependency-name: pyyaml
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: testing
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: testing
- dependency-name: retrying
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: testing
- dependency-name: semver
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: testing
- dependency-name: smmap
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: testing
- dependency-name: urllib3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: testing
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Sep 2, 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