Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 2, 2025

Bumps the python-dependencies group with 26 updates:

Package From To
jupyterlab 4.4.5 4.4.6
pylint 3.3.7 3.3.8
anyio 4.9.0 4.10.0
beautifulsoup4 4.13.4 4.13.5
certifi 2025.7.14 2025.8.3
charset-normalizer 3.4.2 3.4.3
debugpy 1.8.15 1.8.16
executing 2.2.0 2.2.1
fastjsonschema 2.21.1 2.21.2
ipykernel 6.30.0 6.30.1
ipython 9.4.0 9.5.0
json5 0.12.0 0.12.1
jsonschema 4.25.0 4.25.1
jupyter-lsp 2.2.6 2.3.0
jupyter-server 2.16.0 2.17.0
mistune 3.1.3 3.1.4
parso 0.8.4 0.8.5
platformdirs 4.3.8 4.4.0
prompt-toolkit 3.0.51 3.0.52
pyzmq 27.0.0 27.0.2
requests 2.32.4 2.32.5
rpds-py 0.26.0 0.27.1
soupsieve 2.7 2.8
tornado 6.5.1 6.5.2
types-python-dateutil 2.9.0.20250708 2.9.0.20250822
typing-extensions 4.14.1 4.15.0

Updates jupyterlab from 4.4.5 to 4.4.6

Release notes

Sourced from jupyterlab's releases.

v4.4.6

4.4.6

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Documentation improvements

Contributors to this release

(GitHub contributors page for this release)

@​brichet | @​Darshan808 | @​fcollonval | @​github-actions | @​jtpio | @​jupyterlab-probot | @​krassowski | @​meeseeksmachine | @​Zsailer

Commits

Updates pylint from 3.3.7 to 3.3.8

Commits
  • 98942ba Bump pylint to 3.3.8, update changelog (#10486)
  • 6a1620a Update pytest-benchmark requirement from ~=4.0 to ~=5.1 (#10066) (#10484)
  • cef60cc Fix false-negative for used-before-assignment with postponed evaluation in fu...
  • 5a5a9be Fix unused-variable false positive when using same name for multiple except...
  • 6ec71ba Respect docstring-min-length in docparams extension (#10104) (#10434)
  • fbde890 Fix Mermaid printer rendering double underscores as bold formatting (#10403) ...
  • 51234e5 Fix Pyreverse: Aggregations aren't filtered according to filter mode (PUB_ONL...
  • 329c967 Use custom Github App to authenticate backport job (#10394) (#10396)
  • 7038ef4 [Backport maintenance/3.3.x] Resolve possibly-used-before-assignment false po...
  • 045f179 Resolve possibly-used-before-assignment false positives from match block ...
  • Additional commits viewable in compare view

Updates anyio from 4.9.0 to 4.10.0

Release notes

Sourced from anyio's releases.

4.10.0

  • Added the feed_data() method to the BufferedByteReceiveStream class, allowing users to inject data directly into the buffer
  • Added various class methods to wrap existing sockets as listeners or socket streams:
    • SocketListener.from_socket()
    • SocketStream.from_socket()
    • UNIXSocketStream.from_socket()
    • UDPSocket.from_socket()
    • ConnectedUDPSocket.from_socket()
    • UNIXDatagramSocket.from_socket()
    • ConnectedUNIXDatagramSocket.from_socket()
  • Added a hierarchy of connectable stream classes for transparently connecting to various remote or local endpoints for exchanging bytes or objects
  • Added context manager mix-in classes (anyio.ContextManagerMixin and anyio.AsyncContextManagerMixin) to help write classes that embed other context managers, particularly cancel scopes or task groups (#905; PR by @​agronholm and @​tapetersen)
  • Added the ability to specify the thread name in start_blocking_portal() (#818; PR by @​davidbrochart)
  • Added anyio.notify_closing to allow waking anyio.wait_readable and anyio.wait_writable before closing a socket. Among other things, this prevents an OSError on the ProactorEventLoop. (#896; PR by @​graingert)
  • Incorporated several documentation improvements from the EuroPython 2025 sprint (special thanks to the sprinters: Emmanuel Okedele, Jan Murre, Euxenia Miruna Goia and Christoffer Fjord)
  • Added a documentation page explaining why one might want to use AnyIO's APIs instead of asyncio's
  • Updated the to_interpreters module to use the public concurrent.interpreters API on Python 3.14 or later
  • Fixed anyio.Path.copy() and anyio.Path.copy_into() failing on Python 3.14.0a7
  • Fixed return annotation of __aexit__ on async context managers. CMs which can suppress exceptions should return bool, or None otherwise. (#913; PR by @​Enegg)
  • Fixed rollover boundary check in SpooledTemporaryFile so that rollover only occurs when the buffer size exceeds max_size (#915; PR by @​11kkw)
  • Migrated testing and documentation dependencies from extras to dependency groups
  • Fixed compatibility of anyio.to_interpreter with Python 3.14.0b2 (#926; PR by @​hroncok)
  • Fixed SyntaxWarning on Python 3.14 about return in finally (#816)
  • Fixed RunVar name conflicts. RunVar instances with the same name should not share storage (#880; PR by @​vimfu)
  • Renamed the BrokenWorkerIntepreter exception to BrokenWorkerInterpreter. The old name is available as a deprecated alias. (#938; PR by @​ayussh-verma)
  • Fixed an edge case in CapacityLimiter on asyncio where a task, waiting to acquire a limiter gets cancelled and is subsequently granted a token from the limiter, but before the cancellation is delivered, and then fails to notify the next waiting task (#947)
Changelog

Sourced from anyio's changelog.

Version history

This library adheres to Semantic Versioning 2.0 <http://semver.org/>_.

UNRELEASED

  • Set None as the default type argument for anyio.abc.TaskStatus

4.10.0

  • Added the feed_data() method to the BufferedByteReceiveStream class, allowing users to inject data directly into the buffer

  • Added various class methods to wrap existing sockets as listeners or socket streams:

    • SocketListener.from_socket()
    • SocketStream.from_socket()
    • UNIXSocketStream.from_socket()
    • UDPSocket.from_socket()
    • ConnectedUDPSocket.from_socket()
    • UNIXDatagramSocket.from_socket()
    • ConnectedUNIXDatagramSocket.from_socket()
  • Added a hierarchy of connectable stream classes for transparently connecting to various remote or local endpoints for exchanging bytes or objects

  • Added context manager mix-in classes (anyio.ContextManagerMixin and anyio.AsyncContextManagerMixin) to help write classes that embed other context managers, particularly cancel scopes or task groups ([#905](https://github.com/agronholm/anyio/issues/905) <https://github.com/agronholm/anyio/pull/905>_; PR by @​agronholm and @​tapetersen)

  • Added the ability to specify the thread name in start_blocking_portal() ([#818](https://github.com/agronholm/anyio/issues/818) <https://github.com/agronholm/anyio/issues/818>_; PR by @​davidbrochart)

  • Added anyio.notify_closing to allow waking anyio.wait_readable and anyio.wait_writable before closing a socket. Among other things, this prevents an OSError on the ProactorEventLoop. ([#896](https://github.com/agronholm/anyio/issues/896) <https://github.com/agronholm/anyio/pull/896>_; PR by @​graingert)

  • Incorporated several documentation improvements from the EuroPython 2025 sprint (special thanks to the sprinters: Emmanuel Okedele, Jan Murre, Euxenia Miruna Goia and Christoffer Fjord)

  • Added a documentation page explaining why one might want to use AnyIO's APIs instead of asyncio's

  • Updated the to_interpreters module to use the public concurrent.interpreters API on Python 3.14 or later

  • Fixed anyio.Path.copy() and anyio.Path.copy_into() failing on Python 3.14.0a7

  • Fixed return annotation of __aexit__ on async context managers. CMs which can suppress exceptions should return bool, or None otherwise. ([#913](https://github.com/agronholm/anyio/issues/913) <https://github.com/agronholm/anyio/pull/913>_; PR by @​Enegg)

  • Fixed rollover boundary check in SpooledTemporaryFile so that rollover only occurs when the buffer size exceeds max_size ([#915](https://github.com/agronholm/anyio/issues/915) <https://github.com/agronholm/anyio/pull/915>_; PR by @​11kkw)

  • Migrated testing and documentation dependencies from extras to dependency groups

... (truncated)

Commits
  • 0cf55b8 Bumped up the version
  • b029df5 Updated the to_interpreter module to use the public API on Python 3.14 (#956)
  • 01f02cf Incorporated EP2025 sprint feedback and added a new section (#955)
  • d896480 [pre-commit.ci] pre-commit autoupdate (#954)
  • 0282b81 Added the BufferedByteReceiveStream.feed_data() method (#945)
  • 19e5477 Fixed a cancellation edge case for asyncio CapacityLimiter (#952)
  • 4666df3 [pre-commit.ci] pre-commit autoupdate (#946)
  • 38c2567 [pre-commit.ci] pre-commit autoupdate (#942)
  • 3db73ac Add missing imports for Readcting to cancellation in worker threads example (...
  • 2eda004 Added an example on how to use move_on_after() with shielding
  • Additional commits viewable in compare view

Updates beautifulsoup4 from 4.13.4 to 4.13.5

Updates certifi from 2025.7.14 to 2025.8.3

Commits

Updates charset-normalizer from 3.4.2 to 3.4.3

Release notes

Sourced from charset-normalizer's releases.

Version 3.4.3

3.4.3 (2025-08-09)

Changed

  • mypy(c) is no longer a required dependency at build time if CHARSET_NORMALIZER_USE_MYPYC isn't set to 1. (#595) (#583)
  • automatically lower confidence on small bytes samples that are not Unicode in detect output legacy function. (#391)

Added

  • Custom build backend to overcome inability to mark mypy as an optional dependency in the build phase.
  • Support for Python 3.14

Fixed

  • sdist archive contained useless directories.
  • automatically fallback on valid UTF-16 or UTF-32 even if the md says it's noisy. (#633)

Misc

  • SBOM are automatically published to the relevant GitHub release to comply with regulatory changes. Each published wheel comes with its SBOM. We choose CycloneDX as the format.
  • Prebuilt optimized wheel are no longer distributed by default for CPython 3.7 due to a change in cibuildwheel.
Changelog

Sourced from charset-normalizer's changelog.

3.4.3 (2025-08-09)

Changed

  • mypy(c) is no longer a required dependency at build time if CHARSET_NORMALIZER_USE_MYPYC isn't set to 1. (#595) (#583)
  • automatically lower confidence on small bytes samples that are not Unicode in detect output legacy function. (#391)

Added

  • Custom build backend to overcome inability to mark mypy as an optional dependency in the build phase.
  • Support for Python 3.14

Fixed

  • sdist archive contained useless directories.
  • automatically fallback on valid UTF-16 or UTF-32 even if the md says it's noisy. (#633)

Misc

  • SBOM are automatically published to the relevant GitHub release to comply with regulatory changes. Each published wheel comes with its SBOM. We choose CycloneDX as the format.
  • Prebuilt optimized wheel are no longer distributed by default for CPython 3.7 due to a change in cibuildwheel.
Commits
  • 46f662d Release 3.4.3 (#638)
  • 1a059b2 🔧 skip building on freethreaded as we're not confident it is stable
  • 2275e3d 📝 final note in CHANGELOG.md
  • c96acdf 📝 update release date on CHANGELOG.md
  • 43e5460 📝 update README.md
  • f277074 🔧 automatically lower confidence on small bytes str on non Unicode res...
  • 15ae241 🐛 automatically fallback on valid UTF-16 or UTF-32 even if the md says it...
  • 37397c1 🔧 enable 3.14 in nox test_mypyc session
  • cb82537 ⏪ revert license due to compat python 3.7 issue setuptools
  • 6a2efeb 🎨 fix linter errors
  • Additional commits viewable in compare view

Updates debugpy from 1.8.15 to 1.8.16

Release notes

Sourced from debugpy's releases.

debugpy v1.8.16

Fixes

Thanks to @​osiewicz

Commits

Updates executing from 2.2.0 to 2.2.1

Commits
  • bafb305 Add 3.14 to classifiers
  • 5ed2ba3 Merge pull request #97 from alexmojaki/3.14
  • 28095d4 refactor: review changes
  • bb09dc6 refactor: some cleanup
  • dabc70e fix: inst.argval can be a tuple for sometimes
  • 0772f91 fix: removed comments
  • bacc5b6 fix: moved verification for CALL_INTRINSIC_2 back to 3.13
  • ec09075 test: added sample_results for 3.14
  • 9405fed fix: handle synthetic code to store annotation
  • f09e4cd fix: TypeVar defaults
  • Additional commits viewable in compare view

Updates fastjsonschema from 2.21.1 to 2.21.2

Changelog

Sourced from fastjsonschema's changelog.

=== 2.21.2 (2025-08-14)

  • Fixed regexp for IPv6 format
Commits

Updates ipykernel from 6.30.0 to 6.30.1

Release notes

Sourced from ipykernel's releases.

v6.30.1

6.30.1

This is a bugfix release to fix a significant bug introduced in 6.30.0 that allowed control messages to be handled concurrently rather than sequentially which broke debugging in JupyterLab and VSCode.

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

  • Backport: Remove links in changelog to github milestones that no longer exist #1417 (@​ianthomas23)

Contributors to this release

(GitHub contributors page for this release)

@​ianthomas23

Changelog

Sourced from ipykernel's changelog.

6.30.1

This is a bugfix release to fix a significant bug introduced in 6.30.0 that allowed control messages to be handled concurrently rather than sequentially which broke debugging in JupyterLab and VSCode.

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

  • Backport: Remove links in changelog to github milestones that no longer exist #1417 (@​ianthomas23)

Contributors to this release

(GitHub contributors page for this release)

@​ianthomas23

Commits
  • 81587cc Publish 6.30.1
  • 357c908 Correct use of asyncio.Lock to process a single control message at a time (#1...
  • f96df51 Backport: Remove links in changelog to github milestones that no longer exist...
  • See full diff in compare view

Updates ipython from 9.4.0 to 9.5.0

Commits

Updates json5 from 0.12.0 to 0.12.1

Commits

Updates jsonschema from 4.25.0 to 4.25.1

Release notes

Sourced from jsonschema's releases.

v4.25.1

What's Changed

Full Changelog: python-jsonschema/jsonschema@v4.25.0...v4.25.1

Changelog

Sourced from jsonschema's changelog.

v4.25.1

  • Fix an incorrect required argument in the Validator protocol's type annotations (#1396).
Commits
  • 331c384 Add the fix to the changelog.
  • c1ec0a6 Merge pull request #1398 from python-jsonschema/dependabot/github_actions/ast...
  • 8e7d594 Merge pull request #1399 from python-jsonschema/dependabot/github_actions/act...
  • 460f4fa Merge pull request #1396 from sirosen/improve-protocol-init-signature
  • 1e58409 [pre-commit.ci] auto fixes from pre-commit.com hooks
  • 64bc217 Add a typing test for the Validator protocol
  • 6c25741 Bump actions/checkout from 4 to 5
  • bf603d5 Bump astral-sh/setup-uv from 6.4.3 to 6.5.0
  • a916d8f Fix Validator protocol init to match runtime
  • de60f18 Merge pull request #1397 from python-jsonschema/pre-commit-ci-update-config
  • Additional commits viewable in compare view

Updates jupyter-lsp from 2.2.6 to 2.3.0

Release notes

Sourced from jupyter-lsp's releases.

jupyter-lsp 2.3.0

This release adds auto-detection of two language servers for Python:

To upgrade to this release:

  1. Make sure your JupyterLab version is 4.1.0 or newer and Python version is 3.9 or newer.
  2. Update the extension:
    pip install jupyterlab-lsp==5.2.0 jupyter-lsp==2.3.0 'jupyterlab>=4.1.0'
    # or, for conda:
    # > Please note that conda packages may take a day or two since release before becoming available!
    # conda install -c conda-forge jupyterlab-lsp=5.2.0 jupyter-lsp=2.3.0 'jupyterlab>=4.1.0'
  3. If installing this extension for the first time:
    • please read the full installation instructions as language servers of your choice need to be installed too, and additional configuration can make your experience smoother,
    • if you wish to use jedi-language-server or python-lsp-server, please make sure to upgrade IPython to 7.20 or newer.

Changelog

jupyter-lsp 2.3.0
  • features:
    • add auto-detection of Pyrefly language server (#1136)
    • add auto-detection of basedpyright language server (#1152)
Changelog

Sourced from jupyter-lsp's changelog.

jupyter-lsp 2.3.0

  • features:
    • add auto-detection of Pyrefly language server (#1136)
    • add auto-detection of basedpyright language server (#1152)

@jupyter-lsp/jupyterlab-lsp 5.2.0

  • enhancements:

    • allow to disable LSP toolbar item in Notebook view (#1139)
  • bug fixes:

    • fixed jump to definition for notebooks that have special characters in filename and position for external jumps (#1128)
  • maintenance:

    • fixed tests, all green now!
    • we are no longer testing against pypy - contributions to restore it welcome!
Commits

Updates jupyter-server from 2.16.0 to 2.17.0

Release notes

Sourced from jupyter-server's releases.

v2.17.0

2.17.0

(Full Changelog)

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​aws-jasakshi | @​brichet | @​dependabot | @​edrogers | @​gogasca | @​joeyutong | @​jtpio | @​minrk | @​vidartf | @​Zsailer

Changelog

Sourced from jupyter-server's changelog.

2.17.0

(Full Changelog)

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​aws-jasakshi | @​brichet | @​dependabot | @​edrogers | @​gogasca | @​joeyutong | @​jtpio | @​minrk | @​vidartf | @​Zsailer

Commits
  • 3b03c64 Publish 2.17.0
  • 4484f12 Fix FileNotFoundError handling in rename_file methods (#1548)
  • 5b0aed9 Bump the actions group across 1 directory with 2 updates (#1551)
  • c4d002f Allow specifying extra params to scrub from logs (#1538)
  • 8d1e483 Avoid redundant call to _get_os_path in _dir_model
  • 5558318 Follow stdlib naming convention: override instead of overrides
  • cdc772e Add PEP508 selector to the overrides dependency
  • 6d2fa59 Dispatch off sys.version_info
  • f8a7177 Use stdlib override when possible
  • 31a8555 CORS is not checked when browsing files. check origin now https://github.com/...
  • Additional commits viewable in compare view

Updates mistune from 3.1.3 to 3.1.4

Release notes

Sourced from mistune's releases.

v3.1.4

   🐞 Bug Fixes

    View changes on GitHub
Changelog

Sourced from mistune's changelog.

Version 3.1.4

Released on Aug 29, 2025

  • Add fenced directive break rule in list parser.
  • Prevent removing unicode whitespace when parsing atx heading.
Commits

Updates parso from 0.8.4 to 0.8.5

Changelog

Sourced from parso's changelog.

...

Description has been truncated

Bumps the python-dependencies group with 26 updates:

| Package | From | To |
| --- | --- | --- |
| [jupyterlab](https://github.com/jupyterlab/jupyterlab) | `4.4.5` | `4.4.6` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.3.7` | `3.3.8` |
| [anyio](https://github.com/agronholm/anyio) | `4.9.0` | `4.10.0` |
| [beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/) | `4.13.4` | `4.13.5` |
| [certifi](https://github.com/certifi/python-certifi) | `2025.7.14` | `2025.8.3` |
| [charset-normalizer](https://github.com/jawah/charset_normalizer) | `3.4.2` | `3.4.3` |
| [debugpy](https://github.com/microsoft/debugpy) | `1.8.15` | `1.8.16` |
| [executing](https://github.com/alexmojaki/executing) | `2.2.0` | `2.2.1` |
| [fastjsonschema](https://github.com/horejsek/python-fastjsonschema) | `2.21.1` | `2.21.2` |
| [ipykernel](https://github.com/ipython/ipykernel) | `6.30.0` | `6.30.1` |
| [ipython](https://github.com/ipython/ipython) | `9.4.0` | `9.5.0` |
| [json5](https://github.com/dpranke/pyjson5) | `0.12.0` | `0.12.1` |
| [jsonschema](https://github.com/python-jsonschema/jsonschema) | `4.25.0` | `4.25.1` |
| [jupyter-lsp](https://github.com/jupyter-lsp/jupyterlab-lsp) | `2.2.6` | `2.3.0` |
| [jupyter-server](https://github.com/jupyter-server/jupyter_server) | `2.16.0` | `2.17.0` |
| [mistune](https://github.com/lepture/mistune) | `3.1.3` | `3.1.4` |
| [parso](https://github.com/davidhalter/parso) | `0.8.4` | `0.8.5` |
| [platformdirs](https://github.com/tox-dev/platformdirs) | `4.3.8` | `4.4.0` |
| [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit) | `3.0.51` | `3.0.52` |
| [pyzmq](https://github.com/zeromq/pyzmq) | `27.0.0` | `27.0.2` |
| [requests](https://github.com/psf/requests) | `2.32.4` | `2.32.5` |
| [rpds-py](https://github.com/crate-py/rpds) | `0.26.0` | `0.27.1` |
| [soupsieve](https://github.com/facelessuser/soupsieve) | `2.7` | `2.8` |
| [tornado](https://github.com/tornadoweb/tornado) | `6.5.1` | `6.5.2` |
| [types-python-dateutil](https://github.com/typeshed-internal/stub_uploader) | `2.9.0.20250708` | `2.9.0.20250822` |
| [typing-extensions](https://github.com/python/typing_extensions) | `4.14.1` | `4.15.0` |


Updates `jupyterlab` from 4.4.5 to 4.4.6
- [Release notes](https://github.com/jupyterlab/jupyterlab/releases)
- [Changelog](https://github.com/jupyterlab/jupyterlab/blob/main/RELEASE.md)
- [Commits](https://github.com/jupyterlab/jupyterlab/compare/@jupyterlab/[email protected]...@jupyterlab/[email protected])

Updates `pylint` from 3.3.7 to 3.3.8
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.3.7...v3.3.8)

Updates `anyio` from 4.9.0 to 4.10.0
- [Release notes](https://github.com/agronholm/anyio/releases)
- [Changelog](https://github.com/agronholm/anyio/blob/master/docs/versionhistory.rst)
- [Commits](agronholm/anyio@4.9.0...4.10)

Updates `beautifulsoup4` from 4.13.4 to 4.13.5

Updates `certifi` from 2025.7.14 to 2025.8.3
- [Commits](certifi/python-certifi@2025.07.14...2025.08.03)

Updates `charset-normalizer` from 3.4.2 to 3.4.3
- [Release notes](https://github.com/jawah/charset_normalizer/releases)
- [Changelog](https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md)
- [Commits](jawah/charset_normalizer@3.4.2...3.4.3)

Updates `debugpy` from 1.8.15 to 1.8.16
- [Release notes](https://github.com/microsoft/debugpy/releases)
- [Commits](microsoft/debugpy@v1.8.15...v1.8.16)

Updates `executing` from 2.2.0 to 2.2.1
- [Release notes](https://github.com/alexmojaki/executing/releases)
- [Commits](alexmojaki/executing@v2.2.0...v2.2.1)

Updates `fastjsonschema` from 2.21.1 to 2.21.2
- [Changelog](https://github.com/horejsek/python-fastjsonschema/blob/master/CHANGELOG.txt)
- [Commits](horejsek/python-fastjsonschema@v2.21.1...v2.21.2)

Updates `ipykernel` from 6.30.0 to 6.30.1
- [Release notes](https://github.com/ipython/ipykernel/releases)
- [Changelog](https://github.com/ipython/ipykernel/blob/v6.30.1/CHANGELOG.md)
- [Commits](ipython/ipykernel@v6.30.0...v6.30.1)

Updates `ipython` from 9.4.0 to 9.5.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@9.4.0...9.5.0)

Updates `json5` from 0.12.0 to 0.12.1
- [Commits](dpranke/pyjson5@v0.12.0...v0.12.1)

Updates `jsonschema` from 4.25.0 to 4.25.1
- [Release notes](https://github.com/python-jsonschema/jsonschema/releases)
- [Changelog](https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst)
- [Commits](python-jsonschema/jsonschema@v4.25.0...v4.25.1)

Updates `jupyter-lsp` from 2.2.6 to 2.3.0
- [Release notes](https://github.com/jupyter-lsp/jupyterlab-lsp/releases)
- [Changelog](https://github.com/jupyter-lsp/jupyterlab-lsp/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jupyter-lsp/jupyterlab-lsp/commits/jupyter-lsp-2.3.0)

Updates `jupyter-server` from 2.16.0 to 2.17.0
- [Release notes](https://github.com/jupyter-server/jupyter_server/releases)
- [Changelog](https://github.com/jupyter-server/jupyter_server/blob/main/CHANGELOG.md)
- [Commits](jupyter-server/jupyter_server@v2.16.0...v2.17.0)

Updates `mistune` from 3.1.3 to 3.1.4
- [Release notes](https://github.com/lepture/mistune/releases)
- [Changelog](https://github.com/lepture/mistune/blob/main/docs/changes.rst)
- [Commits](lepture/mistune@v3.1.3...v3.1.4)

Updates `parso` from 0.8.4 to 0.8.5
- [Changelog](https://github.com/davidhalter/parso/blob/master/CHANGELOG.rst)
- [Commits](davidhalter/parso@v0.8.4...v0.8.5)

Updates `platformdirs` from 4.3.8 to 4.4.0
- [Release notes](https://github.com/tox-dev/platformdirs/releases)
- [Changelog](https://github.com/tox-dev/platformdirs/blob/main/CHANGES.rst)
- [Commits](tox-dev/platformdirs@4.3.8...4.4.0)

Updates `prompt-toolkit` from 3.0.51 to 3.0.52
- [Release notes](https://github.com/prompt-toolkit/python-prompt-toolkit/releases)
- [Changelog](https://github.com/prompt-toolkit/python-prompt-toolkit/blob/main/CHANGELOG)
- [Commits](prompt-toolkit/python-prompt-toolkit@3.0.51...3.0.52)

Updates `pyzmq` from 27.0.0 to 27.0.2
- [Release notes](https://github.com/zeromq/pyzmq/releases)
- [Commits](zeromq/pyzmq@v27.0.0...v27.0.2)

Updates `requests` from 2.32.4 to 2.32.5
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.32.4...v2.32.5)

Updates `rpds-py` from 0.26.0 to 0.27.1
- [Release notes](https://github.com/crate-py/rpds/releases)
- [Commits](crate-py/rpds@v0.26.0...v0.27.1)

Updates `soupsieve` from 2.7 to 2.8
- [Release notes](https://github.com/facelessuser/soupsieve/releases)
- [Commits](facelessuser/soupsieve@2.7...2.8)

Updates `tornado` from 6.5.1 to 6.5.2
- [Changelog](https://github.com/tornadoweb/tornado/blob/master/docs/releases.rst)
- [Commits](tornadoweb/tornado@v6.5.1...v6.5.2)

Updates `types-python-dateutil` from 2.9.0.20250708 to 2.9.0.20250822
- [Commits](https://github.com/typeshed-internal/stub_uploader/commits)

Updates `typing-extensions` from 4.14.1 to 4.15.0
- [Release notes](https://github.com/python/typing_extensions/releases)
- [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
- [Commits](python/typing_extensions@4.14.1...4.15.0)

---
updated-dependencies:
- dependency-name: jupyterlab
  dependency-version: 4.4.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: pylint
  dependency-version: 3.3.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: anyio
  dependency-version: 4.10.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: beautifulsoup4
  dependency-version: 4.13.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: certifi
  dependency-version: 2025.8.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: charset-normalizer
  dependency-version: 3.4.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: debugpy
  dependency-version: 1.8.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: executing
  dependency-version: 2.2.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: fastjsonschema
  dependency-version: 2.21.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: ipykernel
  dependency-version: 6.30.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: ipython
  dependency-version: 9.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: json5
  dependency-version: 0.12.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: jsonschema
  dependency-version: 4.25.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: jupyter-lsp
  dependency-version: 2.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: jupyter-server
  dependency-version: 2.17.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: mistune
  dependency-version: 3.1.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: parso
  dependency-version: 0.8.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: platformdirs
  dependency-version: 4.4.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: prompt-toolkit
  dependency-version: 3.0.52
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: pyzmq
  dependency-version: 27.0.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: requests
  dependency-version: 2.32.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: rpds-py
  dependency-version: 0.27.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: soupsieve
  dependency-version: '2.8'
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: tornado
  dependency-version: 6.5.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: types-python-dateutil
  dependency-version: 2.9.0.20250822
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: typing-extensions
  dependency-version: 4.15.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Sep 2, 2025
@EliahKagan
Copy link
Owner

@dependabot squash and merge

@dependabot dependabot bot merged commit e4ad655 into main Sep 2, 2025
83 checks passed
@dependabot dependabot bot deleted the dependabot/pip/python-dependencies-1a14d44c2c branch September 2, 2025 01:17
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.

1 participant