Skip to content

Bump nats-py from 2.6.0 to 2.13.1 in /scanners/domain-discovery#6987

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/pip/scanners/domain-discovery/nats-py-2.13.1
Open

Bump nats-py from 2.6.0 to 2.13.1 in /scanners/domain-discovery#6987
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/pip/scanners/domain-discovery/nats-py-2.13.1

Conversation

@dependabot
Copy link
Contributor

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

Bumps nats-py from 2.6.0 to 2.13.1.

Release notes

Sourced from nats-py's releases.

Release v2.13.1

Overview

A patch release that fixes broken cluster fields introduced in 2.13.0 (#818)

Full Changelog: nats-io/nats.py@v2.13.0...v2.13.1

Release v2.13.0

Added

  • Add token callback support #812

    The token parameter on connect now accepts a callable that is invoked on each connection attempt, enabling dynamic token refresh on reconnect:

    def get_token():
        return fetch_token_from_auth_service()
    nc = await nats.connect("nats://localhost:4222", token=get_token)

  • Add per-message TTL support for KV operations #783

    KV create, delete, and purge now accept a msg_ttl parameter (in seconds). Requires nats-server 2.11+.

    kv = await js.create_key_value(bucket="SESSIONS")
    await kv.create("sess-123", b"user-data", msg_ttl=3600)
    await kv.delete("sess-123", msg_ttl=60)
  • Add consumer-configured inbox_prefix for JetStream pull_subscribe methods #781

    A custom inbox_prefix can be passed to pull_subscribe and pull_subscribe_bind to control the deliver subject prefix:

    sub = await js.pull_subscribe("orders.>", "my-consumer", inbox_prefix=b"_CUSTOM_INBOX.")
    msgs = await sub.fetch(10)
  • Add persist_mode to StreamConfig #773

  • Add raft_group, leader_since, and traffic_acc to ClusterInfo #766

Fixed

  • Fix StreamConfig omitempty fields for nats-server > 2.12 #788

... (truncated)

Commits

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [nats-py](https://github.com/nats-io/nats.py) from 2.6.0 to 2.13.1.
- [Release notes](https://github.com/nats-io/nats.py/releases)
- [Commits](nats-io/nats.py@v2.6.0...v2.13.1)

---
updated-dependencies:
- dependency-name: nats-py
  dependency-version: 2.13.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Feb 6, 2026
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.

0 participants