openshift-helm-charts / development

0 stars 17 forks source link

Bump the core-scripts group in /scripts with 8 updates #380

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

Bumps the core-scripts group in /scripts with 8 updates:

Package From To
attrs 23.2.0 24.2.0
certifi 2024.6.2 2024.8.30
idna 3.7 3.8
parse-type 0.6.2 0.6.3
pygithub 2.3.0 2.4.0
pyparsing 3.1.2 3.1.4
pytest 8.2.2 8.3.2
pyyaml 6.0.1 6.0.2

Updates attrs from 23.2.0 to 24.2.0

Commits


Updates certifi from 2024.6.2 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 parse-type from 0.6.2 to 0.6.3

Release notes

Sourced from parse-type's releases.

v0.6.3

UPDATE TO: parse v1.20.2

  • UPDATE: parse_type/parse.py
  • Copy structured test suite to "tests/parse_tests/"
  • Copy structured test suite to "tests/parse_tests_with_parse_type"
  • REMOVE: tests/test_parse.py

OTHERWISE:

  • README: Fix compact display of BADGES (was using multi-line)

DEVELOPMENT:

  • CI: Add support for Python 3.12
Changelog

Sourced from parse-type's changelog.

Version History

Version: 0.7.0 (UNRELEASED)

GOALS:

  • Drop support for Python 2.7
  • Support Python >= 3.7 (probably)
Commits
  • 932c1c1 BUMP-VERSION: 0.6.3 (was: 0.6.2)
  • c9a549a CI: Add release workflows
  • 2195db8 Merge remote-tracking branch 'refs/remotes/origin/main'
  • ff21dfb Merge remote-tracking branch 'refs/remotes/origin/main'
  • d7c77c2 Merge remote-tracking branch 'refs/remotes/origin/main'
  • 0557e54 UPDATE TO: parse v1.20.2
  • 399de81 Create SECURITY.md
  • 260c464 README: Fix compact display of BADGES (was using multi-line)
  • 5c3fcb9 CI: Use "uv" to speed-up Python package installations
  • e88424c CI: Try to use "uv" (part 2)
  • Additional commits viewable in compare view


Updates pygithub from 2.3.0 to 2.4.0

Release notes

Sourced from pygithub's releases.

v2.4.0

New features

Improvements

Bug Fixes

Maintenance

Changelog

Sourced from pygithub's changelog.

Version 2.4.0 (August 26, 2024)

Breaking Changes ^^^^^^^^^^^^^^^^

  • The github.Commit.Commit class provides a files property that used to return a list[github.File.File], which has now been changed to PaginatedList[github.File.File]. This breaks user code that assumes a list:

.. code-block:: python

files = repo.get_commit("7266e812ed2976ea36a4303edecfe5d75522343f").files
no_of_files = len(files)

This will raise a TypeError: object of type 'PaginatedList' has no len(), as the returned PaginatedList does not support the len() method. Use the totalCount property instead:

.. code-block:: python

files = repo.get_commit("7266e812ed2976ea36a4303edecfe5d75522343f").files
no_of_files = files.totalCount
  • Removed support for Python 3.7.

New features ^^^^^^^^^^^^

  • Allow custom authentication (#2987) (32b826fd)

Improvements ^^^^^^^^^^^^

  • Add has_discussions to AuthenticatedUser and Repository classes (#3020) (75224167)
  • Update more SecurityAndAnalysis attributes (#3025) (fa168279)
  • Implement support for re-running only failed workflow jobs. (#2983) (23e87563)
  • Add possibility to mark a thread/notification as done (#2985) (5ba24379)
  • Add "pull_request_review_id" to PullRequestComment object (#3000) (6a59cf82)
  • Add minimize and unminimize functions for IssueComment class (#3005) (09c4f58e)
  • Support Organization/Repository custom properties (#2968) (c5e6b702)
  • Add dict type to add_attribute script (#2977) (2a04f9cc)
  • Allow for deleting and restoring branch associated with PR (#1784) (4ba1e412)
  • Add "archived_at" to Organization object. (#2974) (cc766a6f)
  • Adds Security & Analysis To Repository (#2960) (f22af54d)
  • Add added_by and last_used attributes to RepositoryKey (#2952) (5dffa64d)
  • Add make_latest to GitRelease.update_release (#2888) (60136105)
  • Make Commit.files return PaginatedList (#2939) (fa885f00)

Bug Fixes ^^^^^^^^^

... (truncated)

Commits


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 pytest from 8.2.2 to 8.3.2

    Release notes

    Sourced from pytest's releases.

    8.3.2

    pytest 8.3.2 (2024-07-24)

    Bug fixes

    • #12652: Resolve regression [conda]{.title-ref} environments where no longer being automatically detected.

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

    8.3.1

    pytest 8.3.1 (2024-07-20)

    The 8.3.0 release failed to include the change notes and docs for the release. This patch release remedies this. There are no other changes.

    8.3.0

    pytest 8.3.0 (2024-07-20)

    New features

    • #12231: Added [--xfail-tb]{.title-ref} flag, which turns on traceback output for XFAIL results.

      • If the [--xfail-tb]{.title-ref} flag is not given, tracebacks for XFAIL results are NOT shown.
      • The style of traceback for XFAIL is set with [--tb]{.title-ref}, and can be [auto|long|short|line|native|no]{.title-ref}.
      • Note: Even if you have [--xfail-tb]{.title-ref} set, you won't see them if [--tb=no]{.title-ref}.

      Some history:

      With pytest 8.0, [-rx]{.title-ref} or [-ra]{.title-ref} would not only turn on summary reports for xfail, but also report the tracebacks for xfail results. This caused issues with some projects that utilize xfail, but don't want to see all of the xfail tracebacks.

      This change detaches xfail tracebacks from [-rx]{.title-ref}, and now we turn on xfail tracebacks with [--xfail-tb]{.title-ref}. With this, the default [-rx]{.title-ref}/ [-ra]{.title-ref} behavior is identical to pre-8.0 with respect to xfail tracebacks. While this is a behavior change, it brings default behavior back to pre-8.0.0 behavior, which ultimately was considered the better course of action.

    • #12281: Added support for keyword matching in marker expressions.

      Now tests can be selected by marker keyword arguments. Supported values are int{.interpreted-text role="class"}, (unescaped) str{.interpreted-text role="class"}, bool{.interpreted-text role="class"} & None{.interpreted-text role="data"}.

      See marker examples <marker_keyword_expression_example>{.interpreted-text role="ref"} for more information.

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

    • #12567: Added --no-fold-skipped command line option.

      If this option is set, then skipped tests in short summary are no longer grouped by reason but all tests are printed individually with their nodeid in the same way as other statuses.

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

    ... (truncated)

    Commits
    • bbcec9c Prepare release version 8.3.2
    • 78fe8b6 Merge pull request #12657 from pytest-dev/patchback/backports/8.3.x/6c806b499...
    • 238bad2 Merge pull request #12656 from RonnyPfannschmidt/fix-12652-detect-conda-env
    • ae6034a Merge pull request #12641 from pytest-dev/patchback/backports/8.3.x/c03989cee...
    • 31337ab Merge pull request #12640 from pytest-dev/update-user
    • ca3070b Merge pull request #12637 from pytest-dev/release-8.3.1
    • de98446 Prepare release version 8.3.1
    • bd0a042 Merge pull request #12636 from pytest-dev/update-release-notes
    • 664325b doc/changelog: update 8.3.0 notes
    • 19d225d Merge pull request #12635 from pytest-dev/release-8.3.0
    • 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: https://github.com/yaml/pyyaml/compare/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


    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