Skip to content
This repository was archived by the owner on Jul 21, 2025. It is now read-only.

Bump asteval from 0.9.23 to 1.0.6#1

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pip/asteval-1.0.6
Open

Bump asteval from 0.9.23 to 1.0.6#1
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/pip/asteval-1.0.6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jan 23, 2025

Copy link
Copy Markdown

Bumps asteval from 0.9.23 to 1.0.6.

Release notes

Sourced from asteval's releases.

1.0.6

  • drop testing and support for Python3.8, add Python 3.13, change document to reflect this.
  • implement safe_getattr and safe_format functions; fix bugs in UNSAFE_ATTRS and UNSAFE_ATTRS_DTYPES usage
  • make all procedure attributes private to curb access to AST nodes, which can be exploited
  • improvements to error messages, including use ast functions to construct better error messages
  • remove import of numpy.linalg, as documented
  • update doc description for security advisory

Special thanks to @​SteakEnthusiast for the security-related fixes

1.0.5

bugfix:

  • more work on handling errors, including fixing #133 and adding more comprehensive tests for #129 and #132

1.0.4

bugfix:

  • fix error handling that might result in null exception

1.0.3

bug fixes, a few feature enhancements:

  • functions ("Procedures") defined within asteval have a _signature() method, now use in repr
  • add support for deleting subscript
  • nested symbol tables now have a Group() function
  • update coverage config
  • cleanups of exception handling : errors must now have an exception
  • several related fixes to suppress repeated exceptions: see GH #132 and #129
  • make non-boolean return values from comparison operators behave like Python - not immediately testing as bool

1.0.2

bug fixes:

  • fix NameError handling in expression code
  • make exception messages more Python-like

1.0.1

security fixes, based on audit by Andrew Effenhauser, Ayman Hammad, and Daniel Crowley, IBM X-Force Security Research division

  • remove numpy modules polynomial, fft, linalg by default for security concerns
  • disallow string.format(), improve security of f-string evaluation

1.0.0

Asteval 1.0.0

Asteval has been fairly mature for a while, with major improvements since version 0.9.29 over the past year or so making it feel like it has reached a point where the features and API are stable enough to call version 1.0.0.

Changes compared to 0.9.33:

  • fix (again) nested list comprehension (Issues #127 and #126).

... (truncated)

Commits
  • 40c3196 document support for Python 3.9 to 3.13
  • 70eb46b using ast functions to construct better error messages
  • b578ce1 work on improving error messages
  • 9dbd8ad update supported version
  • ea78397 update copyright
  • 36abc02 change tested versions to 3.9 to 3.13
  • 68a43a1 drop Python3.8 testing
  • 8e0700e include text and better lineno info for better exceptions
  • 6970d89 some doc updates
  • 5840a7f fix doc Makefile
  • 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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Summary by Sourcery

Update asteval to 1.0.6.

Bug Fixes:

  • Fix null exceptions during error handling.
  • Resolve issues with repeated exceptions.
  • Address NameError handling in expressions.
  • Make exception messages more Pythonic.

Enhancements:

  • Drop support for Python 3.8 and add support for 3.13.
  • Implement safe_getattr and safe_format functions.
  • Make procedure attributes private.
  • Improve error messages using AST functions.
  • Remove numpy.linalg import.
  • Add _signature() method to procedures defined within asteval.
  • Support deleting subscripts.
  • Add Group() function to nested symbol tables.
  • Make non-boolean return values from comparison operators behave like Python.
  • Fix nested list comprehension.

Tests:

  • Add more comprehensive tests for exception handling.

Bumps [asteval](https://github.com/lmfit/asteval) from 0.9.23 to 1.0.6.
- [Release notes](https://github.com/lmfit/asteval/releases)
- [Commits](lmfit/asteval@0.9.23...1.0.6)

---
updated-dependencies:
- dependency-name: asteval
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jan 23, 2025
@sourcery-ai

sourcery-ai Bot commented Jan 23, 2025

Copy link
Copy Markdown

Reviewer's Guide by Sourcery

This pull request bumps the asteval dependency from version 0.9.23 to 1.0.6. This is a major version upgrade that includes security fixes, bug fixes, and feature enhancements.

State diagram of asteval version transition

stateDiagram-v2
    state "asteval 0.9.23" as old
    state "asteval 1.0.6" as new

    [*] --> old
    old --> new: Version Bump

    state new {
        [*] --> SecurityEnhancements
        SecurityEnhancements --> BugFixes
        BugFixes --> FeatureImprovements

        state SecurityEnhancements {
            [*] --> private_attrs
            [*] --> safe_functions
            [*] --> removed_unsafe
        }

        state BugFixes {
            [*] --> error_handling
            [*] --> nested_comprehension
        }

        state FeatureImprovements {
            [*] --> better_errors
            [*] --> python_compatibility
        }
    }
Loading

File-Level Changes

Change Details Files
Updated the asteval dependency to version 1.0.6.
  • Updated the asteval version from 0.9.23 to 1.0.6 in requirements.txt
requirements.txt

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!
  • Generate a plan of action for an issue: Comment @sourcery-ai plan on
    an issue to generate a plan of action for it.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@sourcery-ai sourcery-ai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have skipped reviewing this pull request. Here's why:

  • It seems to have been created by a bot (hey, dependabot[bot]!). We assume it knows what it's doing!
  • We don't review packaging changes - Let us know if you'd like us to change this.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants