From e1f4eacde4f9e73a4be64b704ccc3adf47901f21 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Dec 2022 21:47:42 -0600 Subject: [PATCH] Bump InfluxDB.Client from 4.7.0 to 4.8.0 (#576) * Bump InfluxDB.Client from 4.7.0 to 4.8.0 Bumps [InfluxDB.Client](https://github.com/influxdata/influxdb-client-csharp) from 4.7.0 to 4.8.0. - [Release notes](https://github.com/influxdata/influxdb-client-csharp/releases) - [Changelog](https://github.com/influxdata/influxdb-client-csharp/blob/master/CHANGELOG.md) - [Commits](https://github.com/influxdata/influxdb-client-csharp/compare/v4.7.0...v4.8.0) --- updated-dependencies: - dependency-name: InfluxDB.Client dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Remove deprecated Create function Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Slendy --- ProjectLighthouse/Helpers/InfluxHelper.cs | 4 ++-- ProjectLighthouse/ProjectLighthouse.csproj | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ProjectLighthouse/Helpers/InfluxHelper.cs b/ProjectLighthouse/Helpers/InfluxHelper.cs index 334aecac..2486556f 100644 --- a/ProjectLighthouse/Helpers/InfluxHelper.cs +++ b/ProjectLighthouse/Helpers/InfluxHelper.cs @@ -14,8 +14,8 @@ namespace LBPUnion.ProjectLighthouse.Helpers; public static class InfluxHelper { - public static readonly InfluxDBClient Client = InfluxDBClientFactory.Create - (url: ServerConfiguration.Instance.InfluxDB.Url, token: ServerConfiguration.Instance.InfluxDB.Token); + public static readonly InfluxDBClient Client = new(url: ServerConfiguration.Instance.InfluxDB.Url, + token: ServerConfiguration.Instance.InfluxDB.Token); private static readonly List gameVersions = new() { diff --git a/ProjectLighthouse/ProjectLighthouse.csproj b/ProjectLighthouse/ProjectLighthouse.csproj index a950fbba..259c0fad 100644 --- a/ProjectLighthouse/ProjectLighthouse.csproj +++ b/ProjectLighthouse/ProjectLighthouse.csproj @@ -13,7 +13,7 @@ - +