Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nats-io/nats.go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.45.0
Choose a base ref
...
head repository: nats-io/nats.go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.46.0
Choose a head ref
  • 17 commits
  • 27 files changed
  • 3 contributors

Commits on Aug 22, 2025

  1. [IMPROVED] De-flake TestHotSpotReconnect and fix kv per key TTL test (#…

    …1926)
    
    * [IMPROVED] De-flake TestHotSpotReconnect
    
    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    
    * Fixed failing per key ttl test
    
    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    
    ---------
    
    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    piotrpio authored Aug 22, 2025
    Configuration menu
    Copy the full SHA
    3d824b0 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2025

  1. [UPDATED] Add max consumers limit error (code=10026) (#1927)

    Signed-off-by: Artem Shulga <dev.ashulga@gmail.com>
    Co-authored-by: arlet <shulga@niuitmo.ru>
    Arlet2 and arlet authored Sep 9, 2025
    Configuration menu
    Copy the full SHA
    5e20e85 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2025

  1. [IMPROVED] Return more specific cons info error on ordered consumer r…

    …ecreation (#1931)
    
    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    piotrpio authored Sep 10, 2025
    Configuration menu
    Copy the full SHA
    3d0a13a View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2025

  1. [ADDED] Context and timeout options to Messages.Next() plus Fetch con…

    …text support (#1938)
    
    * Add timeout support to MessagesContext.Next() with mutual exclusion
    * [ADDED] FetchContext support for pull consumer operations
    ---------
    
    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    piotrpio authored Sep 18, 2025
    Configuration menu
    Copy the full SHA
    98a4735 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2025

  1. [ADDED] Add Metadata support to KeyValue buckets (#1944)

    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    piotrpio authored Sep 22, 2025
    Configuration menu
    Copy the full SHA
    a9a04a9 View commit details
    Browse the repository at this point in the history
  2. [ADDED] Support custom name prefix for ordered consumers (#1928)

    Add a new NamePrefix field to OrderedConsumerConfig that allows users
    to specify custom prefixes for ordered consumer names. When provided,
    consumer names will be generated as {NamePrefix}_{sequence_number}
    (e.g., "myapp_1", "myapp_2"). If not provided, the default behavior
    of using a NUID as prefix is maintained.
    
    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    piotrpio authored Sep 22, 2025
    Configuration menu
    Copy the full SHA
    c857ae9 View commit details
    Browse the repository at this point in the history
  3. [ADDED] Counters support (#1932)

    * [ADDED] Configuration field for msg counters
    
    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    
    * [ADDED] NoHeaders option for GetMsg
    
    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    
    * [ADDED] NoHeaders option for GetLastMsgForSubject
    
    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    
    ---------
    
    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    piotrpio committed Sep 22, 2025
    Configuration menu
    Copy the full SHA
    1353741 View commit details
    Browse the repository at this point in the history
  4. [ADDED] Prioritized priority policy (#1937)

    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    piotrpio committed Sep 22, 2025
    Configuration menu
    Copy the full SHA
    460f3de View commit details
    Browse the repository at this point in the history
  5. [ADDED] New fields in ClusterInfo (#1935)

    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    piotrpio committed Sep 22, 2025
    Configuration menu
    Copy the full SHA
    3416ed0 View commit details
    Browse the repository at this point in the history
  6. [IMPROVED] Add test veryfying if mirror can be updated to regular str…

    …eam (#1934)
    
    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    piotrpio committed Sep 22, 2025
    Configuration menu
    Copy the full SHA
    ec9b58f View commit details
    Browse the repository at this point in the history
  7. [CHANGED] Remove no headers support (#1939)

    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    piotrpio committed Sep 22, 2025
    Configuration menu
    Copy the full SHA
    60f1718 View commit details
    Browse the repository at this point in the history
  8. [ADDED] AllowAtomicPublish option on stream config (#1940)

    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    piotrpio committed Sep 22, 2025
    Configuration menu
    Copy the full SHA
    13d3ae2 View commit details
    Browse the repository at this point in the history
  9. [ADDED] Introduce PersistMode for configurable persistence settings i…

    …n streams (#1943)
    
    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    piotrpio committed Sep 22, 2025
    Configuration menu
    Copy the full SHA
    c85e275 View commit details
    Browse the repository at this point in the history
  10. [FIXED] Revert leftover no headers support changes (#1941)

    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    piotrpio committed Sep 22, 2025
    Configuration menu
    Copy the full SHA
    5e67170 View commit details
    Browse the repository at this point in the history
  11. [ADDED] AllowMsgSchedules field to enable message scheduling in strea…

    …m config (#1942)
    
    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    piotrpio committed Sep 22, 2025
    Configuration menu
    Copy the full SHA
    9726c6f View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    2d3be0c View commit details
    Browse the repository at this point in the history
  13. Release v1.46.0

    Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
    piotrpio committed Sep 22, 2025
    Configuration menu
    Copy the full SHA
    41de016 View commit details
    Browse the repository at this point in the history
Loading