Skip to content

Releases: neumino/rethinkdbdash

v1.13.7

06 Jul 19:34
Compare
Choose a tag to compare
  • Group some TCP messages in connect and _send.

v1.13.6

28 Jun 22:31
Compare
Choose a tag to compare
  • Replace some console.log with console.error in pool.js - Fix #30

v1.13.5

28 Jun 19:29
Compare
Choose a tag to compare
  • Implement an exponential backoff
    In case the pool fails to create a new connection, the pool enters a "slow growth mode". In this mode, a query won't create a connection if none is available (but wait for one to be created).
    In "slow growth mode", the pool will keep trying to create a connection, one at a time, and after a delay of 2^(number of fails)*timeoutError

v1.13.4

28 Jun 06:36
Compare
Choose a tag to compare
  • Remove connection closed by the server from the pool (when the server send the FIN packet)

v1.13.3

28 Jun 01:21
Compare
Choose a tag to compare
  • Import errror.js in pool.js - Fix #28
  • Remove listeners for a connection when the connection is fully closed - Partial fix for #29

v1.13.2

25 Jun 18:28
Compare
Choose a tag to compare
  • More efficient fix for #26

v1.13.1

25 Jun 08:20
Compare
Choose a tag to compare
  • Properly set the size of the buffer - Fix #26
  • Properly handle empty SUCCESS_SEQUENCE - Fix #27

v1.13,0

23 Jun 23:29
Compare
Choose a tag to compare

Update for 1.13

  • Switch to JSON protocol
  • Add r.random
  • Second argument to slice is optional
  • First argument of eqJoin can be a function
  • Add r.http
  • Add r.args
  • Add changes
  • Remove cursor.hasNext
  • Add cursor.each
  • Add feeds
  • Add EventEmitter methods on feeds and cursors
  • Some hygiene

v1.12.13

25 May 20:38
Compare
Choose a tag to compare
  • Fix potential leak with noreply queries
  • Fix bug in reconnect with noreplyWait

v1.12.12

18 May 23:34
Compare
Choose a tag to compare
  • Fix some packaging issue in v1.12.11
  • Update node-protobuf to 1.1.0