Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 13, 2024

This PR contains the following updates:

Package Change Age Confidence
github.com/InfluxCommunity/influxdb3-go v0.14.0 -> v2.10.0 age confidence

Release Notes

InfluxCommunity/influxdb3-go (github.com/InfluxCommunity/influxdb3-go)

v2.10.0

Compare Source

Features
  1. #​189: Add transparent gRPC compression support
CI
  1. #​180:
    • Add tests for arm64 CircleCI.
    • Add tests for go v1.24 and v1.25.

v2.9.0: 2.9.0

Compare Source

Features
  1. #​169: Support user-defined type converter function for writes points.
  2. #​171: Add function to get InfluxDB version.
  3. #​176: Add comment warning null when calling getMeasurement function.
  4. #​174: Run integration tests against a locally started InfluxDB 3 Core server.

v2.8.0

Compare Source

Features
  1. #​159: 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").
Bug Fixes
  1. #​164: Updates
    • Go version to 1.23.9
    • golang.org/x/net to v0.38.0
  2. #​166: Upgrades dependency apache/arrow/go to apache/arrow-go v18.

v2.7.0

Compare Source

Bug Fixes
  1. #​158: Refactor Batcher and LPBatcher:
    • Fields and methods using capacity renamed to initialCapacity.
    • Log messages when buffer data is not being emitted are simplified.
    • SetCapacity methods on both structures are now deprecated.
    • WithCapacity and WithBufferCapacity options are now deprecated.

v2.6.0

Compare Source

Features
  1. #​155: Batcher warnings when buffer data is not being automatically emitted changed to level Debug in slog.

v2.5.0: 2.5.0

Compare Source

Features
  1. #​146: Add error field to QueryIterator to hold first possible error encountered when retrieving records from the flight Reader.
  2. #​147: Ability to pass grpc.CallOption functions to the underlying flight Client.
  3. #​149: Add default configuration for the built-in HTTP
    client and expose new configurable parameters:
    • Timeout - The overall time limit for requests made by the Client. A negative value means no timeout. Default
      value: 10 seconds.
    • IdleConnectionTimeout - Maximum time an idle connection will remain idle before closing itself. A negative value
      means no timeout. Default value: 90 seconds.
    • MaxIdleConnections - Maximum number of idle connections. It sets both transport.MaxIdleConn and
      transport.MaxIdleConnsPerHost to the same value. A negative value means no limit. Default value: 100.
  4. #​154: Export functions NewQueryIterator and
    NewPointValueIterator to simplify testing.

v2.4.0

Compare Source

Features
  1. #​141: Add proxy and custom SSL root certificate support.

v2.3.0

Compare Source

Features
  1. #​131: Add new PointValueIterator based on google
    guidelines Guidelines

v2.2.0: 2.2.0

Compare Source

Bug fixes
  1. #​134: Reduce minimal Go version to 1.22, remove unnecessary toolchain constraints.

v2.1.0: 2.1.0

Compare Source

Bug fixes
  1. #​127: LPBatcher now returns first line of the internal buffer when the line length exceeds the batch size.

v2.0.0: 2.0.0

Compare Source

2.0.0 [2024-12-13]

Breaking Changes

⚠️ This is a breaking change release.

Previously, the Query API did not respect the metadata type for columns returned from InfluxDB v3. This release fixes this issue. As a result, the type of some columns may differ from previous versions. For example, the timestamp column will now be time.Time instead of arrow.Timestamp.

Update steps:

  1. Update library: go get github.com/InfluxCommunity/influxdb3-go/v2/influxdb3
  2. Update import path in Go files to github.com/InfluxCommunity/influxdb3-go/v2/influxdb3.
Features
  1. #​114: Query API respects metadata types for columns returned from InfluxDB v3.
    Tags are mapped as a "string", timestamp as "time.Time", and fields as their respective types:
    • iox::column_type::field::integer: => int64
    • iox::column_type::field::uinteger: => uint64
    • iox::column_type::field::float: => float64
    • iox::column_type::field::string: => string
    • iox::column_type::field::boolean: => bool

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/github.com-influxcommunity-influxdb3-go-2.x branch from a1e3d09 to a83f7ff Compare December 31, 2024 23:02
@renovate renovate bot force-pushed the renovate/github.com-influxcommunity-influxdb3-go-2.x branch from a83f7ff to 9780e9c Compare January 19, 2025 09:07
Copy link
Contributor Author

renovate bot commented Jan 19, 2025

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 17 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.22.7 -> 1.23.10
github.com/goccy/go-json v0.10.2 -> v0.10.5
github.com/google/flatbuffers v24.3.7+incompatible -> v25.2.10+incompatible
github.com/klauspost/compress v1.17.9 -> v1.18.0
github.com/klauspost/cpuid/v2 v2.2.7 -> v2.3.0
github.com/pierrec/lz4/v4 v4.1.21 -> v4.1.22
github.com/stretchr/testify v1.10.0 -> v1.11.1
golang.org/x/exp v0.0.0-20240222234643-814bf88cf225 -> v0.0.0-20250408133849-7e4ce0ab07d0
golang.org/x/mod v0.17.0 -> v0.27.0
golang.org/x/net v0.29.0 -> v0.43.0
golang.org/x/sync v0.8.0 -> v0.16.0
golang.org/x/sys v0.28.0 -> v0.35.0
golang.org/x/text v0.18.0 -> v0.28.0
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d -> v0.36.0
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 -> v0.0.0-20240903120638-7835f813f4da
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 -> v0.0.0-20250707201910-8d1bb00bc6a7
google.golang.org/grpc v1.68.1 -> v1.75.1
google.golang.org/protobuf v1.35.2 -> v1.36.9

@renovate renovate bot force-pushed the renovate/github.com-influxcommunity-influxdb3-go-2.x branch from 9780e9c to c85d183 Compare February 3, 2025 13:09
@renovate renovate bot force-pushed the renovate/github.com-influxcommunity-influxdb3-go-2.x branch from c85d183 to 304c610 Compare February 20, 2025 15:49
@renovate renovate bot force-pushed the renovate/github.com-influxcommunity-influxdb3-go-2.x branch from 304c610 to eb078b4 Compare March 11, 2025 14:01
@renovate renovate bot force-pushed the renovate/github.com-influxcommunity-influxdb3-go-2.x branch from eb078b4 to e927dd8 Compare March 26, 2025 11:12
@renovate renovate bot force-pushed the renovate/github.com-influxcommunity-influxdb3-go-2.x branch 3 times, most recently from edfe735 to b7a6be2 Compare April 15, 2025 11:33
@renovate renovate bot force-pushed the renovate/github.com-influxcommunity-influxdb3-go-2.x branch from b7a6be2 to f8e68ad Compare May 7, 2025 11:43
@renovate renovate bot force-pushed the renovate/github.com-influxcommunity-influxdb3-go-2.x branch from f8e68ad to bd1b493 Compare May 15, 2025 11:56
@renovate renovate bot force-pushed the renovate/github.com-influxcommunity-influxdb3-go-2.x branch from bd1b493 to 10ea9b9 Compare May 22, 2025 18:02
@renovate renovate bot force-pushed the renovate/github.com-influxcommunity-influxdb3-go-2.x branch from 10ea9b9 to 9586cca Compare June 18, 2025 16:55
@renovate renovate bot force-pushed the renovate/github.com-influxcommunity-influxdb3-go-2.x branch from 9586cca to 12ca67a Compare July 20, 2025 20:51
@renovate renovate bot force-pushed the renovate/github.com-influxcommunity-influxdb3-go-2.x branch 3 times, most recently from 260b9b9 to f312d2f Compare August 13, 2025 17:27
@renovate renovate bot force-pushed the renovate/github.com-influxcommunity-influxdb3-go-2.x branch from f312d2f to 8a08969 Compare September 15, 2025 20:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants