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 the development-dependencies group with 3 updates #610

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 12, 2024

Bumps the development-dependencies group with 3 updates: detect-secrets, ruff and pytest-playwright.

Updates detect-secrets from 1.4.0 to 1.5.0

Release notes

Sourced from detect-secrets's releases.

v1.5.0

📰 News

  • We're adding support for Python 3.10, 3.11 and 3.12 and we dropped support for Python 3.6 and 3.7! We hope this won't be too disruptive for you all. Be aware that in a next release, we'll remove support for Python 3.8 too, as it'll reach EOL in October 2024.

📣 Release Highlights

  • Added support for OS-agnostic baseline files (#586)

🎉 New Features

  • Added a detector for IP addresses (#692)
  • Added a detector for GitLab tokens (#782)
  • Added a detector for Telegram tokens (#808)
  • Added a detector for Pypi and TestPypi tokens (#819)
  • Added a detector for OpenAI tokens (#823)
Changelog

Sourced from detect-secrets's changelog.

v1.5.0

May 6th, 2024

We apologise for the extreme delay in publishing a new release for our beloved detect-secrets. We at Yelp appreciate your continued support and your contributions to this valuable project!

📰 News

  • We're adding support for Python 3.10, 3.11 and 3.12 and we dropped support for Python 3.6 and 3.7! We hope this won't be too disruptive for you all. Be aware that in a next release, we'll remove support for Python 3.8 too, as it'll reach EOL in October 2024.

📣 Release Highlights

  • Added support for OS-agnostic baseline files (#586)

🎉 New Features

  • Added a detector for IP addresses (#692)
  • Added a detector for GitLab tokens (#782)
  • Added a detector for Telegram tokens (#808)
  • Added a detector for Pypi and TestPypi tokens (#819)
  • Added a detector for OpenAI tokens (#823)

✨ Usability

  • Added filenames in errors thrown when a plugin file specified in the .secrets.baseline is not found. (#719)
  • Changed the wording of the audit prompt (#738)

🔭 Accuracy

  • Improved DiscordBotTokenDetector to reduce false negatives (#628)
  • Improved KeywordDetector to reduce false positive for Golang (#675)
  • Improved AWSKeyDetector by adding more access key formats (#796)

🐛 Bugfixes

  • Fixed NotImplementedError in StatisticsAggregator (#678)
  • Fixed bug in YAMLTransformer related to parsing YAML files with achors and tags (#679)
  • Fixed IndexError in is_prefixed_with_dollar_sign caused by passing empty strings (#712)

🐍 Miscellaneous

  • Dropped support for Python 3.6 (#672)
  • Dropped support for Python 3.7 (#724)
  • Added support for Python 3.10 (#724)
  • Added support for Python 3.11 (#730)
  • Added support for Python 3.12 (#810)
  • Multiple dependency updates

#586: Yelp/detect-secrets#586 #628: Yelp/detect-secrets#628 #672: Yelp/detect-secrets#672 #675: Yelp/detect-secrets#675 #678: Yelp/detect-secrets#678 #679: Yelp/detect-secrets#679 #692: Yelp/detect-secrets#692 #712: Yelp/detect-secrets#712 #719: Yelp/detect-secrets#719 #724: Yelp/detect-secrets#724

... (truncated)

Commits
  • 01886c8 Bump version: 1.4.0 → 1.5.0
  • cb271be Update changelog v1.5.0 release (#829)
  • 81157d0 Merge pull request #828 from Yelp/dependabot/pip/coverage-7.5.1
  • 7237fda Merge pull request #827 from Yelp/dependabot/pip/packaging-24.0
  • 8f4f823 Bump coverage from 7.4.0 to 7.5.1
  • adfe36f Bump packaging from 23.2 to 24.0
  • 928f03a Revert "Changelog for v1.5.0 release"
  • 98b0e9f Revert "Updated baseline file"
  • 89cdc79 Revert "Fixed version in baseline file"
  • 16e3452 Fixed version in baseline file
  • Additional commits viewable in compare view

Updates ruff from 0.4.3 to 0.4.4

Release notes

Sourced from ruff's releases.

v0.4.4

Changes

Preview features

  • [pycodestyle] Ignore end-of-line comments when determining blank line rules (#11342)
  • [pylint] Detect pathlib.Path.open calls in unspecified-encoding (PLW1514) (#11288)
  • [flake8-pyi] Implement PYI059 (generic-not-last-base-class) (#11233)
  • [flake8-pyi] Implement PYI062 (duplicate-literal-member) (#11269)

Rule changes

  • [flake8-boolean-trap] Allow passing booleans as positional-only arguments in code such as set(True) (#11287)
  • [flake8-bugbear] Ignore enum classes in cached-instance-method (B019) (#11312)

Server

  • Expand tildes when resolving Ruff server configuration file (#11283)
  • Fix ruff server hanging after Neovim closes (#11291)
  • Editor settings are used by default if no file-based configuration exists (#11266)

Bug fixes

  • [pylint] Consider with statements for too-many-branches (PLR0912) (#11321)
  • [flake8-blind-except, tryceratops] Respect logged and re-raised expressions in nested statements (BLE001, TRY201) (#11301)
  • Recognise assignments such as __all__ = builtins.list(["foo", "bar"]) as valid __all__ definitions (#11335)

Contributors

Changelog

Sourced from ruff's changelog.

0.4.4

Preview features

  • [pycodestyle] Ignore end-of-line comments when determining blank line rules (#11342)
  • [pylint] Detect pathlib.Path.open calls in unspecified-encoding (PLW1514) (#11288)
  • [flake8-pyi] Implement PYI059 (generic-not-last-base-class) (#11233)
  • [flake8-pyi] Implement PYI062 (duplicate-literal-member) (#11269)

Rule changes

  • [flake8-boolean-trap] Allow passing booleans as positional-only arguments in code such as set(True) (#11287)
  • [flake8-bugbear] Ignore enum classes in cached-instance-method (B019) (#11312)

Server

  • Expand tildes when resolving Ruff server configuration file (#11283)
  • Fix ruff server hanging after Neovim closes (#11291)
  • Editor settings are used by default if no file-based configuration exists (#11266)

Bug fixes

  • [pylint] Consider with statements for too-many-branches (PLR0912) (#11321)
  • [flake8-blind-except, tryceratops] Respect logged and re-raised expressions in nested statements (BLE001, TRY201) (#11301)
  • Recognise assignments such as __all__ = builtins.list(["foo", "bar"]) as valid __all__ definitions (#11335)
Commits
  • 3e8878a Bump version to v0.4.4 (#11352)
  • b6b4ad9 [red-knot] @​override lint rule (#11282)
  • dd42961 [pylint] Detect pathlib.Path.open calls in unspecified-encoding (`PLW15...
  • c80c171 [red-knot] Vendor typeshed's stdlib (#11340)
  • e2fe177 Revert "Simplify arithmetic operation in logical lines checker (#11346)" (#11...
  • e9d1cdd Simplify arithmetic operation in logical lines checker (#11346)
  • dfe4291 Improve ruff_python_semantic::all::extract_all_names() (#11335)
  • 4541337 [red-knot] Remove \<Db: SemanticDb> contraints in favor of dynamic dispatch ...
  • 8e9ddee Ignore end-of-line comments when determining blank line rules (#11342)
  • 702d2fa Make B024 and B027 documentation more nuanced (#11341)
  • Additional commits viewable in compare view

Updates pytest-playwright from 0.4.4 to 0.5.0

Release notes

Sourced from pytest-playwright's releases.

v0.5.0

Bugfixes:

Full Changelog: microsoft/playwright-pytest@v0.4.4...v0.5.0

Commits
  • 6d624fc devops: migrate publishing to ESRP (#226)
  • 74ade3e fix: migrate artifacts_folder to session fixture (#223)
  • 40ba0da fix: clean up videos after each test (#221)
  • 2d5a080 feat: support artifact collection with multiple contexts (#216)
  • be0be7c test: enhance test-artifact assertion utility (#218)
  • 3cec62e fix: improve video naming (#217)
  • 1a54e22 devops: delete unused conda_build_config (#214)
  • ac21122 devops: bump GitHub Action workflows (#215)
  • ff4f8e9 chore(deps): bump black from 22.6.0 to 24.3.0 (#212)
  • 6f38e7c chore(deps): bump django from 3.2.24 to 3.2.25 (#211)
  • 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 3 updates: [detect-secrets](https://github.com/Yelp/detect-secrets), [ruff](https://github.com/astral-sh/ruff) and [pytest-playwright](https://github.com/microsoft/playwright-pytest).


Updates `detect-secrets` from 1.4.0 to 1.5.0
- [Release notes](https://github.com/Yelp/detect-secrets/releases)
- [Changelog](https://github.com/Yelp/detect-secrets/blob/master/CHANGELOG.md)
- [Commits](Yelp/detect-secrets@v1.4.0...v1.5.0)

Updates `ruff` from 0.4.3 to 0.4.4
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@v0.4.3...v0.4.4)

Updates `pytest-playwright` from 0.4.4 to 0.5.0
- [Release notes](https://github.com/microsoft/playwright-pytest/releases)
- [Commits](microsoft/playwright-pytest@v0.4.4...v0.5.0)

---
updated-dependencies:
- dependency-name: detect-secrets
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: pytest-playwright
  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 requested a review from a team as a code owner May 12, 2024 09:40
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels May 12, 2024
@dependabot dependabot bot requested a review from leplatrem May 12, 2024 09:40
Copy link
Contributor Author

dependabot bot commented on behalf of github May 19, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this May 19, 2024
@dependabot dependabot bot deleted the dependabot/pip/development-dependencies-7fbed29e23 branch May 19, 2024 09:46
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.

None yet

0 participants