Skip to content

[MAINT]: Bump the minor-and-patch group with 6 updates - #41

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/minor-and-patch-a06831bb27
Closed

[MAINT]: Bump the minor-and-patch group with 6 updates#41
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/minor-and-patch-a06831bb27

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 16, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor-and-patch group with 6 updates:

Package From To
azure-kusto-data 6.0.3 6.0.4
azure-kusto-ingest 6.0.3 6.0.4
msgraph-sdk 1.56.0 1.57.0
playwright 1.58.0 1.59.0
pyright 1.1.408 1.1.409
ruff 0.15.11 0.15.13

Updates azure-kusto-data from 6.0.3 to 6.0.4

Release notes

Sourced from azure-kusto-data's releases.

v6.0.4

Changed

  • Bumped dependencies: azure-identity ≥ 1.25.3 and msal ≥ 1.35.1 for sovereign cloud support.
Changelog

Sourced from azure-kusto-data's changelog.

[6.0.4] - 2026-05-06

Changed

  • Bumped dependencies: azure-identity ≥ 1.25.3 and msal ≥ 1.35.1 for sovereign cloud support.
Commits
  • 5a8a712 Bump version to 6.0.4 and update changelog (#639)
  • d71f65a Bump azure-identity ≥ 1.25.3 and msal ≥ 1.35.1 for sovereign cloud support (#...
  • See full diff in compare view

Updates azure-kusto-ingest from 6.0.3 to 6.0.4

Release notes

Sourced from azure-kusto-ingest's releases.

v6.0.4

Changed

  • Bumped dependencies: azure-identity ≥ 1.25.3 and msal ≥ 1.35.1 for sovereign cloud support.
Changelog

Sourced from azure-kusto-ingest's changelog.

[6.0.4] - 2026-05-06

Changed

  • Bumped dependencies: azure-identity ≥ 1.25.3 and msal ≥ 1.35.1 for sovereign cloud support.
Commits
  • 5a8a712 Bump version to 6.0.4 and update changelog (#639)
  • d71f65a Bump azure-identity ≥ 1.25.3 and msal ≥ 1.35.1 for sovereign cloud support (#...
  • See full diff in compare view

Updates msgraph-sdk from 1.56.0 to 1.57.0

Release notes

Sourced from msgraph-sdk's releases.

v1.57.0

1.57.0 (2026-05-05)

Features

  • generation: update request builders and models (8f65301)
  • generation: update request builders and models (54ae3ef)
Changelog

Sourced from msgraph-sdk's changelog.

1.57.0 (2026-05-05)

Features

  • generation: update request builders and models (8f65301)
  • generation: update request builders and models (54ae3ef)
Commits
  • 253f6d4 Merge pull request #1462 from microsoftgraph/release-please--branches--main--...
  • 5070a90 chore(main): release 1.57.0
  • adecf1b Merge pull request #1465 from microsoftgraph/v1.0/pipelinebuild/217716
  • 8f65301 feat(generation): update request builders and models
  • 4856ad9 Merge pull request #1461 from microsoftgraph/v1.0/pipelinebuild/216321
  • 54ae3ef feat(generation): update request builders and models
  • 42807ad Merge pull request #1450 from microsoftgraph/copilot/add-dependabot-updates
  • 90d955d chore(deps-dev): bump the open-telemetry group with 3 updates
  • d714dd6 chore(deps): bump the kiota group with 7 updates
  • 52f922c chore(deps-dev): bump build from 1.3.0 to 1.4.3
  • Additional commits viewable in compare view

Updates playwright from 1.58.0 to 1.59.0

Release notes

Sourced from playwright's releases.

v1.59.0

🎬 Screencast

New page.screencast API provides a unified interface for capturing page content with:

  • Screencast recordings
  • Action annotations
  • Visual overlays
  • Real-time frame capture
  • Agentic video receipts

Screencast recording — record video with precise start/stop control, as an alternative to the recordVideoDir option:

page.screencast.start(path="video.webm")
# ... perform actions ...
page.screencast.stop()

Action annotations — enable built-in visual annotations that highlight interacted elements and display action titles during recording:

page.screencast.show_actions(position="top-right")

screencast.show_actions() accepts position ('top-left', 'top', 'top-right', 'bottom-left', 'bottom', 'bottom-right'), duration (ms per annotation), and font_size (px). Returns a disposable to stop showing actions.

Visual overlays — add chapter titles and custom HTML overlays on top of the page for richer narration:

page.screencast.show_chapter("Adding TODOs",
    description="Type and press enter for each TODO",
    duration=1000,
)
page.screencast.show_overlay('<div style="color: red">Recording</div>')

Real-time frame capture — stream JPEG-encoded frames for custom processing like thumbnails, live previews, AI vision, and more:

page.screencast.start(
    on_frame=lambda frame: send_to_vision_model(frame["data"]),
)

... (truncated)

Commits

Updates pyright from 1.1.408 to 1.1.409

Commits

Updates ruff from 0.15.11 to 0.15.13

Release notes

Sourced from ruff's releases.

0.15.13

Release Notes

Released on 2026-05-14.

Preview features

  • Add a rule to flag lazy imports that are eagerly evaluated (#25016)
  • [pylint] Standardize diagnostic message (PLR0914, PLR0917) (#24996)

Bug fixes

  • Fix F811 false positive for class methods (#24933)
  • Fix setting selection for multi-folder workspace (#24819)
  • [eradicate] Fix false positive for lines with leading whitespace (ERA001) (#25122)
  • [flake8-pyi] Fix false positive for f-string debug specifier (PYI016) (#24098)

Rule changes

  • Always include panic payload in panic diagnostic message (#24873)
  • Restrict PYI034 for in-place operations to enclosing class (#24511)
  • Improve error message for parameters that are declared global (#24902)
  • Update known stdlib (#25103)

Performance

  • [isort] Avoid constructing glob::Patterns for literal known modules (#25123)

CLI

  • Add TOML examples to --config help text (#25013)
  • Colorize ruff check 'All checks passed' (#25085)

Configuration

  • Increase max allowed value of line-length setting (#24962)

Documentation

  • Add D203 to rules that conflict with the formatter (#25044)
  • Clarify COM819 and formatter interaction (#25045)
  • Clarify that NotImplemented is a value, not an exception (F901) (#25054)
  • Update number of lint rules supported (#24942)

Other changes

  • Simplify the playground's markdown template (#24924)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.15.13

Released on 2026-05-14.

Preview features

  • Add a rule to flag lazy imports that are eagerly evaluated (#25016)
  • [pylint] Standardize diagnostic message (PLR0914, PLR0917) (#24996)

Bug fixes

  • Fix F811 false positive for class methods (#24933)
  • Fix setting selection for multi-folder workspace (#24819)
  • [eradicate] Fix false positive for lines with leading whitespace (ERA001) (#25122)
  • [flake8-pyi] Fix false positive for f-string debug specifier (PYI016) (#24098)

Rule changes

  • Always include panic payload in panic diagnostic message (#24873)
  • Restrict PYI034 for in-place operations to enclosing class (#24511)
  • Improve error message for parameters that are declared global (#24902)
  • Update known stdlib (#25103)

Performance

  • [isort] Avoid constructing glob::Patterns for literal known modules (#25123)

CLI

  • Add TOML examples to --config help text (#25013)
  • Colorize ruff check 'All checks passed' (#25085)

Configuration

  • Increase max allowed value of line-length setting (#24962)

Documentation

  • Add D203 to rules that conflict with the formatter (#25044)
  • Clarify COM819 and formatter interaction (#25045)
  • Clarify that NotImplemented is a value, not an exception (F901) (#25054)
  • Update number of lint rules supported (#24942)

Other changes

  • Simplify the playground's markdown template (#24924)

Contributors

... (truncated)

Commits
  • 2afb467 Bump 0.15.13 (#25157)
  • 3008796 [ty] classify TypeVar semantic tokens as type parameters (#24891)
  • 79470e3 [isort] Avoid constructing glob::Patterns for literal known modules (#25123)
  • 2522549 Remove shellcheck from prek (#25154)
  • 7db7170 [ty] Support TypedDict key completions in incomplete, anonymous contexts (#25...
  • bb3dd53 [ty] Run full iteration analysis on narrowed typevars (#25143)
  • 828cdb7 [ty] Isolate file-watching test environment (#25151)
  • 89e1d86 [ty] Preserve TypedDict keys through dict unpacking (#24523)
  • 86f3064 [ty] Avoid accessing args[0] for static_assert (#25149)
  • ed819f9 [ty] Treat custom enum __new__ values as dynamic (#25136)
  • 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 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 minor-and-patch group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [azure-kusto-data](https://github.com/Azure/azure-kusto-python) | `6.0.3` | `6.0.4` |
| [azure-kusto-ingest](https://github.com/Azure/azure-kusto-python) | `6.0.3` | `6.0.4` |
| [msgraph-sdk](https://github.com/microsoftgraph/msgraph-sdk-python) | `1.56.0` | `1.57.0` |
| [playwright](https://github.com/microsoft/playwright-python) | `1.58.0` | `1.59.0` |
| [pyright](https://github.com/RobertCraigie/pyright-python) | `1.1.408` | `1.1.409` |
| [ruff](https://github.com/astral-sh/ruff) | `0.15.11` | `0.15.13` |


Updates `azure-kusto-data` from 6.0.3 to 6.0.4
- [Release notes](https://github.com/Azure/azure-kusto-python/releases)
- [Changelog](https://github.com/Azure/azure-kusto-python/blob/master/CHANGELOG.md)
- [Commits](Azure/azure-kusto-python@v6.0.3...v6.0.4)

Updates `azure-kusto-ingest` from 6.0.3 to 6.0.4
- [Release notes](https://github.com/Azure/azure-kusto-python/releases)
- [Changelog](https://github.com/Azure/azure-kusto-python/blob/master/CHANGELOG.md)
- [Commits](Azure/azure-kusto-python@v6.0.3...v6.0.4)

Updates `msgraph-sdk` from 1.56.0 to 1.57.0
- [Release notes](https://github.com/microsoftgraph/msgraph-sdk-python/releases)
- [Changelog](https://github.com/microsoftgraph/msgraph-sdk-python/blob/main/CHANGELOG.md)
- [Commits](microsoftgraph/msgraph-sdk-python@v1.56.0...v1.57.0)

Updates `playwright` from 1.58.0 to 1.59.0
- [Release notes](https://github.com/microsoft/playwright-python/releases)
- [Commits](microsoft/playwright-python@v1.58.0...v1.59.0)

Updates `pyright` from 1.1.408 to 1.1.409
- [Release notes](https://github.com/RobertCraigie/pyright-python/releases)
- [Commits](RobertCraigie/pyright-python@v1.1.408...v1.1.409)

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

---
updated-dependencies:
- dependency-name: azure-kusto-data
  dependency-version: 6.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: azure-kusto-ingest
  dependency-version: 6.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: msgraph-sdk
  dependency-version: 1.57.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: playwright
  dependency-version: 1.59.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: pyright
  dependency-version: 1.1.409
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: ruff
  dependency-version: 0.15.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels May 16, 2026
@dependabot
dependabot Bot requested a review from a team May 16, 2026 00:12
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels May 16, 2026
@dependabot @github

dependabot Bot commented on behalf of github May 16, 2026

Copy link
Copy Markdown
Contributor Author

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

@dependabot dependabot Bot closed this May 16, 2026
@dependabot
dependabot Bot deleted the dependabot/uv/minor-and-patch-a06831bb27 branch May 16, 2026 01:04
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:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants