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

🚨 Fix security scanning for CVE-2022-42969 #819

Merged
merged 2 commits into from
Nov 21, 2022

Commits on Nov 21, 2022

  1. 🔒 Temporarily ignore CVE-2022-42969

    Must remove dependence on transitive dependencies:
    ```
    ❯ poetry show py
     name         : py
     version      : 1.11.0
     description  : library with cross-python path, ini-parsing, io, code, log facilities
    
    required by
     - pytest-forked *
     - pyzmq *
     - tox >=1.4.17
    ```
    
    Note:
      - `pytest-forked` removed as of tox `3.0.0`
      - tox does not use affected part of the library, and 4.0 will remove
      py dependency completely.
    TeoZosa committed Nov 21, 2022
    Configuration menu
    Copy the full SHA
    ec0dcbd View commit details
    Browse the repository at this point in the history
  2. 🍪 🔒 Ignore CVE-2022-42969 until tox 4.0

    Used by tox:
    ```
    ❯ poetry show py
     name         : py
     version      : 1.11.0
     description  : library with cross-python path, ini-parsing, io, code, log facilities
    
    required by
     - tox >=1.4.17
    ```
    
    But tox does not use the affected part of the library
    - ref: tox-dev/tox#2524 (comment)
    TeoZosa committed Nov 21, 2022
    Configuration menu
    Copy the full SHA
    55bbeb7 View commit details
    Browse the repository at this point in the history