From 12d48d2a48eafee56140331e37534805a9869dd5 Mon Sep 17 00:00:00 2001 From: Mikael Guldborg Rask Andersen Date: Tue, 21 Nov 2017 20:32:35 +0100 Subject: [PATCH 1/2] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea1393f..7aefa3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 3.5.0 + * Added support for more primitive types #23 + * Added support for (optional) gzip during write operation #24 + ## 3.4.1 * Added documentation for IHaveMeasurementNname * Added NamedDynamicInfluxRow that implement IHaveMeasurementName From bf833f21a371e772e568ff85a9ff3c250282a173 Mon Sep 17 00:00:00 2001 From: Mikael Guldborg Rask Andersen Date: Tue, 21 Nov 2017 20:45:09 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d2fb1a1..888c312 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ public class ComputerInfo On your POCO class you must specify these things: * 1 property with the type DateTime, DateTime?, DateTimeOffset or DateTimeOffset? as the timestamp used in InfluxDB by adding the [InfluxTimestamp] attribute. * 0-* properties with the type string or a user-defined enum (nullables too) with the [InfluxTag] attribute that InfluxDB will use as indexed tags. - * 1-* properties with the type string, long, double, bool, DateTime or a user-defined enum (nullables too) with the [InfluxField] attribute that InfluxDB will use as fields. + * 1-* properties with the type string, long, ulong, int, uint, short, ushort, byte, sbyte, double, float, bool, DateTime or a user-defined enum (nullables too) with the [InfluxField] attribute that InfluxDB will use as fields. Once you've defined your class, you're ready to use the InfluxClient, which is the main entry point to the API: