dependabot[bot] opened a new pull request, #4199:
URL: https://github.com/apache/streampipes/pull/4199

   Bumps [nats-py](https://github.com/nats-io/nats.py) from 2.11.0 to 2.14.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/nats-io/nats.py/releases";>nats-py's 
releases</a>.</em></p>
   <blockquote>
   <h2>Release v2.14.0</h2>
   <h2>Overview</h2>
   <p>This release adds ability to <a 
href="https://redirect.github.com/nats-io/nats-architecture-and-design/pull/388";>reconnect
 to a specific server</a>.</p>
   <h2>Added</h2>
   <ul>
   <li>Add server pool management and reconnect handler by <a 
href="https://github.com/caspervonb";><code>@​caspervonb</code></a> in <a 
href="https://redirect.github.com/nats-io/nats.py/pull/829";>nats-io/nats.py#829</a></li>
   </ul>
   <h2>Fixed</h2>
   <ul>
   <li>Fix flaky example tests by <a 
href="https://github.com/caspervonb";><code>@​caspervonb</code></a> in <a 
href="https://redirect.github.com/nats-io/nats.py/pull/824";>nats-io/nats.py#824</a></li>
   <li>Fix opt_start_time and other datetime fields by <a 
href="https://github.com/caspervonb";><code>@​caspervonb</code></a> in <a 
href="https://redirect.github.com/nats-io/nats.py/pull/823";>nats-io/nats.py#823</a></li>
   <li>Improve KeyValue and ObjectStore watchers: Fix watching past history 
replay by <a href="https://github.com/fielding";><code>@​fielding</code></a> in 
<a 
href="https://redirect.github.com/nats-io/nats.py/pull/644";>nats-io/nats.py#644</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a href="https://github.com/fielding";><code>@​fielding</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/nats-io/nats.py/pull/644";>nats-io/nats.py#644</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/nats-io/nats.py/compare/v2.13.1...v2.14.0";>https://github.com/nats-io/nats.py/compare/v2.13.1...v2.14.0</a></p>
   <h2>Release v2.13.1</h2>
   <h2>Overview</h2>
   <p>A patch release that fixes broken cluster fields introduced in 
<code>2.13.0</code> (<a 
href="https://redirect.github.com/nats-io/nats.py/issues/818";>#818</a>)</p>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/nats-io/nats.py/compare/v2.13.0...v2.13.1";>https://github.com/nats-io/nats.py/compare/v2.13.0...v2.13.1</a></p>
   <h2>Release v2.13.0</h2>
   <h3>Added</h3>
   <ul>
   <li>
   <p>Add token callback support <a 
href="https://redirect.github.com/nats-io/nats.py/pull/812";>#812</a></p>
   <p>The <code>token</code> parameter on <code>connect</code> now accepts a 
callable that is invoked on
   each connection attempt, enabling dynamic token refresh on reconnect:</p>
   <pre lang="python"><code>def get_token():
       return fetch_token_from_auth_service()
   <p>nc = await nats.connect(&quot;nats://localhost:4222&quot;, 
token=get_token)<br />
   </code></pre></p>
   </li>
   <li>
   <p>Add per-message TTL support for KV operations <a 
href="https://redirect.github.com/nats-io/nats.py/pull/783";>#783</a></p>
   <p>KV <code>create</code>, <code>delete</code>, and <code>purge</code> now 
accept a <code>msg_ttl</code> parameter
   (in seconds). Requires nats-server 2.11+.</p>
   <pre lang="python"><code>kv = await 
js.create_key_value(bucket=&quot;SESSIONS&quot;)
   await kv.create(&quot;sess-123&quot;, b&quot;user-data&quot;, msg_ttl=3600)
   await kv.delete(&quot;sess-123&quot;, msg_ttl=60)
   </code></pre>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/nats-io/nats.py/commit/c481ed873fdf0a4829ad979f832e4ca6b1321195";><code>c481ed8</code></a>
 Release v2.14.0 (<a 
href="https://redirect.github.com/nats-io/nats.py/issues/830";>#830</a>)</li>
   <li><a 
href="https://github.com/nats-io/nats.py/commit/247b3ef6ac574174668c513746d1e9467200d621";><code>247b3ef</code></a>
 Add server pool management and reconnect handler (<a 
href="https://redirect.github.com/nats-io/nats.py/issues/829";>#829</a>)</li>
   <li><a 
href="https://github.com/nats-io/nats.py/commit/a9bfe7189a9a6ec8b55c39769e303695d717ce80";><code>a9bfe71</code></a>
 Fix watching past history replay (<a 
href="https://redirect.github.com/nats-io/nats.py/issues/644";>#644</a>)</li>
   <li><a 
href="https://github.com/nats-io/nats.py/commit/1e6c44df53b5cc52bfe17ec1605368ae404ce326";><code>1e6c44d</code></a>
 Fix opt_start_time and other datetime fields (<a 
href="https://redirect.github.com/nats-io/nats.py/issues/823";>#823</a>)</li>
   <li><a 
href="https://github.com/nats-io/nats.py/commit/15061595dbb6430f5b4f13fb0f85926aeaef0002";><code>1506159</code></a>
 Fix flaky example tests (<a 
href="https://redirect.github.com/nats-io/nats.py/issues/824";>#824</a>)</li>
   <li><a 
href="https://github.com/nats-io/nats.py/commit/3f13f5d61acbfc598c060b917b28cbbf5db441e4";><code>3f13f5d</code></a>
 Release nats-jetstream v0.1.0 (<a 
href="https://redirect.github.com/nats-io/nats.py/issues/822";>#822</a>)</li>
   <li><a 
href="https://github.com/nats-io/nats.py/commit/f7a3c3d34c05666929d59950085c44eda95ca66b";><code>f7a3c3d</code></a>
 Add nats-jetstream package (<a 
href="https://redirect.github.com/nats-io/nats.py/issues/734";>#734</a>)</li>
   <li><a 
href="https://github.com/nats-io/nats.py/commit/a2a67303a3b6f08485c08d22923a0b9aa71b3592";><code>a2a6730</code></a>
 Bump to v2.13.1 (<a 
href="https://redirect.github.com/nats-io/nats.py/issues/821";>#821</a>)</li>
   <li><a 
href="https://github.com/nats-io/nats.py/commit/311840c2bce5b26a9d9eb4bb8a1ea9db6a65a5e4";><code>311840c</code></a>
 Fix broken cluster fields (<a 
href="https://redirect.github.com/nats-io/nats.py/issues/820";>#820</a>)</li>
   <li><a 
href="https://github.com/nats-io/nats.py/commit/b2087492fe15e0a7f9c0cfb11e2928ed064b84ea";><code>b208749</code></a>
 Bump pynacl from 1.6.1 to 1.6.2 (<a 
href="https://redirect.github.com/nats-io/nats.py/issues/816";>#816</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/nats-io/nats.py/compare/v2.11.0...v2.14.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=nats-py&package-manager=pip&previous-version=2.11.0&new-version=2.14.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 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>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to