mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-08 04:48:44 +00:00
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] <support@github.com> * Remove deprecated Create function Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Slendy <josh@slendy.pw>
This commit is contained in:
parent
3b93f6ca2f
commit
e1f4eacde4
2 changed files with 3 additions and 3 deletions
|
@ -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<GameVersion> gameVersions = new()
|
||||
{
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<PackageReference Include="Pfim" Version="0.11.1" />
|
||||
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.3" />
|
||||
<PackageReference Include="Discord.Net.Webhook" Version="3.8.1" />
|
||||
<PackageReference Include="InfluxDB.Client" Version="4.7.0" />
|
||||
<PackageReference Include="InfluxDB.Client" Version="4.8.0" />
|
||||
<PackageReference Include="JetBrains.Annotations" Version="2022.3.1" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="6.0.10" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.10" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue