@quenty/influxdbclient 2.4.0 → 2.4.1-canary.439.4c654fa.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.4.1-canary.439.4c654fa.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/influxdbclient@2.4.0...@quenty/influxdbclient@2.4.1-canary.439.4c654fa.0) (2024-02-12)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Compress influxDB sends ([87ba86a](https://github.com/Quenty/NevermoreEngine/commit/87ba86afead0ae89ef810c56bad5a120282aa612))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/influxdbclient@2.3.0...@quenty/influxdbclient@2.4.0) (2024-01-08)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/influxdbclient
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/influxdbclient",
3
- "version": "2.4.0",
3
+ "version": "2.4.1-canary.439.4c654fa.0",
4
4
  "description": "Provides a Roblox Lua InfluxDB client",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,22 +25,22 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "^7.2.0",
29
- "@quenty/httppromise": "^7.2.0",
30
- "@quenty/jsonutils": "^7.2.0",
31
- "@quenty/loader": "^7.3.0",
32
- "@quenty/maid": "^2.6.0",
33
- "@quenty/math": "^2.5.0",
34
- "@quenty/promise": "^7.2.0",
35
- "@quenty/rx": "^8.4.0",
36
- "@quenty/servicebag": "^7.2.0",
37
- "@quenty/signal": "^3.2.0",
38
- "@quenty/string": "^3.1.0",
39
- "@quenty/table": "^3.4.0",
40
- "@quenty/valueobject": "^8.4.0"
28
+ "@quenty/baseobject": "7.2.1-canary.439.4c654fa.0",
29
+ "@quenty/httppromise": "7.2.1-canary.439.4c654fa.0",
30
+ "@quenty/jsonutils": "7.2.1-canary.439.4c654fa.0",
31
+ "@quenty/loader": "7.3.1-canary.439.4c654fa.0",
32
+ "@quenty/maid": "2.6.1-canary.439.4c654fa.0",
33
+ "@quenty/math": "2.5.0",
34
+ "@quenty/promise": "7.2.1-canary.439.4c654fa.0",
35
+ "@quenty/rx": "8.4.1-canary.439.4c654fa.0",
36
+ "@quenty/servicebag": "7.2.1-canary.439.4c654fa.0",
37
+ "@quenty/signal": "3.2.1-canary.439.4c654fa.0",
38
+ "@quenty/string": "3.1.0",
39
+ "@quenty/table": "3.4.0",
40
+ "@quenty/valueobject": "8.4.1-canary.439.4c654fa.0"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "075fb03a03f12ade8758f667767ba738204e0c4b"
45
+ "gitHead": "4c654faf9c66c5c9bcb277a24bf13c70719d3531"
46
46
  }
@@ -123,6 +123,7 @@ function InfluxDBWriteAPI:_promiseSendBatch(toSend)
123
123
  ["Accept"] = "application/json";
124
124
  ["Authorization"] = "Token " .. clientConfig.token;
125
125
  };
126
+ Compress = Enum.HttpCompression.Gzip;
126
127
  Url = self:_getWriteUrl();
127
128
  Body = body;
128
129
  }