Bump rethinkdb-driver from 2.4.2 to 2.4.3 #482

Merged
dependabot-preview[bot] merged 1 commit from dependabot/maven/greg-dev/com.rethinkdb-rethinkdb-driver-2.4.3 into greg-dev 2020-05-20 15:18:21 +02:00
dependabot-preview[bot] commented 2020-05-20 15:18:08 +02:00 (Migrated from github.com)

Bumps rethinkdb-driver from 2.4.2 to 2.4.3.

Release notes

Sourced from rethinkdb-driver's releases.

Version 2.4.3

This release brings in some internal refactoring to the driver, including a lot of method inlining and logic rewriting.

Breaking Changes ⚠️

No beaking changes.

New Features 🚀

  • #42 Connection Builders now can generate db-urls.
  • #42 Add support to java-only flags on db-url parsing/generation.
  • #44 Implement run helpers, as well as run*Async variances of them. (Inspired by the RethinkDB C# Driver)
    • runAtom<T>: Returns the atom value, possibly converted, or throws if not an atom
    • runGrouping<K, V>: Same as runAtom but the result of the grouping operation is converted to Map<K, List<V>>
    • runUnwrapping: Forces unwrapLists behaviour.
  • #46 Asynchronous connect/reconnect/close methods.

Bug Fixes 🔧

  • #48 Fixes bug on the grouped result pseudotype.

Improvements 👍

  • #46 Support for daemon threads on the response pump.
  • #46 Detaching response parsing from the read loop.
  • #46 ReqlAst queries are more resource efficient by replacing empty OptArgs with null.

Other Changes 🗒️

  • #42 [TESTS] Implements db-url tests.
  • #43 [TESTS] Implement tests for the Types class.
  • #46 Deprecated auth keys support.
  • #48 [TESTS] Added tests for the run helpers.

Dependencies 📦

No dependency changes.

Commits
  • a25c392 Merge pull request #49 from rethinkdb/release-candidate/v2.4.3
  • 7166075 Version bump, fix documentation, add extra deployment steps.
  • d9f741b Update .gitignore to match file of feature/kotlin-scripts branch
  • 07e5980 Merge branch 'master' into develop
  • 33c8484 Merge pull request #45 from rethinkdb/update-deploy-docs
  • e135aa7 Update DEPLOYING.md
  • 501ad5e Merge pull request #48 from rethinkdb/tests/run-helpers
  • 16c0a8d Added run helpers unit testing. Fixed bug with grouped result pseudotype.
  • 8fc00d5 Merge pull request #46 from rethinkdb/feature/async-connection
  • 6fc82f5 Fixed tests, non-breaking support for async connection factories.
  • 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 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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)
Bumps [rethinkdb-driver](https://github.com/rethinkdb/rethinkdb-java) from 2.4.2 to 2.4.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rethinkdb/rethinkdb-java/releases">rethinkdb-driver's releases</a>.</em></p> <blockquote> <h1>Version 2.4.3</h1> <p>This release brings in some internal refactoring to the driver, including a lot of method inlining and logic rewriting.</p> <h2>Breaking Changes ⚠️</h2> <p><em>No beaking changes.</em></p> <h2>New Features 🚀</h2> <ul> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/42">#42</a> Connection Builders now can generate db-urls.</li> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/42">#42</a> Add support to java-only flags on db-url parsing/generation.</li> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/44">#44</a> Implement run helpers, as well as <code>run*Async</code> variances of them. (Inspired by the <a href="https://github.com/bchavez/RethinkDb.Driver/wiki/Run-Helpers">RethinkDB C# Driver</a>) <ul> <li><code>runAtom&lt;T&gt;</code>: Returns the atom value, possibly converted, or throws if not an atom</li> <li><code>runGrouping&lt;K, V&gt;</code>: Same as <code>runAtom</code> but the result of the grouping operation is converted to <code>Map&lt;K, List&lt;V&gt;&gt;</code></li> <li><code>runUnwrapping</code>: Forces <code>unwrapLists</code> behaviour.</li> </ul> </li> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/46">#46</a> Asynchronous connect/reconnect/close methods.</li> </ul> <h2>Bug Fixes 🔧</h2> <ul> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/48">#48</a> Fixes bug on the grouped result pseudotype.</li> </ul> <h2>Improvements 👍</h2> <ul> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/46">#46</a> Support for daemon threads on the response pump.</li> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/46">#46</a> Detaching response parsing from the read loop.</li> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/46">#46</a> ReqlAst queries are more resource efficient by replacing empty OptArgs with null.</li> </ul> <h2>Other Changes 🗒️</h2> <ul> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/42">#42</a> [TESTS] Implements db-url tests.</li> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/43">#43</a> [TESTS] Implement tests for the <code>Types</code> class.</li> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/46">#46</a> Deprecated auth keys support.</li> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/48">#48</a> [TESTS] Added tests for the run helpers.</li> </ul> <h2>Dependencies 📦</h2> <p><em>No dependency changes.</em></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/a25c3928128db08e7f451cb1d47105895b2a09de"><code>a25c392</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/49">#49</a> from rethinkdb/release-candidate/v2.4.3</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/71660754d6498a8643d259b055f949d3c93c2974"><code>7166075</code></a> Version bump, fix documentation, add extra deployment steps.</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/d9f741bb37c3ddd7f9f54e838b2e1b66490e0b2b"><code>d9f741b</code></a> Update .gitignore to match file of feature/kotlin-scripts branch</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/07e598041c4d1d070f9460f119d68d3697f5dfd7"><code>07e5980</code></a> Merge branch 'master' into develop</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/33c84847602b8c8801fe1f1654be7ffd6b1b5865"><code>33c8484</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/45">#45</a> from rethinkdb/update-deploy-docs</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/e135aa797ecf9a184233dce497587bbb7874120d"><code>e135aa7</code></a> Update DEPLOYING.md</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/501ad5ea6ab809c29e3d51e02cf0428eb5b4fc9a"><code>501ad5e</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/48">#48</a> from rethinkdb/tests/run-helpers</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/16c0a8d3c4c37899804c936997143f132ea96e8a"><code>16c0a8d</code></a> Added run helpers unit testing. Fixed bug with grouped result pseudotype.</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/8fc00d541e4c051cd64767c10c5864c09dba9eaf"><code>8fc00d5</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/46">#46</a> from rethinkdb/feature/async-connection</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/6fc82f5fd8ecbde556521b8027170b66f4851146"><code>6fc82f5</code></a> Fixed tests, non-breaking support for async connection factories.</li> <li>Additional commits viewable in <a href="https://github.com/rethinkdb/rethinkdb-java/compare/v2.4.2...2.4.3">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=com.rethinkdb:rethinkdb-driver&package-manager=maven&previous-version=2.4.2&new-version=2.4.3)](https://dependabot.com/compatibility-score/?dependency-name=com.rethinkdb:rethinkdb-driver&package-manager=maven&previous-version=2.4.2&new-version=2.4.3) 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details>
greg6775 (Migrated from github.com) reviewed 2020-05-20 15:18:08 +02:00
Schlauer-Hax (Migrated from github.com) reviewed 2020-05-20 15:18:08 +02:00
Sign in to join this conversation.
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: greg6775/Hadder#482
No description provided.