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

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps 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

    Dependabot compatibility score

    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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

    Bumps [pyparsing](https://github.com/pyparsing/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)
    
    ---
    updated-dependencies:
    - dependency-name: pyparsing
      dependency-type: direct:development
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    @dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 26, 2024
    Copy link

    🦙 MegaLinter status: ✅ SUCCESS

    Descriptor Linter Files Fixed Errors Elapsed time
    ✅ ACTION actionlint 4 0 0.3s
    ✅ COPYPASTE jscpd yes no 10.73s
    ✅ JSON prettier 2 0 0 0.44s
    ✅ JSON v8r 2 0 3.39s
    ✅ MARKDOWN markdownlint 1 0 0 0.37s
    ✅ MARKDOWN markdown-link-check 1 0 1.44s
    ✅ MARKDOWN markdown-table-formatter 1 0 0 0.33s
    ✅ PYTHON bandit 231 0 9.06s
    ✅ PYTHON black 231 0 0 4.75s
    ✅ PYTHON flake8 231 0 3.74s
    ✅ PYTHON isort 231 0 0 0.96s
    ✅ PYTHON mypy 231 0 6.97s
    ✅ PYTHON pylint 231 0 57.35s
    ✅ PYTHON ruff 231 0 0 0.19s
    ✅ REPOSITORY checkov yes no 13.54s
    ✅ REPOSITORY gitleaks yes no 3.77s
    ✅ REPOSITORY git_diff yes no 0.05s
    ✅ REPOSITORY grype yes no 16.54s
    ✅ REPOSITORY secretlint yes no 4.05s
    ✅ REPOSITORY trivy-sbom yes no 1.75s
    ✅ REPOSITORY trufflehog yes no 20.02s
    ✅ YAML prettier 8 0 0 0.69s
    ✅ YAML v8r 8 0 8.83s
    ✅ YAML yamllint 8 0 0.48s

    See detailed report in MegaLinter reports

    MegaLinter is graciously provided by OX Security

    Copy link

    Test Results

        3 files  ±0      3 suites  ±0   56m 28s ⏱️ - 1m 32s
      415 tests ±0    415 ✅ ±0    0 💤 ±0  0 ❌ ±0 
    1 245 runs  ±0  1 047 ✅ ±0  198 💤 ±0  0 ❌ ±0 

    Results for commit 2a3440f. ± Comparison against base commit 3a91e6f.

    @ISAS-Admin ISAS-Admin closed this Aug 26, 2024
    @ISAS-Admin ISAS-Admin deleted the dependabot/pip/pyparsing-3.1.4 branch August 26, 2024 22:15
    Copy link
    Contributor Author

    dependabot bot commented on behalf of github Aug 26, 2024

    OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

    If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

    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
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    1 participant