You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deduplicate historical Java version tag and upgrade client library
The new way of extracting the Java version doesn't include the internal
build number, so remove that from historical data.
First, upgrade the InfluxDB client library.
This fixes two issues that I reported long ago with Nginx reverse proxy
and basic authentication, so remove the workarounds.
It also has a new feature to talk to the server in a binary protocal
(Message Pack). Apart from being more efficient (which doesn't really
matter much to us) it also doesn't lose track of int vs float
data types when doing a bulk query (like we do in the migrator)
which avoids needing to manually narrow "sampleCount" to a integral
type.
Copy file name to clipboardExpand all lines: build.sbt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ lazy val infrastructure = addJmh(project).settings(
39
39
autoScalaLibrary :=false,
40
40
crossPaths :=false,
41
41
libraryDependencies ++=Seq(
42
-
"org.influxdb"%"influxdb-java"%"2.5", // TODO update to 2.6 when released for fix for https://github.com/influxdata/influxdb-java/issues/269
42
+
"org.influxdb"%"influxdb-java"%"2.21", // TODO update to 2.6 when released for fix for https://github.com/influxdata/influxdb-java/issues/269
0 commit comments