Bump rethinkdb-driver from 2.4.0 to 2.4.2 #427

Merged
dependabot-preview[bot] merged 1 commit from dependabot/maven/greg-dev/com.rethinkdb-rethinkdb-driver-2.4.2 into greg-dev 2020-05-13 15:16:28 +02:00
dependabot-preview[bot] commented 2020-03-31 15:17:20 +02:00 (Migrated from github.com)

Bumps rethinkdb-driver from 2.4.0 to 2.4.2.

Release notes

Sourced from rethinkdb-driver's releases.

Version 2.4.2

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

Breaking Changes ⚠️

  • #29, #32 Internal classes Util, Converter, Crypto were deleted. It should be noted that you weren't supposed to use them.
  • #29 The Internal mapper available at RethinkDB.getInternalMapper() was moved.
    • If you need to access the mapper that reads and writes to the RethinkDB server, use Internals.getInternalMapper().

New Features 🚀

  • #26 New Types utility class. With it, you can replace the usage of a anonymous TypeReference with a method call.

Bug Fixes 🔧

  • #31 The default connection socket implementation could hang even with timeout. This is now fixed.

Improvements 👍

  • #26, #33 Replaced all usages of anonymous TypeReference objects inside the driver with Types method calls.
    • This should be smaller and replace loading an entire class per reference with a few method calls.
  • #27 Refactored Converter class code (#29 now merged inside Internals).
  • #29 Merged a lot of utility classes into a Internals class.
  • #32 Refactored the HandshakeProtocol class.
    • Crypto class was inlined into HandshakeProtocol subclasses, since they're the only classes to use it.

Other Changes 🗒️

  • #30 [TESTS] Broken generated tests were removed. This makes Travis-CI more useful to the driver since now we can know if something breaks.
  • #34 [TESTS] Refactored the test framework code. Unused framework code was commented.

Dependencies 📦

No dependency changes.

v2.4.1.1

Fixes POM "packaging" value, previous version may cause problems with any build tool. (Note: Gradle doesn't seem to care)

v2.4.1 - Overhaul

Overhaul

This release brings in the two week effort to rewrite of driver, bringing in some breaking changes as well as new features and bug fixes.

Breaking Changes ⚠️

  • #7 ReqlAst.run doesn't return T anymore.
    • Now it always returns Result<T>, no matter if it's an atom or sequence.
... (truncated)
Commits
  • f1e1ddb Merge pull request #35 from rethinkdb/release-candidate/v2.4.2
  • a8fc2c8 Update README.md
  • a11bae2 Version bump
  • 8b8f95e Merge pull request #34 from rethinkdb/refactor/tests
  • 6d7c9e5 Refactored test framework
  • 6ffb128 Merge pull request #32 from rethinkdb/refactor/handshakes
  • 70b3380 Merge pull request #31 from rethinkdb/fix/handshake-hang
  • 334fdc9 Merge pull request #33 from rethinkdb/refactor/connection
  • 7aa7dfd Updated .gitignore
  • 8680804 Small Connection refactor
  • 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.0 to 2.4.2. <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.2</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> <ul> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/29">#29</a>, <a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/32">#32</a> Internal classes <code>Util</code>, <code>Converter</code>, <code>Crypto</code> were deleted. It should be noted that you weren't supposed to use them.</li> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/29">#29</a> The Internal mapper available at <code>RethinkDB.getInternalMapper()</code> was moved. <ul> <li>If you need to access the mapper that reads and writes to the RethinkDB server, use <code>Internals.getInternalMapper()</code>.</li> </ul> </li> </ul> <h2>New Features 🚀</h2> <ul> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/26">#26</a> New <code>Types</code> utility class. With it, you can replace the usage of a anonymous <code>TypeReference</code> with a method call.</li> </ul> <h2>Bug Fixes 🔧</h2> <ul> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/31">#31</a> The default connection socket implementation could hang even with timeout. This is now fixed.</li> </ul> <h2>Improvements 👍</h2> <ul> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/26">#26</a>, <a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/33">#33</a> Replaced all usages of anonymous <code>TypeReference</code> objects inside the driver with <code>Types</code> method calls. <ul> <li>This should be smaller and replace loading an entire class per reference with a few method calls.</li> </ul> </li> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/27">#27</a> Refactored <code>Converter</code> class code (<a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/29">#29</a> now merged inside <code>Internals</code>).</li> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/29">#29</a> Merged a lot of utility classes into a <code>Internals</code> class.</li> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/32">#32</a> Refactored the <code>HandshakeProtocol</code> class. <ul> <li><code>Crypto</code> class was inlined into <code>HandshakeProtocol</code> subclasses, since they're the only classes to use it.</li> </ul> </li> </ul> <h2>Other Changes 🗒️</h2> <ul> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/30">#30</a> [TESTS] Broken generated tests were removed. This makes Travis-CI more useful to the driver since now we can know if something breaks.</li> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/34">#34</a> [TESTS] Refactored the test framework code. Unused framework code was commented.</li> </ul> <h2>Dependencies 📦</h2> <p><em>No dependency changes.</em></p> <h2>v2.4.1.1</h2> <p>Fixes POM &quot;packaging&quot; value, previous version may cause problems with any build tool. (Note: Gradle doesn't seem to care)</p> <h2>v2.4.1 - Overhaul</h2> <h1>Overhaul</h1> <p>This release brings in the two week effort to rewrite of driver, bringing in some breaking changes as well as new features and bug fixes.</p> <h2>Breaking Changes ⚠️</h2> <ul> <li><a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/7">#7</a> <code>ReqlAst.run</code> doesn't return <code>T</code> anymore. <ul> <li>Now it always returns <code>Result&lt;T&gt;</code>, no matter if it's an atom or sequence.</li> </ul> </li> </ul> </tr></table> ... (truncated) </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/f1e1ddbf040525ad43b32e526cb5b6c513b64e87"><code>f1e1ddb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/35">#35</a> from rethinkdb/release-candidate/v2.4.2</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/a8fc2c8168880efe2c7d3438c86aebfc7ebf9acd"><code>a8fc2c8</code></a> Update README.md</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/a11bae2665051c351f9910c7771581063e81beaf"><code>a11bae2</code></a> Version bump</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/8b8f95e2c1bc0cc25ec3c9779bbbd4d0884731f7"><code>8b8f95e</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/34">#34</a> from rethinkdb/refactor/tests</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/6d7c9e520a9e64475f50fb09a3c0e1fe4c207168"><code>6d7c9e5</code></a> Refactored test framework</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/6ffb128421a93630f281df5dbaeb2ebd54884fbc"><code>6ffb128</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/32">#32</a> from rethinkdb/refactor/handshakes</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/70b33807fd1001d2eff09d54d227a6a52384a77e"><code>70b3380</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/31">#31</a> from rethinkdb/fix/handshake-hang</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/334fdc949c0a69770461fbc2238a5f105f9d4252"><code>334fdc9</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rethinkdb/rethinkdb-java/issues/33">#33</a> from rethinkdb/refactor/connection</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/7aa7dfde1f0c46e128845d9fdf428b70e11a7c92"><code>7aa7dfd</code></a> Updated .gitignore</li> <li><a href="https://github.com/rethinkdb/rethinkdb-java/commit/86808041f626e7cd426c49b996bf5c0f2cc639cf"><code>8680804</code></a> Small Connection refactor</li> <li>Additional commits viewable in <a href="https://github.com/rethinkdb/rethinkdb-java/compare/v2.4.0...v2.4.2">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.0&new-version=2.4.2)](https://dependabot.com/compatibility-score/?dependency-name=com.rethinkdb:rethinkdb-driver&package-manager=maven&previous-version=2.4.0&new-version=2.4.2) 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-03-31 15:17:20 +02:00
Schlauer-Hax (Migrated from github.com) reviewed 2020-03-31 15:17:20 +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#427
No description provided.