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 python group across 1 directory with 10 updates #1154

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the python group with 10 updates in the / directory:

Package From To
certifi 2024.7.4 2024.8.30
idna 3.7 3.8
pyparsing 3.1.2 3.1.4
werkzeug 3.0.3 3.0.4
zipp 3.19.2 3.20.1
pytest 8.3.2 8.3.3
pylint 3.2.6 3.2.7
mypy 1.11.1 1.11.2
types-setuptools 71.1.0.20240806 74.1.0.20240907
gunicorn 22.0.0 23.0.0

Updates certifi from 2024.7.4 to 2024.8.30

Commits

Updates idna from 3.7 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

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.

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 pyparsing from 3.1.2 to 3.1.4

Changelog

Sourced from pyparsing's changelog.

Version 3.1.4 - August, 2024

  • Fixed a regression introduced in pyparsing 3.1.3, addition of a type annotation that referenced re.Pattern. Since this type was introduced in Python 3.7, using this type definition broke Python 3.6 installs of pyparsing 3.1.3. PR submitted by Felix Fontein, nice work!

Version 3.1.3 - August, 2024

  • Added new Tag ParserElement, for inserting metadata into the parsed results. This allows a parser to add metadata or annotations to the parsed tokens. The Tag element also accepts an optional value parameter, defaulting to True. See the new tag_metadata.py example in the examples directory.

    Example:

      # add tag indicating mood
      end_punc = "." | ("!" + Tag("enthusiastic")))
      greeting = "Hello" + Word(alphas) + end_punc
    

    result = greeting.parse_string("Hello World.") print(result.dump())

    result = greeting.parse_string("Hello World!") print(result.dump())

    prints:

      ['Hello', 'World', '.']
    

    ['Hello', 'World', '!']

    • enthusiastic: True
  • Added example mongodb_query_expression.py, to convert human-readable infix query expressions (such as a==100 and b>=200) and transform them into the equivalent query argument for the pymongo package ({'$and': [{'a': 100}, {'b': {'$gte': 200}}]}). Supports many equality and inequality operators - see the docstring for the transform_query function for more examples.

  • Fixed issue where PEP8 compatibility names for ParserElement static methods were not themselves defined as staticmethods. When called using a ParserElement instance, this resulted in a TypeError exception. Reported by eylenburg (#548).

  • To address a compatibility issue in RDFLib, added a property setter for the ParserElement.name property, to call ParserElement.set_name.

  • Modified ParserElement.set_name() to accept a None value, to clear the defined name and corresponding error message for a ParserElement.

  • ... (truncated)

    Commits
    • b846e4a Prep for 3.1.4 release
    • 9bd2356 Add Python 3.6 to CI (#566)
    • ee50a19 Add Tag notes to HowToUsePyparsing.rst
    • 3ffc3ef Fix typo
    • e5e97f7 Add mongodb_query_expression.py to examples; updated 0README.html and test_ex...
    • 10cef98 Add Tag ParserElement class
    • cf41d90 Prep for 3.1.3 release
    • d7c163c Some minor code changes in chemical_formulas.py
    • eb56030 Various code cleanups
    • a9e7d47 Added name property setter, and enhanced set_name() to accept a None value to...
    • Additional commits viewable in compare view

    Updates werkzeug from 3.0.3 to 3.0.4

    Release notes

    Sourced from werkzeug's releases.

    3.0.4

    This is the Werkzeug 3.0.4 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes.

    PyPI: https://pypi.org/project/Werkzeug/3.0.4/ Changes: https://werkzeug.palletsprojects.com/en/3.0.x/changes/#version-3-0-4 Milestone: https://github.com/pallets/werkzeug/milestone/36?closed=1

    • Restore behavior where parsing multipart/x-www-form-urlencoded data with invalid UTF-8 bytes in the body results in no form data parsed rather than a 413 error. #2930
    • Improve parse_options_header performance when parsing unterminated quoted string values. #2904
    • Debugger pin auth is synchronized across threads/processes when tracking failed entries. #2916
    • Dev server handles unexpected SSLEOFError due to issue in Python < 3.13. #2926
    • Debugger pin auth works when the URL already contains a query string. #2918
    Changelog

    Sourced from werkzeug's changelog.

    Version 3.0.4

    Released 2024-08-21

    • Restore behavior where parsing multipart/x-www-form-urlencoded data with invalid UTF-8 bytes in the body results in no form data parsed rather than a 413 error. :issue:2930
    • Improve parse_options_header performance when parsing unterminated quoted string values. :issue:2904
    • Debugger pin auth is synchronized across threads/processes when tracking failed entries. :issue:2916
    • Dev server handles unexpected SSLEOFError due to issue in Python < 3.13. :issue:2926
    • Debugger pin auth works when the URL already contains a query string. :issue:2918
    Commits
    • b933ccb release version 3.0.4
    • c09de73 debugger works on urls with query string (#2942)
    • 1d1d987 debugger works on urls with query string
    • 32a77a0 treat SSLEOFError as dropped connection (#2941)
    • cf18d03 treat SSLEOFError as dropped connection
    • a1db120 synchronize failed pin entry (#2940)
    • 6504819 synchronize failed pin entry
    • 7abec4b improve parse_options_header performance (#2939)
    • 3a893d2 improve parse_options_header performance
    • 3a52597 restore invalid bytes behavior for form parser (#2938)
    • Additional commits viewable in compare view

    Updates zipp from 3.19.2 to 3.20.1

    Changelog

    Sourced from zipp's changelog.

    v3.20.1

    Bugfixes

    • python/cpython#123270

    v3.20.0

    Features

    • Made the zipfile compatibility overlay available as zipp.compat.overlay.

    v3.19.3

    Bugfixes

    • Also match directories in Path.glob. (#121)
    Commits
    • c23e549 Finalize
    • c2b9015 Merge pull request #124 from jaraco/bugfix/gh-123270-supported-names
    • 774a3ac Add TODO to consolidate this behavior in CPython.
    • cc61e61 Prefer simpler path.rstrip to consolidate checks for empty or only paths.
    • bec712f Mark unused code as uncovered.
    • fde82dc Add news fragment.
    • a421f7e Invent DirtyZipInfo to create an unsanitized zipfile with backslashes.
    • 0a3a7b4 Refine expectation that paths with leading slashes are simply not visible.
    • f89b93f Address infinite loop when zipfile begins with more than one leading slash.
    • 3cb5609 Removed SanitizedNames.
    • Additional commits viewable in compare view

    Updates pytest from 8.3.2 to 8.3.3

    Release notes

    Sourced from pytest's releases.

    8.3.3

    pytest 8.3.3 (2024-09-09)

    Bug fixes

    • #12446: Avoid calling @property (and other instance descriptors) during fixture discovery -- by asottile{.interpreted-text role="user"}

    • #12659: Fixed the issue of not displaying assertion failure differences when using the parameter --import-mode=importlib in pytest>=8.1.

    • #12667: Fixed a regression where type change in [ExceptionInfo.errisinstance]{.title-ref} caused [mypy]{.title-ref} to fail.

    • #12744: Fixed typing compatibility with Python 3.9 or less -- replaced [typing.Self]{.title-ref} with [typing_extensions.Self]{.title-ref} -- by Avasam{.interpreted-text role="user"}

    • #12745: Fixed an issue with backslashes being incorrectly converted in nodeid paths on Windows, ensuring consistent path handling across environments.

    • #6682: Fixed bug where the verbosity levels where not being respected when printing the "msg" part of failed assertion (as in assert condition, msg).

    • #9422: Fix bug where disabling the terminal plugin via -p no:terminal would cause crashes related to missing the verbose option.

      -- by GTowers1{.interpreted-text role="user"}

    Improved documentation

    • #12663: Clarify that the [pytest_deselected]{.title-ref} hook should be called from [pytest_collection_modifyitems]{.title-ref} hook implementations when items are deselected.
    • #12678: Remove erroneous quotes from [tmp_path_retention_policy]{.title-ref} example in docs.

    Miscellaneous internal changes

    • #12769: Fix typos discovered by codespell and add codespell to pre-commit hooks.
    Commits

    Updates pylint from 3.2.6 to 3.2.7

    Commits
    • a98215b Bump pylint to 3.2.7, update changelog
    • 1deaffa Fix to maintain order of package paths (#9887) (#9897)
    • b4c2951 [Backport maintenance/3.2.x] Fix a crash in undefined-loop-variable with `e...
    • f1925f4 Fix crash in refactoring checker when calling bound lambda (#9867)
    • 7d1626c Fix a false positive unreachable for NoReturn coroutine functions (#9844)...
    • See full diff in compare view

    Updates mypy from 1.11.1 to 1.11.2

    Commits
    • 789f02c Bump version to 1.11.2
    • 917cc75 An alternative fix for a union-like literal string (#17639)
    • 7d805b3 Unwrap TypedDict item types before storing (#17640)
    • 32675dd Revert "Fix Literal strings containing pipe characters" (#17638)
    • 778542b Revert "Fix RawExpressionType.accept crash with --cache-fine-grained" (#1...
    • 14ab742 Bump version to 1.11.2+dev
    • See full diff in compare view

    Updates types-setuptools from 71.1.0.20240806 to 74.1.0.20240907

    Commits

    Updates gunicorn from 22.0.0 to 23.0.0

    Release notes

    Sourced from gunicorn's releases.

    23.0.0

    Gunicorn 23.0.0 has been released. This version improve HTTP 1.1. support and which improve safety

    You're invited to upgrade asap your own installation.

    23.0.0 - 2024-08-10

    • minor docs fixes (:pr:3217, :pr:3089, :pr:3167)
    • worker_class parameter accepts a class (:pr:3079)
    • fix deadlock if request terminated during chunked parsing (:pr:2688)
    • permit receiving Transfer-Encodings: compress, deflate, gzip (:pr:3261)
    • permit Transfer-Encoding headers specifying multiple encodings. note: no parameters, still (:pr:3261)
    • sdist generation now explicitly excludes sphinx build folder (:pr:3257)
    • decode bytes-typed status (as can be passed by gevent) as utf-8 instead of raising TypeError (:pr:2336)
    • raise correct Exception when encounting invalid chunked requests (:pr:3258)
    • the SCRIPT_NAME and PATH_INFO headers, when received from allowed forwarders, are no longer restricted for containing an underscore (:pr:3192)
    • include IPv6 loopback address [::1] in default for :ref:forwarded-allow-ips and :ref:proxy-allow-ips (:pr:3192)

    ** NOTE **

    • The SCRIPT_NAME change mitigates a regression that appeared first in the 22.0.0 release
    • Review your :ref:forwarded-allow-ips setting if you are still not seeing the SCRIPT_NAME transmitted
    • Review your :ref:forwarder-headers setting if you are missing headers after upgrading from a version prior to 22.0.0

    ** Breaking changes **

    • refuse requests where the uri field is empty (:pr:3255)
    • refuse requests with invalid CR/LR/NUL in heade field values (:pr:3253)
    • remove temporary --tolerate-dangerous-framing switch from 22.0 (:pr:3260)
    • If any of the breaking changes affect you, be aware that now refused requests can post a security problem, especially so in setups involving request pipe-lining and/or proxies.

    Fix CVE-2024-1135

    Commits
    • 411986d fix doc
    • 334392e Merge pull request #2559 from laggardkernel/bugfix/reexec-env
    • e75c353 Merge pull request #3189 from pajod/patch-py36
    • 9357b28 keep document user in access_log_format setting
    • 79fdef0 bump to 23.0.0
    • 3acd9fb Merge pull request #2620 from talkerbox/improve-access-log-format-docs
    • 3f56d76 Merge pull request #3192 from pajod/patch-allowed-script-name
    • 256d474 docs: revert duped directive
    • ffa48b5 test: default change was intentional
    • 52538ca docs: recommend SCRIPT_NAME=/subfolder
    • Additional commits viewable in compare view

    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

    Bumps the python group with 10 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [certifi](https://github.com/certifi/python-certifi) | `2024.7.4` | `2024.8.30` |
    | [idna](https://github.com/kjd/idna) | `3.7` | `3.8` |
    | [pyparsing](https://github.com/pyparsing/pyparsing) | `3.1.2` | `3.1.4` |
    | [werkzeug](https://github.com/pallets/werkzeug) | `3.0.3` | `3.0.4` |
    | [zipp](https://github.com/jaraco/zipp) | `3.19.2` | `3.20.1` |
    | [pytest](https://github.com/pytest-dev/pytest) | `8.3.2` | `8.3.3` |
    | [pylint](https://github.com/pylint-dev/pylint) | `3.2.6` | `3.2.7` |
    | [mypy](https://github.com/python/mypy) | `1.11.1` | `1.11.2` |
    | [types-setuptools](https://github.com/python/typeshed) | `71.1.0.20240806` | `74.1.0.20240907` |
    | [gunicorn](https://github.com/benoitc/gunicorn) | `22.0.0` | `23.0.0` |
    
    
    
    Updates `certifi` from 2024.7.4 to 2024.8.30
    - [Commits](certifi/python-certifi@2024.07.04...2024.08.30)
    
    Updates `idna` from 3.7 to 3.8
    - [Release notes](https://github.com/kjd/idna/releases)
    - [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
    - [Commits](kjd/idna@v3.7...v3.8)
    
    Updates `pyparsing` from 3.1.2 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_3.1.2...3.1.4)
    
    Updates `werkzeug` from 3.0.3 to 3.0.4
    - [Release notes](https://github.com/pallets/werkzeug/releases)
    - [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst)
    - [Commits](pallets/werkzeug@3.0.3...3.0.4)
    
    Updates `zipp` from 3.19.2 to 3.20.1
    - [Release notes](https://github.com/jaraco/zipp/releases)
    - [Changelog](https://github.com/jaraco/zipp/blob/main/NEWS.rst)
    - [Commits](jaraco/zipp@v3.19.2...v3.20.1)
    
    Updates `pytest` from 8.3.2 to 8.3.3
    - [Release notes](https://github.com/pytest-dev/pytest/releases)
    - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
    - [Commits](pytest-dev/pytest@8.3.2...8.3.3)
    
    Updates `pylint` from 3.2.6 to 3.2.7
    - [Release notes](https://github.com/pylint-dev/pylint/releases)
    - [Commits](pylint-dev/pylint@v3.2.6...v3.2.7)
    
    Updates `mypy` from 1.11.1 to 1.11.2
    - [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
    - [Commits](python/mypy@v1.11.1...v1.11.2)
    
    Updates `types-setuptools` from 71.1.0.20240806 to 74.1.0.20240907
    - [Commits](https://github.com/python/typeshed/commits)
    
    Updates `gunicorn` from 22.0.0 to 23.0.0
    - [Release notes](https://github.com/benoitc/gunicorn/releases)
    - [Commits](benoitc/gunicorn@22.0.0...23.0.0)
    
    ---
    updated-dependencies:
    - dependency-name: certifi
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: python
    - dependency-name: idna
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: python
    - dependency-name: pyparsing
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: python
    - dependency-name: werkzeug
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: python
    - dependency-name: zipp
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: python
    - dependency-name: pytest
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: python
    - dependency-name: pylint
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: python
    - dependency-name: mypy
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: python
    - dependency-name: types-setuptools
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: python
    - dependency-name: gunicorn
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: python
    ...
    
    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 10, 2024
    Copy link

    codecov bot commented Sep 10, 2024

    Codecov Report

    All modified and coverable lines are covered by tests ✅

    Project coverage is 76.87%. Comparing base (b68b6c8) to head (16c4da2).

    Additional details and impacted files
    @@           Coverage Diff           @@
    ##           master    #1154   +/-   ##
    =======================================
      Coverage   76.87%   76.87%           
    =======================================
      Files          20       20           
      Lines        1310     1310           
    =======================================
      Hits         1007     1007           
      Misses        303      303           

    ☔ View full report in Codecov by Sentry.
    📢 Have feedback on the report? Share it here.

    Copy link
    Contributor Author

    dependabot bot commented on behalf of github Sep 12, 2024

    Looks like these dependencies are updatable in another way, so this is no longer needed.

    @dependabot dependabot bot closed this Sep 12, 2024
    @dependabot dependabot bot deleted the dependabot/pip/python-e0ac854485 branch September 12, 2024 13:40
    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