From 5895dc45e2a16c42bb83d920fcb8a048f6de72f7 Mon Sep 17 00:00:00 2001 From: Robin Knoll Date: Mon, 12 Sep 2022 09:11:54 +0000 Subject: [PATCH 1/3] designated HealthAsync() as obsolete in interface --- Client/InfluxDBClient.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Client/InfluxDBClient.cs b/Client/InfluxDBClient.cs index 6a7142caa..9069f1ce3 100644 --- a/Client/InfluxDBClient.cs +++ b/Client/InfluxDBClient.cs @@ -181,6 +181,7 @@ public interface IInfluxDBClient : IDisposable /// Get the health of an instance. /// /// health of an instance + [Obsolete("This method is obsolete. Call 'PingAsync()' instead.", false)] Task HealthAsync(); /// From ebcce660959736396db5f3c819cae143f45572df Mon Sep 17 00:00:00 2001 From: Robin Knoll Date: Mon, 12 Sep 2022 09:19:33 +0000 Subject: [PATCH 2/3] fix: updated changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bf619795..6c03cf939 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### Bug Fixes 1. [#353](https://github.com/influxdata/influxdb-client-csharp/pull/353): Support for `double` types in LINQ expression [LINQ] +2. [#359](https://github.com/influxdata/influxdb-client-csharp/issues/359): Designated `HealthAsync` as obsolete in `IInfluxDBClient` ### Dependencies Update dependencies: From 85bc2ec13591ac1536cc997a3f61d7787b0dc617 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Bedn=C3=A1=C5=99?= Date: Mon, 12 Sep 2022 11:24:57 +0200 Subject: [PATCH 3/3] docs: update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c03cf939..5d8c9b5b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ ### Bug Fixes 1. [#353](https://github.com/influxdata/influxdb-client-csharp/pull/353): Support for `double` types in LINQ expression [LINQ] -2. [#359](https://github.com/influxdata/influxdb-client-csharp/issues/359): Designated `HealthAsync` as obsolete in `IInfluxDBClient` +2. [#360](https://github.com/influxdata/influxdb-client-csharp/pull/360): Designated `HealthAsync` as obsolete in `IInfluxDBClient` ### Dependencies Update dependencies: