voxpupuli / puppetboard

Web frontend for PuppetDB
https://pypi.org/project/puppetboard/
Apache License 2.0
710 stars 237 forks source link

Bump the python group across 1 directory with 8 updates #1148

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the python group with 8 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
gunicorn 22.0.0 23.0.0
mypy 1.11.1 1.11.2
types-setuptools 71.1.0.20240806 74.0.0.20240830

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: https://github.com/kjd/idna/compare/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 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


    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.0.0.20240830

    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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
    codecov[bot] commented 1 month ago

    Codecov Report

    All modified and coverable lines are covered by tests :white_check_mark:

    Project coverage is 76.87%. Comparing base (b68b6c8) to head (60085ba).

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

    :umbrella: View full report in Codecov by Sentry.
    :loudspeaker: Have feedback on the report? Share it here.

    dependabot[bot] commented 1 month ago

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