Skip to content

1.2.0

Latest
Compare
Choose a tag to compare
@bednar bednar released this 26 Jun 04:31
· 7 commits to main since this release

Features

  1. #574: Support fast writes without waiting for WAL persistence:
    • New write option (WriteOptions.noSync) added: true value means faster write but without the confirmation that
      the data was persisted. Default value: false.
    • Supported by self-managed InfluxDB 3 Core and Enterprise servers only!
    • Also configurable via connection string query parameter (writeNoSync).
    • Also configurable via environment variable (INFLUX_WRITE_NO_SYNC).
    • Long precision string values added from v3 HTTP API: "nanosecond", "microsecond", "millisecond",
      "second" (in addition to the existing "ns", "us", "ms", "s").

Bugfix

  1. #570: Fixes the bug that makes query results duplicate rows #553.
  2. #575: Upgrades build ecmascript to es2023