chore(deps): bump github.com/nats-io/nats.go from 1.13.1-0.20220308171302-2f2f6968e98d to 1.24.0 #93

Closed
dependabot[bot] wants to merge 1 commits from dependabot/go_modules/github.com/nats-io/nats.go-1.24.0 into v3
dependabot[bot] commented 2023-02-27 12:59:56 +03:00 (Migrated from github.com)

Bumps github.com/nats-io/nats.go from 1.13.1-0.20220308171302-2f2f6968e98d to 1.24.0.

Release notes

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

Release v1.24.0

Changelog

Added

  • Core:
  • JetStream
    • FetchChan method to utilize non-blocking pull subscription requests (#1211)
  • Service API (micro):
    • ContextHandler helper function which implements micro.Handler and allows passing context.Context to request handler (#1215)

Improved

  • Use go 1.19 in go.mod and skip using deprecated rand.Seed for go version +1.20 (#1209)

Fixed

  • JetStream:
    • Retry recreating ordered consumer on insufficient resources error (#1217)
    • Stream and consumer name validation now checks for space in name, preventing timeouts and returning valid error (#1219)
  • Service API (micro):
    • Avoid panic on schema request when no schemas were given (#1195)
  • KV:
    • Fix CreateKeyValue idempotency check on AllowDirect when upgrading server version to > 2.9.0 Thanks to @​dbason for the contribution (#1213)

Complete Changes

https://github.com/nats-io/nats.go/compare/v1.23.0...v1.24.0

Release v1.23.0

Changelog

Overview

This release focuses on improvements in micro package, most notably adding a possibility to create a service with multiple endpoints.

Added

  • Service API (micro):
    • Support for multi-endpoint services (#1180)
    • type field in monitoring handlers responses (#1173)

Changed

  • JetStream:
    • Optimize AddConsumer() performance by not sending JS request if consumer config has not changed (#1185)
  • Service API (micro):
    • Use interface instead of struct for micro.Request (#1174)
    • Use time.Time instead of string for Started field in STATS response (#1175)

... (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 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 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 [github.com/nats-io/nats.go](https://github.com/nats-io/nats.go) from 1.13.1-0.20220308171302-2f2f6968e98d to 1.24.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.24.0</h2> <h2>Changelog</h2> <h3>Added</h3> <ul> <li>Core: <ul> <li>Option to skip host lookup. Thanks to <a href="https://github.com/chen-shmilovich-sysdig"><code>@​chen-shmilovich-sysdig</code></a> for the contribution (<a href="https://github-redirect.dependabot.com/nats-io/nats.go/issues/1204">#1204</a>)</li> </ul> </li> <li>JetStream <ul> <li><code>FetchChan</code> method to utilize non-blocking pull subscription requests (<a href="https://github-redirect.dependabot.com/nats-io/nats.go/issues/1211">#1211</a>)</li> </ul> </li> <li>Service API (<code>micro</code>): <ul> <li><code>ContextHandler</code> helper function which implements <code>micro.Handler</code> and allows passing <code>context.Context</code> to request handler (<a href="https://github-redirect.dependabot.com/nats-io/nats.go/issues/1215">#1215</a>)</li> </ul> </li> </ul> <h3>Improved</h3> <ul> <li>Use go 1.19 in <code>go.mod</code> and skip using deprecated <code>rand.Seed</code> for go version +1.20 (<a href="https://github-redirect.dependabot.com/nats-io/nats.go/issues/1209">#1209</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>JetStream: <ul> <li>Retry recreating ordered consumer on insufficient resources error (<a href="https://github-redirect.dependabot.com/nats-io/nats.go/issues/1217">#1217</a>)</li> <li>Stream and consumer name validation now checks for space in name, preventing timeouts and returning valid error (<a href="https://github-redirect.dependabot.com/nats-io/nats.go/issues/1219">#1219</a>)</li> </ul> </li> <li>Service API (<code>micro</code>): <ul> <li>Avoid panic on schema request when no schemas were given (<a href="https://github-redirect.dependabot.com/nats-io/nats.go/issues/1195">#1195</a>)</li> </ul> </li> <li>KV: <ul> <li>Fix <code>CreateKeyValue</code> idempotency check on <code>AllowDirect</code> when upgrading server version to &gt; 2.9.0 Thanks to <a href="https://github.com/dbason"><code>@​dbason</code></a> for the contribution (<a href="https://github-redirect.dependabot.com/nats-io/nats.go/issues/1213">#1213</a>)</li> </ul> </li> </ul> <h3>Complete Changes</h3> <p><a href="https://github.com/nats-io/nats.go/compare/v1.23.0...v1.24.0">https://github.com/nats-io/nats.go/compare/v1.23.0...v1.24.0</a></p> <h2>Release v1.23.0</h2> <h2>Changelog</h2> <h3>Overview</h3> <p>This release focuses on improvements in <code>micro</code> package, most notably adding a possibility to create a service with multiple endpoints.</p> <h3>Added</h3> <ul> <li>Service API (<code>micro</code>): <ul> <li>Support for multi-endpoint services (<a href="https://github-redirect.dependabot.com/nats-io/nats.go/issues/1180">#1180</a>)</li> <li><code>type</code> field in monitoring handlers responses (<a href="https://github-redirect.dependabot.com/nats-io/nats.go/issues/1173">#1173</a>)</li> </ul> </li> </ul> <h3>Changed</h3> <ul> <li>JetStream: <ul> <li>Optimize <code>AddConsumer()</code> performance by not sending JS request if consumer config has not changed (<a href="https://github-redirect.dependabot.com/nats-io/nats.go/issues/1185">#1185</a>)</li> </ul> </li> <li>Service API (<code>micro</code>): <ul> <li>Use interface instead of struct for <code>micro.Request</code> (<a href="https://github-redirect.dependabot.com/nats-io/nats.go/issues/1174">#1174</a>)</li> <li>Use <code>time.Time</code> instead of <code>string</code> for <code>Started</code> field in <code>STATS</code> response (<a href="https://github-redirect.dependabot.com/nats-io/nats.go/issues/1175">#1175</a>)</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/nats-io/nats.go/commits/v1.24.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.13.1-0.20220308171302-2f2f6968e98d&new-version=1.24.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 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>
github-actions[bot] (Migrated from github.com) reviewed 2023-02-27 13:00:11 +03:00
github-actions[bot] (Migrated from github.com) approved these changes 2023-02-27 13:16:58 +03:00
vtolstov closed this pull request 2023-06-01 11:36:29 +03:00

Pull request closed

Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
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: unistack-org/micro-broker-nats#93
No description provided.