Bump github.com/nats-io/nats.go from 1.43.0 to 1.44.0 #2080

Closed
dependabot[bot] wants to merge 1 commit from refs/pull/2080/head into main
dependabot[bot] commented 2025-08-04 03:22:33 +00:00 (Migrated from github.com)
Owner

Imported from GitHub pull request.

Original GitHub pull request: #1450
Original author: @dependabot[bot]
Original URL: https://github.com/carverauto/serviceradar/pull/1450
Original created: 2025-08-04T03:22:33Z
Original updated: 2025-08-04T05:33:27Z
Original head: carverauto/serviceradar:dependabot/go_modules/github.com/nats-io/nats.go-1.44.0
Original base: main

Bumps github.com/nats-io/nats.go from 1.43.0 to 1.44.0.

Release notes

Sourced from github.com/nats-io/nats.go's releases.

Release v1.44.0

Changelog

Overview

This PR adds a PushConsumer implementation to jetstream, allowing easier migration to new API while maintaining usage of push consumers. For now it only supports the callback-based Consume(), more consuming options will be added in future releases.

ADDED

  • Core NATS:
    • UserCredentialBytes() Conn option (#1877)
  • JetStream:
    • PushConsumer implementation in jetstream package
    • Expose ClientTrace in JetStreamOptions (#1886)
  • Service API:
    • Expose WithEndpointPendingLimits option (#1899)
  • Legacy KeyValue:
    • Error() method to KeyLister and KeyWatcher interfaces (#1889)

FIXED

  • Core NATS:
    • Fix timeoutWriter not recovering after first error (#1896)
  • JetStream:
    • Consumer.Next() hangs after connection is closed (#1883)
    • Fixed stream info request for strict mode (#1887)
    • Ordered consumer not closing on connection close (#1885)
    • Return a more appropriate error when Subject Transform is not supported (#1416)
    • Fix subject transform comparison. Thanks @​erikmansson for the contribution (#1907)
  • Legacy JetStream:
    • Use timeout from JetStreamContext if no deadline is set on ctx (#1909)
  • KeyValue:
    • Keys() and ListKeys() returning duplicates (#1884)
    • Fix subject prefix for the Create/Update operation in KV store. Thanks @​SalvaChiLlo for the contribution (#1903)

CHANGED

  • Change DefaultSubPendingMsgsLimit (#998)

Complete Changes

https://github.com/nats-io/nats.go/compare/v1.43.0...v1.44.0

Commits
  • 7a260b8 Release v1.44.0 (#1910)
  • dfcb02d [FIXED] Use mirror-aware prefix when updating KV key (#1903)
  • 0bba2a9 [ADDED] PushConsumer implementation in jetstream package (#1785)
  • 627a9f6 [FIXED] KeyValue Keys() and ListKeys() returning duplicates (#1884)
  • 9743171 Merge pull request #1909 from nats-io/fix-watcher-timeout
  • 3bd15a8 [FIXED] Use timeout from JetStreamContext if no deadline is set on ctx
  • 0fc96b1 [FIXED] Fix subject transform comparison (#1907)
  • ea3ef92 [IMPROVED] Change DefaultSubPendingMsgsLimit comment to reflect actual value ...
  • f038fb4 [FIXED] Return a more appropriate error when subject transforms are not suppo...
  • ad6e34e [FIXED] Ordered consumer not closing on connection close (#1885)
  • Additional commits viewable in compare view

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)
Imported from GitHub pull request. Original GitHub pull request: #1450 Original author: @dependabot[bot] Original URL: https://github.com/carverauto/serviceradar/pull/1450 Original created: 2025-08-04T03:22:33Z Original updated: 2025-08-04T05:33:27Z Original head: carverauto/serviceradar:dependabot/go_modules/github.com/nats-io/nats.go-1.44.0 Original base: main --- Bumps [github.com/nats-io/nats.go](https://github.com/nats-io/nats.go) from 1.43.0 to 1.44.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/nats-io/nats.go/releases">github.com/nats-io/nats.go's releases</a>.</em></p> <blockquote> <h2>Release v1.44.0</h2> <h2>Changelog</h2> <h2>Overview</h2> <p>This PR adds a <code>PushConsumer</code> implementation to <code>jetstream</code>, allowing easier migration to new API while maintaining usage of push consumers. For now it only supports the callback-based <code>Consume()</code>, more consuming options will be added in future releases.</p> <h3>ADDED</h3> <ul> <li>Core NATS: <ul> <li><code>UserCredentialBytes()</code> <code>Conn</code> option (<a href="https://redirect.github.com/nats-io/nats.go/issues/1877">#1877</a>)</li> </ul> </li> <li>JetStream: <ul> <li><code>PushConsumer</code> implementation in <code>jetstream</code> package</li> <li>Expose <code>ClientTrace</code> in <code>JetStreamOptions</code> (<a href="https://redirect.github.com/nats-io/nats.go/issues/1886">#1886</a>)</li> </ul> </li> <li>Service API: <ul> <li>Expose <code>WithEndpointPendingLimits</code> option (<a href="https://redirect.github.com/nats-io/nats.go/issues/1899">#1899</a>)</li> </ul> </li> <li>Legacy KeyValue: <ul> <li><code>Error()</code> method to <code>KeyLister</code> and <code>KeyWatcher</code> interfaces (<a href="https://redirect.github.com/nats-io/nats.go/issues/1889">#1889</a>)</li> </ul> </li> </ul> <h3>FIXED</h3> <ul> <li>Core NATS: <ul> <li>Fix timeoutWriter not recovering after first error (<a href="https://redirect.github.com/nats-io/nats.go/issues/1896">#1896</a>)</li> </ul> </li> <li>JetStream: <ul> <li><code>Consumer.Next()</code> hangs after connection is closed (<a href="https://redirect.github.com/nats-io/nats.go/issues/1883">#1883</a>)</li> <li>Fixed stream info request for strict mode (<a href="https://redirect.github.com/nats-io/nats.go/issues/1887">#1887</a>)</li> <li>Ordered consumer not closing on connection close (<a href="https://redirect.github.com/nats-io/nats.go/issues/1885">#1885</a>)</li> <li>Return a more appropriate error when Subject Transform is not supported (<a href="https://redirect.github.com/nats-io/nats.go/issues/1416">#1416</a>)</li> <li>Fix subject transform comparison. Thanks <a href="https://github.com/erikmansson"><code>@​erikmansson</code></a> for the contribution (<a href="https://redirect.github.com/nats-io/nats.go/issues/1907">#1907</a>)</li> </ul> </li> <li>Legacy JetStream: <ul> <li>Use timeout from <code>JetStreamContext</code> if no deadline is set on ctx (<a href="https://redirect.github.com/nats-io/nats.go/issues/1909">#1909</a>)</li> </ul> </li> <li>KeyValue: <ul> <li><code>Keys()</code> and <code>ListKeys()</code> returning duplicates (<a href="https://redirect.github.com/nats-io/nats.go/issues/1884">#1884</a>)</li> <li>Fix subject prefix for the Create/Update operation in KV store. Thanks <a href="https://github.com/SalvaChiLlo"><code>@​SalvaChiLlo</code></a> for the contribution (<a href="https://redirect.github.com/nats-io/nats.go/issues/1903">#1903</a>)</li> </ul> </li> </ul> <h3>CHANGED</h3> <ul> <li>Change <code>DefaultSubPendingMsgsLimit</code> (<a href="https://redirect.github.com/nats-io/nats.go/issues/998">#998</a>)</li> </ul> <h3>Complete Changes</h3> <p><a href="https://github.com/nats-io/nats.go/compare/v1.43.0...v1.44.0">https://github.com/nats-io/nats.go/compare/v1.43.0...v1.44.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/nats-io/nats.go/commit/7a260b8b93562630ec8c6f8f31ae3704c4f61ad1"><code>7a260b8</code></a> Release v1.44.0 (<a href="https://redirect.github.com/nats-io/nats.go/issues/1910">#1910</a>)</li> <li><a href="https://github.com/nats-io/nats.go/commit/dfcb02dcdcaef196deb28daae1d17235dbe165d2"><code>dfcb02d</code></a> [FIXED] Use mirror-aware prefix when updating KV key (<a href="https://redirect.github.com/nats-io/nats.go/issues/1903">#1903</a>)</li> <li><a href="https://github.com/nats-io/nats.go/commit/0bba2a9842214a01b06bdccd0d4bbba268647c67"><code>0bba2a9</code></a> [ADDED] PushConsumer implementation in jetstream package (<a href="https://redirect.github.com/nats-io/nats.go/issues/1785">#1785</a>)</li> <li><a href="https://github.com/nats-io/nats.go/commit/627a9f63c2e6dc30a30fe7172978db2b58494cc2"><code>627a9f6</code></a> [FIXED] KeyValue Keys() and ListKeys() returning duplicates (<a href="https://redirect.github.com/nats-io/nats.go/issues/1884">#1884</a>)</li> <li><a href="https://github.com/nats-io/nats.go/commit/9743171c2a45bb35dbb740afa8ea89789041407d"><code>9743171</code></a> Merge pull request <a href="https://redirect.github.com/nats-io/nats.go/issues/1909">#1909</a> from nats-io/fix-watcher-timeout</li> <li><a href="https://github.com/nats-io/nats.go/commit/3bd15a802691536af68ef5f1e44826bb423a1138"><code>3bd15a8</code></a> [FIXED] Use timeout from JetStreamContext if no deadline is set on ctx</li> <li><a href="https://github.com/nats-io/nats.go/commit/0fc96b1daa6d47da063f3c584ca9bd11d75e30b3"><code>0fc96b1</code></a> [FIXED] Fix subject transform comparison (<a href="https://redirect.github.com/nats-io/nats.go/issues/1907">#1907</a>)</li> <li><a href="https://github.com/nats-io/nats.go/commit/ea3ef928233d820bcc1aa2d95a3055d4c79758a3"><code>ea3ef92</code></a> [IMPROVED] Change DefaultSubPendingMsgsLimit comment to reflect actual value ...</li> <li><a href="https://github.com/nats-io/nats.go/commit/f038fb4bee8ae07006504c92671990337d559beb"><code>f038fb4</code></a> [FIXED] Return a more appropriate error when subject transforms are not suppo...</li> <li><a href="https://github.com/nats-io/nats.go/commit/ad6e34e1ae777b6ce8d382b102ed4b4059b305f8"><code>ad6e34e</code></a> [FIXED] Ordered consumer not closing on connection close (<a href="https://redirect.github.com/nats-io/nats.go/issues/1885">#1885</a>)</li> <li>Additional commits viewable in <a href="https://github.com/nats-io/nats.go/compare/v1.43.0...v1.44.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/nats-io/nats.go&package-manager=go_modules&previous-version=1.43.0&new-version=1.44.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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) </details>
dependabot[bot] commented 2025-08-04 05:33:24 +00:00 (Migrated from github.com)
Author
Owner

Imported GitHub PR comment.

Original author: @dependabot[bot]
Original URL: https://github.com/carverauto/serviceradar/pull/1450#issuecomment-3149180003
Original created: 2025-08-04T05:33:24Z

Looks like github.com/nats-io/nats.go is up-to-date now, so this is no longer needed.

Imported GitHub PR comment. Original author: @dependabot[bot] Original URL: https://github.com/carverauto/serviceradar/pull/1450#issuecomment-3149180003 Original created: 2025-08-04T05:33:24Z --- Looks like github.com/nats-io/nats.go is up-to-date now, so this is no longer needed.

Pull request closed

Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
carverauto/serviceradar!2080
No description provided.