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

Build(deps): Bump the python-packages group with 6 updates #944

Merged
merged 2 commits into from
Oct 24, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 23, 2023

Bumps the python-packages group with 6 updates:

Package From To
psutil 5.9.5 5.9.6
pylint 2.17.7 3.0.2
autohooks-plugin-pylint 23.4.0 23.10.0
autohooks-plugin-black 23.7.0 23.10.0
pontos 23.9.2 23.10.3
black 23.9.1 23.10.0

Updates psutil from 5.9.5 to 5.9.6

Changelog

Sourced from psutil's changelog.

5.9.6

2023-10-15

Enhancements

  • 1703_: cpu_percent()_ and cpu_times_percent()_ are now thread safe, meaning they can be called from different threads and still return meaningful and independent results. Before, if (say) 10 threads called cpu_percent(interval=None) at the same time, only 1 thread out of 10 would get the right result.
  • 2266_: if Process_ class is passed a very high PID, raise NoSuchProcess_ instead of OverflowError. (patch by Xuehai Pan)
  • 2246_: drop python 3.4 & 3.5 support. (patch by Matthieu Darbois)
  • 2290_: PID reuse is now pre-emptively checked for Process.ppid()_ and Process.parents()_.
  • 2312_: use ruff Python linter instead of flake8 + isort. It's an order of magnitude faster + it adds a ton of new code quality checks.

Bug fixes

  • 2195_, [Linux]: no longer print exception at import time in case /proc/stat can't be read due to permission error. Redirect it to PSUTIL_DEBUG instead.
  • 2241_, [NetBSD]: can't compile On NetBSD 10.99.3/amd64. (patch by Thomas Klausner)
  • 2245_, [Windows]: fix var unbound error on possibly in swap_memory()_ (patch by student_2333)
  • 2268_: bytes2human() utility function was unable to properly represent negative values.
  • 2252_, [Windows]: disk_usage()_ fails on Python 3.12+. (patch by Matthieu Darbois)
  • 2284_, [Linux]: Process.memory_full_info()_ may incorrectly raise ZombieProcess_ if it's determined via /proc/pid/smaps_rollup. Instead we now fallback on reading /proc/pid/smaps.
  • 2287_, [OpenBSD], [NetBSD]: Process.is_running()_ erroneously return False for zombie processes, because creation time cannot be determined.
  • 2288_, [Linux]: correctly raise ZombieProcess_ on Process.exe(), Process.cmdline() and Process.memory_maps()_ instead of returning a "null" value.
  • 2290_: differently from what stated in the doc, PID reuse is not pre-emptively checked for Process.nice()_ (set), Process.ionice(), (set), Process.cpu_affinity() (set), Process.rlimit()_ (set), Process.parent()_.
  • 2308_, [OpenBSD]: Process.threads()_ always fail with AccessDenied (also as root).
Commits

Updates pylint from 2.17.7 to 3.0.2

Commits

Updates autohooks-plugin-pylint from 23.4.0 to 23.10.0

Release notes

Sourced from autohooks-plugin-pylint's releases.

autohooks-plugin-pylint 23.10.0

23.10.0 - 2023-10-18

Added

  • permission pull-requests write into update-header.yml (#424) 51f9dd0
  • Auto-merge workflow that activates squash merge on open PRs (#414) a4a9b43
  • Include dependency updates in release changelog dee5d4b

Removed

  • greenbonebot token from update-header.yml (#423) 6b88f2d
  • Use default config for conventional commits (#403) d6d74ca

Changed

  • Update supported Python versions (#425) 1d3890a
  • Group dependabot updates 98e8af5
  • Use generic reusable workflows 0592dd4
  • Resolve deprecation warnings in GitHub workflows d5bbc88

Bug Fixes

  • Remove cache: "true" input (#408) 69a14d9
  • Fix conventional commits workflow 13f4b24
  • Set permission on conventional commits workflow 618e27b

Dependencies

  • Bump the python-packages group with 1 update (#422) ebaffc3
  • Bump the python-packages group with 3 updates (#421) 21a6097
  • Bump astroid from 2.15.6 to 2.15.7 (#415) 5157f73
  • Bump rich from 13.5.2 to 13.5.3 2c466c3
  • Bump actions/checkout from 3 to 4 (#412) 760fab9
  • Bump exceptiongroup from 1.1.2 to 1.1.3 (#410) a795cd4
  • Bump click from 8.1.6 to 8.1.7 (#411) 8c81b98
  • Update dependencies to latest releases 03f056b
  • Bump pylint from 2.17.4 to 2.17.5 e39152d
  • Bump greenbone/actions from 2 to 3 799141d
  • Bump mypy from 1.3.0 to 1.4.1 22b47c6
  • Bump platformdirs from 3.5.1 to 3.5.3 0d76dfb
  • Bump typing-extensions from 4.6.2 to 4.6.3 5235530
  • Bump coverage from 7.2.6 to 7.2.7 9d8e917
  • Bump rich from 13.3.5 to 13.4.1 4549ccc
  • Bump anyio from 3.6.2 to 3.7.0 061a162
  • Bump coverage from 7.2.5 to 7.2.6 177332d
  • Bump typing-extensions from 4.5.0 to 4.6.2 75ce0a5
Commits
  • 072114c Automatic release to 23.10.0
  • 1d3890a Change: Update supported Python versions (#425)
  • 51f9dd0 Add: permission pull-requests write into update-header.yml (#424)
  • 6b88f2d Remove: greenbonebot token from update-header.yml (#423)
  • ebaffc3 Deps: Bump the python-packages group with 1 update (#422)
  • 21a6097 Deps: Bump the python-packages group with 3 updates (#421)
  • 98e8af5 Change: Group dependabot updates
  • 5157f73 Deps: Bump astroid from 2.15.6 to 2.15.7 (#415)
  • 2c466c3 Deps: Bump rich from 13.5.2 to 13.5.3
  • 760fab9 Deps: Bump actions/checkout from 3 to 4 (#412)
  • Additional commits viewable in compare view

Updates autohooks-plugin-black from 23.7.0 to 23.10.0

Release notes

Sourced from autohooks-plugin-black's releases.

autohooks-plugin-black 23.10.0

23.10.0 - 2023-10-18

Added

  • permission pull-requests write into update-header.yml (#531) 65228d9
  • Workflow to activate auto-merge squash in PRs d219fde

Removed

  • greenbonebot token from update-header.yml (#530) 418bbaf
  • cache: "true" input, remove mypy job (#500) 6f14bd4

Changed

  • Drop support for Python 3.8 and support Python 3.12 3f17d43
  • Dependabot grouping 6debbcf

Dependencies

Commits
  • b3de180 Automatic release to 23.10.0
  • 9d42f4e Update dependencies
  • 3f17d43 Change: Drop support for Python 3.8 and support Python 3.12
  • 423486e Deps: Bump the dependencies group with 1 update (#532)
  • 65228d9 Add: permission pull-requests write into update-header.yml (#531)
  • 418bbaf Remove: greenbonebot token from update-header.yml (#530)
  • 0a3251f Deps: Bump the dependencies group with 3 updates (#529)
  • f10b1ee Deps: Bump the dependencies group with 2 updates (#528)
  • 1c61352 Deps: Bump the dependencies group with 1 update (#527)
  • 8a6dbda Fix Typo (#526)
  • Additional commits viewable in compare view

Updates pontos from 23.9.2 to 23.10.3

Release notes

Sourced from pontos's releases.

pontos 23.10.3

23.10.3 - 2023-10-19

Added

  • Extend GitHub code scanning API for handling SARIF data e033971
  • Extend GitHub API for code scanning default setup 4607a2e
  • Extend GitHub API for code scanning CodeQL database 15b6df4
  • Extend GitHub API for code scanning analyses 9993a95
  • Enable GitHub code scanning API efe1544

Dependencies

pontos 23.10.2

23.10.2 - 2023-10-16

Added

  • Add most important parts of the GitHub code scanning API 3ebc073
  • Add models for GitHub code scanning API 4124aab
  • Add tests for getting a single secret scanning alert 583af9d
  • Officially support Python 3.12 32734df

Changed

  • Improve Model class for invalid data while parsing child models (#904) 7394814
  • Ensure HTTP errors are raised on GitHub security API aaa084c
  • Improve secret scanning API usage examples 17d8436

Bug Fixes

  • Allow empty CPE match for CVE configuration nodes 470cf35

Dependencies

  • Bump the python-packages group with 3 updates (#906) 066169b

pontos 23.10.1

23.10.1 - 2023-10-09

Dependencies

  • Bump the python-packages group with 4 updates (#898) 1ab0119

pontos 23.10.0

[23.10.0] - 2023-10-06

Added

  • Allow to enforce uploading releases as GitHub pre-releases (#894) 710fb09

... (truncated)

Commits
  • 290f834 Automatic release to 23.10.3
  • b57030d Fix upload sarif data test for Python < 3.11
  • e033971 Add: Extend GitHub code scanning API for handling SARIF data
  • 4607a2e Add: Extend GitHub API for code scanning default setup
  • 15b6df4 Add: Extend GitHub API for code scanning CodeQL database
  • 9993a95 Add: Extend GitHub API for code scanning analyses
  • efe1544 Add: Enable GitHub code scanning API
  • 070f2de Deps: Bump urllib3 from 2.0.6 to 2.0.7 (#908)
  • 0d47c49 Automatic adjustments after release
  • 99f0ef4 Automatic release to 23.10.2
  • Additional commits viewable in compare view

Updates black from 23.9.1 to 23.10.0

Release notes

Sourced from black's releases.

23.10.0

Stable style

  • Fix comments getting removed from inside parenthesized strings (#3909)

Preview style

  • Fix long lines with power operators getting split before the line length (#3942)
  • Long type hints are now wrapped in parentheses and properly indented when split across multiple lines (#3899)
  • Magic trailing commas are now respected in return types. (#3916)
  • Require one empty line after module-level docstrings. (#3932)
  • Treat raw triple-quoted strings as docstrings (#3947)

Configuration

  • Fix cache versioning logic when BLACK_CACHE_DIR is set (#3937)

Parser

  • Fix bug where attributes named type were not acccepted inside match statements (#3950)
  • Add support for PEP 695 type aliases containing lambdas and other unusual expressions (#3949)

Output

  • Black no longer attempts to provide special errors for attempting to format Python 2 code (#3933)
  • Black will more consistently print stacktraces on internal errors in verbose mode (#3938)

Integrations

  • The action output displayed in the job summary is now wrapped in Markdown (#3914)
Changelog

Sourced from black's changelog.

23.10.0

Stable style

  • Fix comments getting removed from inside parenthesized strings (#3909)

Preview style

  • Fix long lines with power operators getting split before the line length (#3942)
  • Long type hints are now wrapped in parentheses and properly indented when split across multiple lines (#3899)
  • Magic trailing commas are now respected in return types. (#3916)
  • Require one empty line after module-level docstrings. (#3932)
  • Treat raw triple-quoted strings as docstrings (#3947)

Configuration

  • Fix cache versioning logic when BLACK_CACHE_DIR is set (#3937)

Parser

  • Fix bug where attributes named type were not accepted inside match statements (#3950)
  • Add support for PEP 695 type aliases containing lambdas and other unusual expressions (#3949)

Output

  • Black no longer attempts to provide special errors for attempting to format Python 2 code (#3933)
  • Black will more consistently print stacktraces on internal errors in verbose mode (#3938)

Integrations

  • The action output displayed in the job summary is now wrapped in Markdown (#3914)
Commits
  • 9edba85 Prepare release 23.10.0 (#3951)
  • bb58807 Fix parser bug where "type" was misinterpreted as a keyword inside a match (#...
  • 722735d Fix grammar for type alias support (#3949)
  • abe57e3 Treat raw strings like other docstrings (#3947)
  • 1648ac5 Fix long lines with power operator(s) getting splitted before line length (#3...
  • 6f84f65 Migrate mypy config to pyproject.toml (#3936)
  • 3bb9214 CI Test: Deprecating 'Healthcheck.all()' from Hypothesis in fuzz.py (#3945)
  • 935f303 Fix test that was not being run (#3939)
  • b7717c3 Standardise newlines after module-level docstrings (#3932)
  • 7aa37ea Report all stacktraces in verbose mode (#3938)
  • 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 python-packages group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [psutil](https://github.com/giampaolo/psutil) | `5.9.5` | `5.9.6` |
| [pylint](https://github.com/pylint-dev/pylint) | `2.17.7` | `3.0.2` |
| [autohooks-plugin-pylint](https://github.com/greenbone/autohooks-plugin-pylint) | `23.4.0` | `23.10.0` |
| [autohooks-plugin-black](https://github.com/greenbone/autohooks-plugin-black) | `23.7.0` | `23.10.0` |
| [pontos](https://github.com/greenbone/pontos) | `23.9.2` | `23.10.3` |
| [black](https://github.com/psf/black) | `23.9.1` | `23.10.0` |


Updates `psutil` from 5.9.5 to 5.9.6
- [Changelog](https://github.com/giampaolo/psutil/blob/master/HISTORY.rst)
- [Commits](giampaolo/psutil@release-5.9.5...release-5.9.6)

Updates `pylint` from 2.17.7 to 3.0.2
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v2.17.7...v3.0.2)

Updates `autohooks-plugin-pylint` from 23.4.0 to 23.10.0
- [Release notes](https://github.com/greenbone/autohooks-plugin-pylint/releases)
- [Commits](greenbone/autohooks-plugin-pylint@v23.4.0...v23.10.0)

Updates `autohooks-plugin-black` from 23.7.0 to 23.10.0
- [Release notes](https://github.com/greenbone/autohooks-plugin-black/releases)
- [Commits](greenbone/autohooks-plugin-black@v23.7.0...v23.10.0)

Updates `pontos` from 23.9.2 to 23.10.3
- [Release notes](https://github.com/greenbone/pontos/releases)
- [Commits](greenbone/pontos@v23.9.2...v23.10.3)

Updates `black` from 23.9.1 to 23.10.0
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@23.9.1...23.10.0)

---
updated-dependencies:
- dependency-name: psutil
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: pylint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: autohooks-plugin-pylint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: autohooks-plugin-black
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pontos
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: black
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages
...

Signed-off-by: dependabot[bot] <[email protected]>
ospd/server.py:67:20: W0134: 'return' shadowed by the 'finally' clause. (return-in-finally)
@jjnicola jjnicola merged commit cdd05f9 into main Oct 24, 2023
12 checks passed
@jjnicola jjnicola deleted the dependabot/pip/python-packages-5d22c9ff1b branch October 24, 2023 08:03
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants