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

chore(deps-dev): bump the development-dependencies group with 5 updates #2942

Merged

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the development-dependencies group with 5 updates:

Package From To
boto3-stubs 1.35.0 1.35.5
mypy 1.11.1 1.11.2
ruff 0.6.1 0.6.2
pyparsing 3.1.2 3.1.4
bump-my-version 0.25.4 0.26.0

Updates boto3-stubs from 1.35.0 to 1.35.5

Commits

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 ruff from 0.6.1 to 0.6.2

Release notes

Sourced from ruff's releases.

0.6.2

Release Notes

Preview features

  • [flake8-simplify] Extend open-file-with-context-handler to work with other standard-library IO modules (SIM115) (#12959)
  • [ruff] Avoid unused-async for functions with FastAPI route decorator (RUF029) (#12938)
  • [ruff] Ignore fstring-missing-syntax (RUF027) for fastAPI paths (#12939)
  • [ruff] Implement check for Decimal called with a float literal (RUF032) (#12909)

Rule changes

  • [flake8-bugbear] Update diagnostic message when expression is at the end of function (B015) (#12944)
  • [flake8-pyi] Skip type annotations in string-or-bytes-too-long (PYI053) (#13002)
  • [flake8-type-checking] Always recognise relative imports as first-party (#12994)
  • [flake8-unused-arguments] Ignore unused arguments on stub functions (ARG001) (#12966)
  • [pylint] Ignore augmented assignment for self-cls-assignment (PLW0642) (#12957)

Server

  • Show full context in error log messages (#13029)

Bug fixes

  • [pep8-naming] Don't flag from imports following conventional import names (N817) (#12946)
  • [pylint] - Allow __new__ methods to have cls as their first argument even if decorated with @staticmethod for bad-staticmethod-argument (PLW0211) (#12958)

Documentation

  • Add hyperfine installation instructions; update hyperfine code samples (#13034)
  • Expand note to use Ruff with other language server in Kate (#12806)
  • Update example for PT001 as per the new default behavior (#13019)
  • [perflint] Improve docs for try-except-in-loop (PERF203) (#12947)
  • [pydocstyle] Add reference to lint.pydocstyle.ignore-decorators setting to rule docs (#12996)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.6.2

Preview features

  • [flake8-simplify] Extend open-file-with-context-handler to work with other standard-library IO modules (SIM115) (#12959)
  • [ruff] Avoid unused-async for functions with FastAPI route decorator (RUF029) (#12938)
  • [ruff] Ignore fstring-missing-syntax (RUF027) for fastAPI paths (#12939)
  • [ruff] Implement check for Decimal called with a float literal (RUF032) (#12909)

Rule changes

  • [flake8-bugbear] Update diagnostic message when expression is at the end of function (B015) (#12944)
  • [flake8-pyi] Skip type annotations in string-or-bytes-too-long (PYI053) (#13002)
  • [flake8-type-checking] Always recognise relative imports as first-party (#12994)
  • [flake8-unused-arguments] Ignore unused arguments on stub functions (ARG001) (#12966)
  • [pylint] Ignore augmented assignment for self-cls-assignment (PLW0642) (#12957)

Server

  • Show full context in error log messages (#13029)

Bug fixes

  • [pep8-naming] Don't flag from imports following conventional import names (N817) (#12946)
  • [pylint] - Allow __new__ methods to have cls as their first argument even if decorated with @staticmethod for bad-staticmethod-argument (PLW0211) (#12958)

Documentation

  • Add hyperfine installation instructions; update hyperfine code samples (#13034)
  • Expand note to use Ruff with other language server in Kate (#12806)
  • Update example for PT001 as per the new default behavior (#13019)
  • [perflint] Improve docs for try-except-in-loop (PERF203) (#12947)
  • [pydocstyle] Add reference to lint.pydocstyle.ignore-decorators setting to rule docs (#12996)
Commits
  • 02c4373 Bump version to 0.6.2 (#13056)
  • d37e2e5 [flake8-simplify] Extend open-file-with-context-handler to work with other ...
  • d1d0678 [red-knot] Remove notebook support from the server (#13040)
  • 93f9023 Add hyperfine installation instructions; update hyperfine code samples (#...
  • 8144a11 [red-knot] Add definition for with items (#12920)
  • dce87c2 Eagerly validate typeshed versions (#12786)
  • f873d2a Revert "Use the system allocator for codspeed benchmarks" (#13035)
  • ecd9e6a [red-knot] Improve the unresolved-import check (#13007)
  • 785c399 Use ZIP file size metadata to allocate string (#13032)
  • a35cdbb Fix various panicks when linting black/src (#13033)
  • 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

  • Fix to 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. 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.

  • Updated railroad diagram generation for ZeroOrMore and OneOrMore expressions with

  • ... (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 bump-my-version from 0.25.4 to 0.26.0

    Release notes

    Sourced from bump-my-version's releases.

    0.26.0

    Compare the full difference.

    Fixes

    • Fix issues with environment test on windows. 04a98d0

    • Fixed redundant tests for SCM. e50e991

    New

    • Added hook suite documentation. b73a6e1

    • Added hooks to bump command. 3b638e0

    • Added tests for hooks. 8446567

    • Add hooks configuration fields. d6b24f0

      Introduced setup_hooks, pre_bump_hooks, and post_bump_hooks fields to configuration models. Updated corresponding test fixtures to verify these new fields.

    • Add current_tag field to scm_info. 304c599

      Updated the scm_info structure to include a new field, current_tag, across various configuration files and source code. This ensures that the current tag is tracked and represented in the output formats correctly.

    Other

    • Enhance hook handling and testing across hook types. 49f1953

      • Introduced unified handling for setup, pre-commit, and post-commit hooks, including dry-run support.

      • Added comprehensive tests to ensure the correct behavior for all hook phases, including cases where no hooks are specified or in dry run mode.

      • Updated environment setup to use a common version environment function.

    • [pre-commit.ci] pre-commit autoupdate. 4342198

      updates: - github.com/astral-sh/ruff-pre-commit: v0.5.6 → v0.5.7

    Updates

    • Changed the terminology for hooks. 049b470

      Change pre-bump and post-bump to pre-commit and post-commit to better indicate their order of operations.

    Changelog

    Sourced from bump-my-version's changelog.

    0.26.0 (2024-08-19)

    Compare the full difference.

    Fixes

    • Fix issues with environment test on windows. 04a98d0

    • Fixed redundant tests for SCM. e50e991

    New

    • Added hook suite documentation. b73a6e1

    • Added hooks to bump command. 3b638e0

    • Added tests for hooks. 8446567

    • Add hooks configuration fields. d6b24f0

      Introduced setup_hooks, pre_bump_hooks, and post_bump_hooks fields to configuration models. Updated corresponding test fixtures to verify these new fields.

    • Add current_tag field to scm_info. 304c599

      Updated the scm_info structure to include a new field, current_tag, across various configuration files and source code. This ensures that the current tag is tracked and represented in the output formats correctly.

    Other

    • Enhance hook handling and testing across hook types. 49f1953

      • Introduced unified handling for setup, pre-commit, and post-commit hooks, including dry-run support.

      • Added comprehensive tests to ensure the correct behavior for all hook phases, including cases where no hooks are specified or in dry run mode.

      • Updated environment setup to use a common version environment function.

    • [pre-commit.ci] pre-commit autoupdate. 4342198

      updates: - github.com/astral-sh/ruff-pre-commit: v0.5.6 → v0.5.7

    Updates

    • Changed the terminology for hooks. 049b470

      Change pre-bump and post-bump to pre-commit and post-commit to better indicate their order of operations.

    Commits
    • e7e1783 Version updated from 0.25.4 to 0.26.0
    • 6735a61 Merge pull request #228 from callowayproject/pre-post-bump-tasks
    • 04a98d0 Fix issues with environment test on windows
    • b73a6e1 Added hook suite documentation
    • 49f1953 Enhance hook handling and testing across hook types
    • 3b638e0 Added hooks to bump command
    • 8446567 Added tests for hooks
    • 049b470 Changed the terminology for hooks.
    • e50e991 Fixed redundant tests for SCM
    • d6b24f0 Add hooks configuration fields
    • 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 development-dependencies group with 5 updates:
    
    | Package | From | To |
    | --- | --- | --- |
    | [boto3-stubs](https://github.com/youtype/mypy_boto3_builder) | `1.35.0` | `1.35.5` |
    | [mypy](https://github.com/python/mypy) | `1.11.1` | `1.11.2` |
    | [ruff](https://github.com/astral-sh/ruff) | `0.6.1` | `0.6.2` |
    | [pyparsing](https://github.com/pyparsing/pyparsing) | `3.1.2` | `3.1.4` |
    | [bump-my-version](https://github.com/callowayproject/bump-my-version) | `0.25.4` | `0.26.0` |
    
    
    Updates `boto3-stubs` from 1.35.0 to 1.35.5
    - [Release notes](https://github.com/youtype/mypy_boto3_builder/releases)
    - [Commits](https://github.com/youtype/mypy_boto3_builder/commits)
    
    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 `ruff` from 0.6.1 to 0.6.2
    - [Release notes](https://github.com/astral-sh/ruff/releases)
    - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
    - [Commits](astral-sh/ruff@0.6.1...0.6.2)
    
    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 `bump-my-version` from 0.25.4 to 0.26.0
    - [Release notes](https://github.com/callowayproject/bump-my-version/releases)
    - [Changelog](https://github.com/callowayproject/bump-my-version/blob/master/CHANGELOG.md)
    - [Commits](callowayproject/bump-my-version@0.25.4...0.26.0)
    
    ---
    updated-dependencies:
    - dependency-name: boto3-stubs
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: development-dependencies
    - dependency-name: mypy
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: development-dependencies
    - dependency-name: ruff
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: development-dependencies
    - dependency-name: pyparsing
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: development-dependencies
    - dependency-name: bump-my-version
      dependency-type: direct:development
      update-type: version-update:semver-minor
      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 26, 2024
    @malachi-constant
    Copy link
    Contributor

    AWS CodeBuild CI Report

    • CodeBuild project: GitHubCodeBuild8756EF16-4rfo0GHQ0u9a
    • Commit ID: f790081
    • Result: SUCCEEDED
    • Build Logs (available for 30 days)

    Powered by github-codebuild-logs, available on the AWS Serverless Application Repository

    @malachi-constant
    Copy link
    Contributor

    AWS CodeBuild CI Report

    • CodeBuild project: GitHubDistributedCodeBuild6-jWcl5DLmvupS
    • Commit ID: f790081
    • Result: SUCCEEDED
    • Build Logs (available for 30 days)

    Powered by github-codebuild-logs, available on the AWS Serverless Application Repository

    @LeonLuttenberger LeonLuttenberger merged commit 9f4e160 into main Aug 26, 2024
    18 checks passed
    @LeonLuttenberger LeonLuttenberger deleted the dependabot/pip/development-dependencies-4d96debce3 branch August 26, 2024 13:39
    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
    2 participants