@quenty/influxdbclient 7.19.0-canary.544.548de10.0 → 7.19.0-canary.544.de8fcee.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,9 +3,13 @@
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
- # [7.19.0-canary.544.548de10.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/influxdbclient@7.18.1...@quenty/influxdbclient@7.19.0-canary.544.548de10.0) (2025-03-29)
6
+ # [7.19.0-canary.544.de8fcee.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/influxdbclient@7.18.1...@quenty/influxdbclient@7.19.0-canary.544.de8fcee.0) (2025-04-01)
7
7
 
8
- **Note:** Version bump only for package @quenty/influxdbclient
8
+
9
+ ### Bug Fixes
10
+
11
+ * Fix existing tests ([655787c](https://github.com/Quenty/NevermoreEngine/commit/655787ced1139136e12f81800e229aa076731561))
12
+ * Fix type errors ([50b3238](https://github.com/Quenty/NevermoreEngine/commit/50b3238ecfb563676e4795dac04f63a3b9741141))
9
13
 
10
14
 
11
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/influxdbclient",
3
- "version": "7.19.0-canary.544.548de10.0",
3
+ "version": "7.19.0-canary.544.de8fcee.0",
4
4
  "description": "Provides a Roblox Lua InfluxDB client",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -32,15 +32,15 @@
32
32
  "@quenty/maid": "3.4.0",
33
33
  "@quenty/math": "2.7.1",
34
34
  "@quenty/promise": "10.10.1",
35
- "@quenty/rx": "13.17.0-canary.544.548de10.0",
35
+ "@quenty/rx": "13.17.0-canary.544.de8fcee.0",
36
36
  "@quenty/servicebag": "11.11.1",
37
37
  "@quenty/signal": "7.10.0",
38
38
  "@quenty/string": "3.3.1",
39
39
  "@quenty/table": "3.7.1",
40
- "@quenty/valueobject": "13.17.0-canary.544.548de10.0"
40
+ "@quenty/valueobject": "13.17.0-canary.544.de8fcee.0"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "548de107be4443f142f606f7e57fee94ccbbbe8f"
45
+ "gitHead": "de8fcee995fcdae464964357b4c770c03f4c7e03"
46
46
  }
@@ -13,42 +13,49 @@ local it = Jest.Globals.it
13
13
 
14
14
  describe("InfluxDBEscapeUtils.measurement", function()
15
15
  it("should pass through fine", function()
16
- expect(InfluxDBEscapeUtils.measurement("hi")).to.equal("hi")
16
+ local measurement = InfluxDBEscapeUtils.measurement("hi")
17
+ expect(measurement).toBe("hi")
17
18
  end)
18
19
 
19
20
  it("should escape tabs", function()
20
- expect(InfluxDBEscapeUtils.measurement("\thi")).to.equal("\\thi")
21
+ local measurement = InfluxDBEscapeUtils.measurement("\thi")
22
+ expect(measurement).toBe("\\thi")
21
23
  end)
22
24
  end)
23
25
 
24
26
  describe("InfluxDBEscapeUtils.quoted", function()
25
27
  it("should pass through fine", function()
26
- expect(InfluxDBEscapeUtils.quoted("hi")).to.equal("\"hi\"")
28
+ expect(InfluxDBEscapeUtils.quoted("hi")).toBe("\"hi\"")
27
29
  end)
28
30
 
29
31
  it("should escape quotes", function()
30
- expect(InfluxDBEscapeUtils.quoted("\"hi")).to.equal("\"\\\"hi\"")
32
+ expect(InfluxDBEscapeUtils.quoted("\"hi")).toBe("\"\\\"hi\"")
31
33
  end)
32
34
  end)
33
35
 
34
36
  describe("InfluxDBEscapeUtils.tag", function()
35
37
  it("should pass through fine", function()
36
- expect(InfluxDBEscapeUtils.tag("hi")).to.equal("hi")
38
+ local tag = InfluxDBEscapeUtils.tag("hi")
39
+ expect(tag).toBe("hi")
37
40
  end)
38
41
 
39
42
  it("should escape tabs", function()
40
- expect(InfluxDBEscapeUtils.tag("\thi")).to.equal("\\thi")
43
+ local tag = InfluxDBEscapeUtils.tag("\thi")
44
+ expect(tag).toBe("\\thi")
41
45
  end)
42
46
 
43
47
  it("should escape =", function()
44
- expect(InfluxDBEscapeUtils.tag("=hi")).to.equal("\\=hi")
48
+ local tag = InfluxDBEscapeUtils.tag("=hi")
49
+ expect(tag).toBe("\\=hi")
45
50
  end)
46
51
 
47
52
  it("should escape = and \\", function()
48
- expect(InfluxDBEscapeUtils.tag("\\=hi")).to.equal("\\\\\\=hi")
53
+ local tag = InfluxDBEscapeUtils.tag("\\=hi")
54
+ expect(tag).toBe("\\\\\\=hi")
49
55
  end)
50
56
 
51
57
  it("should escape \\n", function()
52
- expect(InfluxDBEscapeUtils.tag("\nhi")).to.equal("\\nhi")
58
+ local tag = InfluxDBEscapeUtils.tag("\nhi")
59
+ expect(tag).toBe("\\nhi")
53
60
  end)
54
61
  end)