Skip to content

Bump the all-pip group across 1 directory with 13 updates#7520

Merged
kotlaja merged 2 commits intomainfrom
dependabot/pip/tools/all-pip-3db368a0f4
Feb 12, 2026
Merged

Bump the all-pip group across 1 directory with 13 updates#7520
kotlaja merged 2 commits intomainfrom
dependabot/pip/tools/all-pip-3db368a0f4

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 11, 2026

Bumps the all-pip group with 13 updates in the /tools directory:

Package From To
authlib 1.6.6 1.6.7
bazel-runfiles 1.8.3 1.8.4
cachetools 6.2.6 7.0.1
fastmcp 2.14.4 2.14.5
numpy 2.4.1 2.4.2
py-key-value-aio[disk,keyring,memory,redis] 0.3.0 0.4.0
pydocket 0.16.6 0.17.6
pyjwt[crypto] 2.10.1 2.11.0
redis 7.1.0 7.1.1
referencing 0.36.2 0.37.0
rich 14.3.1 14.3.2
typer 0.21.1 0.22.0
wrapt 1.17.3 2.1.1

Updates authlib from 1.6.6 to 1.6.7

Release notes

Sourced from authlib's releases.

v1.6.7

Full Changelog: authlib/authlib@v1.6.6...v1.6.7

Set supported algorithms for the default jwt instance.

Changelog

Sourced from authlib's changelog.

Changelog

.. meta:: :description: The full list of changes between each Authlib release.

Here you can see the full list of changes between each Authlib release.

Version 1.7.0

Unreleased

  • Add support for OpenID Connect RP-Initiated Logout 1.0 <https://openid.net/specs/openid-connect-rpinitiated-1_0.html>_. See :ref:specs/rpinitiated for details. :issue:500
  • Per RFC 6749 Section 3.3, the scope parameter is now optional at both authorization and token endpoints. client.get_allowed_scope() is called to determine the default scope when omitted. :issue:845
  • Stop support for Python 3.9, start support Python 3.14. :pr:850
  • Allow AuthorizationServerMetadata.validate() to compose with RFC extension classes.
  • Fix expires_at=0 being incorrectly treated as None. :issue:530
  • Allow ResourceProtector decorator to be used without parentheses. :issue:604

Upgrade Guide: :ref:joserfc_upgrade.

Commits

Updates bazel-runfiles from 1.8.3 to 1.8.4

Release notes

Sourced from bazel-runfiles's releases.

1.8.4

For more detailed setup instructions, see https://rules-python.readthedocs.io/en/latest/getting-started.html

For the user-facing changelog see here

Using Bzlmod

Add to your MODULE.bazel file:

bazel_dep(name = "rules_python", version = "1.8.4")
python = use_extension("@​rules_python//python/extensions:python.bzl", "python")
python.toolchain(
python_version = "3.13",
)
pip = use_extension("@​rules_python//python/extensions:pip.bzl", "pip")
pip.parse(
hub_name = "pypi",
python_version = "3.13",
requirements_lock = "//:requirements_lock.txt",
)
use_repo(pip, "pypi")

Using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_python",
sha256 = "c85d5db38d3eac06167a13b10c9dba54b003a986cd4f1ebc00806b74e7c12f06",
strip_prefix = "rules_python-1.8.4",
url = "https://github.com/bazel-contrib/rules_python/releases/download/1.8.4/rules_python-1.8.4.tar.gz",
)
load("@​rules_python//python:repositories.bzl", "py_repositories")
py_repositories()

Gazelle plugin

Paste this snippet into your WORKSPACE file:

... (truncated)

Changelog

Sourced from bazel-runfiles's changelog.

[1.8.4] - 2026-02-10

Fixed

  • (pipstar): A corner case of evaluation of version specifiers ("1.2" ~= "1.2.0") has been fixed improving compatibility with the PEP440 standard. Fixes #3580.
  • (pipstar): We now add read permissions after extracting wheels for the cases where the whl file is missing them. Fixes #3554.

{#v1-8-3}

Commits
  • 62a764e fix(pipstar): handle a corner case for compatible version evaluation (#3583)
  • 08132d3 fix(pip): add read permissions when extracting wheels (#3555)
  • See full diff in compare view

Updates cachetools from 6.2.6 to 7.0.1

Changelog

Sourced from cachetools's changelog.

v7.0.1 (2026-02-10)

  • Various test improvements.

  • Update Copilot Instructions.

v7.0.0 (2026-02-01)

  • Require Python 3.10 or later (breaking change).

  • Drop support for passing info as fourth positional parameter to @cached (breaking change).

  • Drop support for cache(self) returning None with @cachedmethod (breaking change).

  • Convert the @cachedmethod wrappers to descriptors, deprecating its use with class methods and instances that do not provide a mutable __dict__ attribute (potentially breaking change).

  • Convert the previously undocumented @cachedmethod attributes (cache, cache_lock, etc.) to properties for instance methods, providing official support and documentation (potentially breaking change).

  • Add an optional info parameter to the @cachedmethod decorator for reporting per-instance cache statistics. Note that this requires the instance's __dict__ attribute to be a mutable mapping.

Commits

Updates fastmcp from 2.14.4 to 2.14.5

Release notes

Sourced from fastmcp's releases.

v2.14.5: Sealed Docket

Fixes a memory leak in the memory:// docket broker where cancelled tasks accumulated instead of being cleaned up. Bumps pydocket to ≥0.17.2.

What's Changed

Enhancements 🔧

Docs 📚

Full Changelog: PrefectHQ/fastmcp@v2.14.4...v2.14.5

Changelog

Sourced from fastmcp's changelog.


title: "Changelog" icon: "list-check" rss: true

v3.0.0b1: This Beta Work

FastMCP 3.0 rebuilds the framework around three primitives: components, providers, and transforms. Providers source components dynamically—from decorators, filesystems, OpenAPI specs, remote servers, or anywhere else. Transforms modify components as they flow to clients—renaming, namespacing, filtering, securing. The features that required specialized subsystems in v2 now compose naturally from these building blocks.

🔌 Provider Architecture unifies how components are sourced. FileSystemProvider discovers decorated functions from directories with optional hot-reload. SkillsProvider exposes agent skill files as MCP resources. OpenAPIProvider and ProxyProvider get cleaner integrations. Providers are composable—share one across servers, or attach many to one server.

🔄 Transforms add middleware for components. Namespace mounted servers, rename verbose tools, filter by version, control visibility—all without touching source code. ResourcesAsTools and PromptsAsTools expose non-tool components to tool-only clients.

📋 Component Versioning lets you register @tool(version="2.0") alongside older versions. Clients see the highest version by default but can request specific versions. VersionFilter serves different API versions from one codebase.

💾 Session-Scoped State persists across requests. await ctx.set_state() and await ctx.get_state() now survive the full session. Per-session visibility via ctx.enable_components() lets servers adapt dynamically to each client.

DX Improvements include --reload for auto-restart during development, automatic threadpool dispatch for sync functions, tool timeouts, pagination for large component lists, and OpenTelemetry tracing.

🔐 Component Authorization via @tool(auth=require_scopes("admin")) and AuthMiddleware for server-wide policies.

Breaking changes are minimal: for most servers, updating the import statement is all you need. See the migration guide for details.

What's Changed

New Features 🎉

  • Refactor resource behavior and add meta support by @​jlowin in #2611
  • Refactor prompt behavior and add meta support by @​jlowin in #2610
  • feat: Provider abstraction for dynamic MCP components by @​jlowin in #2622
  • Unify component storage in LocalProvider by @​jlowin in #2680
  • Introduce ResourceResult as canonical resource return type by @​jlowin in #2734
  • Introduce Message and PromptResult as canonical prompt types by @​jlowin in #2738
  • Add --reload flag for auto-restart on file changes by @​jlowin in #2816
  • Add FileSystemProvider for filesystem-based component discovery by @​jlowin in #2823
  • Add standalone decorators and eliminate fastmcp.fs module by @​jlowin in #2832
  • Add authorization checks to components and servers by @​jlowin in #2855
  • Decorators return functions instead of component objects by @​jlowin in #2856
  • Add transform system for modifying components in provider chains by @​jlowin in #2836
  • Add OpenTelemetry tracing support by @​chrisguidry in #2869
  • Add component versioning and VersionFilter transform by @​jlowin in #2894
  • Add version discovery and calling a certain version for components by @​jlowin in #2897
  • Refactor visibility to mark-based enabled system by @​jlowin in #2912
  • Add session-specific visibility control via Context by @​jlowin in #2917
  • Add Skills Provider for exposing agent skills as MCP resources by @​jlowin in #2944

Enhancements 🔧

... (truncated)

Commits
  • 21221b4 Add release notes for v2.14.4 and v2.14.5 (#3063)
  • 7d32409 Merge pull request #2992 from jlowin/pydocket-github-validation
  • 65d6f06 Bump pydocket to >=0.17.2
  • 5f68078 Bump pydocket to >=0.17.2b3
  • 0afa029 Make read_resource test flexible for MCP version differences
  • 7ad97d9 Update test snapshot for MCP 1.26.0 serialization change
  • cd0274c Bump pydocket to >=0.17.2b2
  • f1a89eb Bump pydocket to >=0.17.2b1
  • c9ed36e Point to fix-cancellation-handling branch
  • 8cec853 Point to fix-redis-connection-guards branch
  • Additional commits viewable in compare view

Updates numpy from 2.4.1 to 2.4.2

Release notes

Sourced from numpy's releases.

2.4.2 (Feb 1, 2026)

NumPy 2.4.2 Release Notes

The NumPy 2.4.2 is a patch release that fixes bugs discovered after the 2.4.1 release. Highlights are:

  • Fixes memory leaks
  • Updates OpenBLAS to fix hangs

This release supports Python versions 3.11-3.14

Contributors

A total of 9 people contributed to this release. People with a "+" by their names contributed a patch for the first time.

  • Charles Harris
  • Daniel Tang +
  • Joren Hammudoglu
  • Kumar Aditya
  • Matti Picus
  • Nathan Goldbaum
  • Ralf Gommers
  • Sebastian Berg
  • Vikram Kumar +

Pull requests merged

A total of 12 pull requests were merged for this release.

  • #30629: MAINT: Prepare 2.4.x for further development
  • #30636: TYP: arange: accept datetime strings
  • #30657: MAINT: avoid possible race condition by not touching os.environ...
  • #30700: BUG: validate contraction axes in tensordot (#30521)
  • #30701: DOC: __array_namespace__info__: set_module not __module__ (#30679)
  • #30702: BUG: fix free-threaded PyObject layout in replace_scalar_type_names...
  • #30703: TST: fix limited API example in tests for latest Cython
  • #30709: BUG: Fix some bugs found via valgrind (#30680)
  • #30712: MAINT: replace ob_type access with Py_TYPE in PyArray_CheckExact
  • #30713: BUG: Fixup the quantile promotion fixup
  • #30736: BUG: fix thread safety of array_getbuffer (#30667)
  • #30737: backport scipy-openblas version change
Commits
  • c81c49f Merge pull request #30757 from charris/prepare-2.4.2
  • b3ae9c5 REL: Prepare for the NumPy 2.4.2 release
  • 9de8984 Merge pull request #30737 from mattip/scipy-openblas-backport
  • b7be329 backport scipy-openblas version change
  • 7ff9863 Merge pull request #30736 from charris/backport-30667
  • 431fffb MAINT: Skip tests that require buffer.
  • 127235f BUG: fix thread safety of array_getbuffer (#30667)
  • 18bdb2e Merge pull request #30713 from charris/backport-30710
  • 41dd751 Merge pull request #30712 from charris/backport-30705
  • 7a278da BUG: Fixup the quantile promotion fixup
  • Additional commits viewable in compare view

Updates py-key-value-aio[disk,keyring,memory,redis] from 0.3.0 to 0.4.0

Updates pydocket from 0.16.6 to 0.17.6

Release notes

Sourced from pydocket's releases.

0.17.6 - Perpetual: The Next Generation

What's Changed

Full Changelog: chrisguidry/docket@0.17.5...0.17.6

0.17.5 - In the zone

What's Changed

Full Changelog: chrisguidry/docket@0.17.4...0.17.5

0.17.4 - I love it when a plan comes together

Big thanks to @​omikader who's been a partner in thinking through some big refactorings, culminating in a very clean addition of a new Cron dependency!

from docket.dependencies import Cron
async def hourly_session_cleanup(cron: Cron = Cron("15 * * * *")):
... clean up user sessions at the :15 mark of every hour ...
@​daily is equivalent to "0 0 * * *" (midnight every day)
async def daily_report(cron: Cron = Cron("@​daily")):
... run the daily report ...

Cron dependencies default to automatic=True (so they just automatically get scheduled for their next appropriate run) but you can disable them if you want more control by setting automatic=False.

I love it when a plan comes together

What's Changed

New Contributors

Full Changelog: chrisguidry/docket@0.17.3...0.17.4

0.17.3 - Let it goooo

What's Changed

... (truncated)

Commits
  • aec04bd Bump the all-dependencies group with 9 updates (#329)
  • da08e3f Fix Perpetual rescheduling race condition (#331)
  • 33447f6 Group Dependabot updates into single PRs (#328)
  • 5d0f4ba Batch dependency updates (#327)
  • 00d78c8 Batch dependency updates (#319)
  • b85c7d4 feat(cron): add support for custom timezones (#312)
  • f9c7d16 Add Cron dependency for cron-style task scheduling (#311)
  • aecd46a Add internal state invariant tests and reorganize test directories (#310)
  • c5a2b6d Fix memory leak in _tasks_by_key cleanup (#309)
  • 8e06cdb Add logging to Docker image retry (#308)
  • Additional commits viewable in compare view

Updates pyjwt[crypto] from 2.10.1 to 2.11.0

Release notes

Sourced from pyjwt[crypto]'s releases.

2.11.0

What's Changed

... (truncated)

Changelog

Sourced from pyjwt[crypto]'s changelog.

v2.11.0 <https://github.com/jpadilla/pyjwt/compare/2.10.1...2.11.0>__

Fixed


- Enforce ECDSA curve validation per RFC 7518 Section 3.4.
- Fix build system warnings by @kurtmckee in `[#1105](https://github.com/jpadilla/pyjwt/issues/1105) <https://github.com/jpadilla/pyjwt/pull/1105>`__
- Validate key against allowed types for Algorithm family in `[#964](https://github.com/jpadilla/pyjwt/issues/964) <https://github.com/jpadilla/pyjwt/pull/964>`__
- Add iterator for JWKSet in `[#1041](https://github.com/jpadilla/pyjwt/issues/1041) <https://github.com/jpadilla/pyjwt/pull/1041>`__
- Validate `iss` claim is a string during encoding and decoding by @pachewise in `[#1040](https://github.com/jpadilla/pyjwt/issues/1040) <https://github.com/jpadilla/pyjwt/pull/1040>`__
- Improve typing/logic for `options` in decode, decode_complete by @pachewise in `[#1045](https://github.com/jpadilla/pyjwt/issues/1045) <https://github.com/jpadilla/pyjwt/pull/1045>`__
- Declare float supported type for lifespan and timeout by @nikitagashkov in `[#1068](https://github.com/jpadilla/pyjwt/issues/1068) <https://github.com/jpadilla/pyjwt/pull/1068>`__
- Fix ``SyntaxWarning``\s/``DeprecationWarning``\s caused by invalid escape sequences by @kurtmckee in `[#1103](https://github.com/jpadilla/pyjwt/issues/1103) <https://github.com/jpadilla/pyjwt/pull/1103>`__
- Development: Build a shared wheel once to speed up test suite setup times by @kurtmckee in `[#1114](https://github.com/jpadilla/pyjwt/issues/1114) <https://github.com/jpadilla/pyjwt/pull/1114>`__
- Development: Test type annotations across all supported Python versions,
  increase the strictness of the type checking, and remove the mypy pre-commit hook
  by @kurtmckee in `[#1112](https://github.com/jpadilla/pyjwt/issues/1112) <https://github.com/jpadilla/pyjwt/pull/1112>`__

Added

  • Support Python 3.14, and test against PyPy 3.10 and 3.11 by @​kurtmckee in [#1104](https://github.com/jpadilla/pyjwt/issues/1104) <https://github.com/jpadilla/pyjwt/pull/1104>__
  • Development: Migrate to build to test package building in CI by @​kurtmckee in [#1108](https://github.com/jpadilla/pyjwt/issues/1108) <https://github.com/jpadilla/pyjwt/pull/1108>__
  • Development: Improve coverage config and eliminate unused test suite code by @​kurtmckee in [#1115](https://github.com/jpadilla/pyjwt/issues/1115) <https://github.com/jpadilla/pyjwt/pull/1115>__
  • Docs: Standardize CHANGELOG links to PRs by @​kurtmckee in [#1110](https://github.com/jpadilla/pyjwt/issues/1110) <https://github.com/jpadilla/pyjwt/pull/1110>__
  • Docs: Fix Read the Docs builds by @​kurtmckee in [#1111](https://github.com/jpadilla/pyjwt/issues/1111) <https://github.com/jpadilla/pyjwt/pull/1111>__
  • Docs: Add example of using leeway with nbf by @​djw8605 in [#1034](https://github.com/jpadilla/pyjwt/issues/1034) <https://github.com/jpadilla/pyjwt/pull/1034>__
  • Docs: Refactored docs with autodoc; added PyJWS and jwt.algorithms docs by @​pachewise in [#1045](https://github.com/jpadilla/pyjwt/issues/1045) <https://github.com/jpadilla/pyjwt/pull/1045>__
  • Docs: Documentation improvements for "sub" and "jti" claims by @​cleder in [#1088](https://github.com/jpadilla/pyjwt/issues/1088) <https://github.com/jpadilla/pyjwt/pull/1088>__
  • Development: Add pyupgrade as a pre-commit hook by @​kurtmckee in [#1109](https://github.com/jpadilla/pyjwt/issues/1109) <https://github.com/jpadilla/pyjwt/pull/1109>__
  • Add minimum key length validation for HMAC and RSA keys (CWE-326). Warns by default via InsecureKeyLengthWarning when keys are below minimum recommended lengths per RFC 7518 Section 3.2 (HMAC) and NIST SP 800-131A (RSA). Pass enforce_minimum_key_length=True in options to PyJWT or PyJWS to raise InvalidKeyError instead.
  • Refactor PyJWT to own an internal PyJWS instance instead of calling global api_jws functions.
Commits

Updates redis from 7.1.0 to 7.1.1

Release notes

Sourced from redis's releases.

7.1.1

Changes

🧪 Experimental Features

  • Added initial health check policies, refactored add_database method (#3906)

🧰 Maintenance

  • Disabled SCH in MultiDBClient underlying clients by default (#3938)
  • Added logging for MultiDBClients (#3865 #3896)

We'd like to thank all the contributors who worked on this release! @​vladvildanov

Commits

Updates referencing from 0.36.2 to 0.37.0

Release notes

Sourced from referencing's releases.

v0.37.0

What's Changed

New Contributors

Full Changelog: python-jsonschema/referencing@v0.36.2...v0.37.0

Changelog

Sourced from referencing's changelog.

v0.37.0

  • Declare support for Python 3.14.
  • Drop support for Python 3.9 which is near EOL.
Commits
  • 944ed5a Style.
  • 6382532 Prepare the CHANGELOG for v0.37.
  • 91b4bf5 Drop support for 3.9, which is near EOL.
  • 0c14d46 Update requirements.
  • 2928df5 Add the 3.14 classifier.
  • 3ce7f9a Merge pull request #270 from cclauss/patch-1
  • b6fc425 ci: Add Python 3.14 and 3.14t to the testing
  • 9d1efc5 Merge pull request #265 from python-jsonschema/pre-commit-ci-update-config
  • 1513a51 Merge pull request #268 from python-jsonschema/dependabot/submodules/suite-79...
  • 8ebb38f Merge pull request #269 from python-jsonschema/dependabot/github_actions/astr...
  • Additional commits viewable in compare view

Updates rich from 14.3.1 to 14.3.2

Release notes

Sourced from rich's releases.

The ZWJy release

A fix for cell_len edge cases

[14.3.2] - 2026-02-01

Fixed

Changelog

Sourced from rich's changelog.

[14.3.2] - 2026-02-01

Fixed

Commits

Updates typer from 0.21.1 to 0.22.0

Release notes

Sourced from typer's releases.

0.22.0

Breaking Changes

  • 💥 Make typer-slim a shallow wrapper around typer, always requiring rich and shellingham. PR #1522 by @​svlandeg.

0.21.2

Fixes

  • 🐛 Fix highlighting of optional variadic argument metavars. PR #1508 by @​BenjyWiener.
  • 🐛 Fix --help text alignment when using typer.style() in option descriptions. PR #1356 by @​mahimairaja.

Refactors

Upgrades

Docs

  • 📝 Add reference (code API) docs. PR #1504 by @​svlandeg.
  • 📝 Update the "Building a Package" tutorial to use uv instead of poetry. PR #1474 by @​svlandeg.
  • 📝 Update management-tasks.md to be in line with management-tasks.md in FastAPI repo. PR #1519 by @​YuriiMotov.
  • 📝 Add link to Typer developer survey. PR #1514 by @​tiangolo.
  • 📝 Add contribution instructions about LLM generated code and comments and automated tools for PRs. PR #1489 by @​alejsdev.
  • 🐛 Fix copy button in custom.js. PR #1488 by @​alejsdev.

Internal

Bumps the all-pip group with 13 updates in the /tools directory:

| Package | From | To |
| --- | --- | --- |
| [authlib](https://github.com/authlib/authlib) | `1.6.6` | `1.6.7` |
| [bazel-runfiles](https://github.com/bazel-contrib/rules_python) | `1.8.3` | `1.8.4` |
| [cachetools](https://github.com/tkem/cachetools) | `6.2.6` | `7.0.1` |
| [fastmcp](https://github.com/jlowin/fastmcp) | `2.14.4` | `2.14.5` |
| [numpy](https://github.com/numpy/numpy) | `2.4.1` | `2.4.2` |
| py-key-value-aio[disk,keyring,memory,redis] | `0.3.0` | `0.4.0` |
| [pydocket](https://github.com/chrisguidry/docket) | `0.16.6` | `0.17.6` |
| [pyjwt[crypto]](https://github.com/jpadilla/pyjwt) | `2.10.1` | `2.11.0` |
| [redis](https://github.com/redis/redis-py) | `7.1.0` | `7.1.1` |
| [referencing](https://github.com/python-jsonschema/referencing) | `0.36.2` | `0.37.0` |
| [rich](https://github.com/Textualize/rich) | `14.3.1` | `14.3.2` |
| [typer](https://github.com/fastapi/typer) | `0.21.1` | `0.22.0` |
| [wrapt](https://github.com/GrahamDumpleton/wrapt) | `1.17.3` | `2.1.1` |



Updates `authlib` from 1.6.6 to 1.6.7
- [Release notes](https://github.com/authlib/authlib/releases)
- [Changelog](https://github.com/authlib/authlib/blob/main/docs/changelog.rst)
- [Commits](authlib/authlib@v1.6.6...v1.6.7)

Updates `bazel-runfiles` from 1.8.3 to 1.8.4
- [Release notes](https://github.com/bazel-contrib/rules_python/releases)
- [Changelog](https://github.com/bazel-contrib/rules_python/blob/main/CHANGELOG.md)
- [Commits](bazel-contrib/rules_python@1.8.3...1.8.4)

Updates `cachetools` from 6.2.6 to 7.0.1
- [Changelog](https://github.com/tkem/cachetools/blob/master/CHANGELOG.rst)
- [Commits](tkem/cachetools@v6.2.6...v7.0.1)

Updates `fastmcp` from 2.14.4 to 2.14.5
- [Release notes](https://github.com/jlowin/fastmcp/releases)
- [Changelog](https://github.com/jlowin/fastmcp/blob/main/docs/changelog.mdx)
- [Commits](PrefectHQ/fastmcp@v2.14.4...v2.14.5)

Updates `numpy` from 2.4.1 to 2.4.2
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v2.4.1...v2.4.2)

Updates `py-key-value-aio[disk,keyring,memory,redis]` from 0.3.0 to 0.4.0

Updates `pydocket` from 0.16.6 to 0.17.6
- [Release notes](https://github.com/chrisguidry/docket/releases)
- [Commits](chrisguidry/docket@0.16.6...0.17.6)

Updates `pyjwt[crypto]` from 2.10.1 to 2.11.0
- [Release notes](https://github.com/jpadilla/pyjwt/releases)
- [Changelog](https://github.com/jpadilla/pyjwt/blob/master/CHANGELOG.rst)
- [Commits](jpadilla/pyjwt@2.10.1...2.11.0)

Updates `redis` from 7.1.0 to 7.1.1
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](redis/redis-py@v7.1.0...v7.1.1)

Updates `referencing` from 0.36.2 to 0.37.0
- [Release notes](https://github.com/python-jsonschema/referencing/releases)
- [Changelog](https://github.com/python-jsonschema/referencing/blob/main/docs/changes.rst)
- [Commits](python-jsonschema/referencing@v0.36.2...v0.37.0)

Updates `rich` from 14.3.1 to 14.3.2
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v14.3.1...v14.3.2)

Updates `typer` from 0.21.1 to 0.22.0
- [Release notes](https://github.com/fastapi/typer/releases)
- [Changelog](https://github.com/fastapi/typer/blob/master/docs/release-notes.md)
- [Commits](fastapi/typer@0.21.1...0.22.0)

Updates `wrapt` from 1.17.3 to 2.1.1
- [Release notes](https://github.com/GrahamDumpleton/wrapt/releases)
- [Changelog](https://github.com/GrahamDumpleton/wrapt/blob/develop/docs/changes.rst)
- [Commits](GrahamDumpleton/wrapt@1.17.3...2.1.1)

---
updated-dependencies:
- dependency-name: authlib
  dependency-version: 1.6.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-pip
- dependency-name: bazel-runfiles
  dependency-version: 1.8.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-pip
- dependency-name: cachetools
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-pip
- dependency-name: fastmcp
  dependency-version: 2.14.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-pip
- dependency-name: numpy
  dependency-version: 2.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-pip
- dependency-name: py-key-value-aio[disk,keyring,memory,redis]
  dependency-version: 0.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-pip
- dependency-name: pydocket
  dependency-version: 0.17.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-pip
- dependency-name: pyjwt[crypto]
  dependency-version: 2.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-pip
- dependency-name: redis
  dependency-version: 7.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-pip
- dependency-name: referencing
  dependency-version: 0.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-pip
- dependency-name: rich
  dependency-version: 14.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-pip
- dependency-name: typer
  dependency-version: 0.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-pip
- dependency-name: wrapt
  dependency-version: 2.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-pip
...

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 Feb 11, 2026
@dependabot dependabot bot requested a review from a team as a code owner February 11, 2026 15:09
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Feb 11, 2026
@kotlaja kotlaja merged commit fb05d30 into main Feb 12, 2026
14 checks passed
@dependabot dependabot bot deleted the dependabot/pip/tools/all-pip-3db368a0f4 branch February 12, 2026 14:50
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.

3 participants