@quenty/datastore 13.31.2 → 13.31.3-canary.656.96ca5ef.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,18 @@
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
+ ## [13.31.3-canary.656.96ca5ef.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/datastore@13.31.2...@quenty/datastore@13.31.3-canary.656.96ca5ef.0) (2026-02-13)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add CI/CD batch unit testing ([016a366](https://github.com/Quenty/NevermoreEngine/commit/016a3663509c8fffa518b07cfc49ebecba2a1fa6))
12
+ * Create places automatically using nevermore-cli ([d4a6a66](https://github.com/Quenty/NevermoreEngine/commit/d4a6a66e5720d010b4fc3d6f973ccfdaa17dbead))
13
+
14
+
15
+
16
+
17
+
6
18
  ## [13.31.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/datastore@13.31.1...@quenty/datastore@13.31.2) (2026-02-09)
7
19
 
8
20
 
@@ -0,0 +1,10 @@
1
+ {
2
+ "targets": {
3
+ "test": {
4
+ "universeId": 9716264427,
5
+ "placeId": 117027114275497,
6
+ "project": "test/default.project.json",
7
+ "scriptTemplate": "test/scripts/Server/ServerMain.server.lua"
8
+ }
9
+ }
10
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/datastore",
3
- "version": "13.31.2",
3
+ "version": "13.31.3-canary.656.96ca5ef.0",
4
4
  "description": "Quenty's Datastore implementation for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,24 +29,25 @@
29
29
  "Quenty"
30
30
  ],
31
31
  "dependencies": {
32
- "@quenty/baseobject": "10.9.3",
33
- "@quenty/bindtocloseservice": "8.25.1",
32
+ "@quenty/baseobject": "10.9.4-canary.656.96ca5ef.0",
33
+ "@quenty/bindtocloseservice": "8.25.2-canary.656.96ca5ef.0",
34
34
  "@quenty/loader": "10.9.3",
35
- "@quenty/maid": "3.5.3",
35
+ "@quenty/maid": "3.5.4-canary.656.96ca5ef.0",
36
36
  "@quenty/math": "2.7.5",
37
- "@quenty/messagingserviceutils": "7.15.1",
38
- "@quenty/pagesutils": "5.14.0",
39
- "@quenty/promise": "10.13.0",
40
- "@quenty/promisemaid": "5.13.0",
41
- "@quenty/rx": "13.23.1",
42
- "@quenty/servicebag": "11.13.6",
37
+ "@quenty/messagingserviceutils": "7.15.2-canary.656.96ca5ef.0",
38
+ "@quenty/nevermore-test-runner": "1.0.1-canary.656.96ca5ef.0",
39
+ "@quenty/pagesutils": "5.14.1-canary.656.96ca5ef.0",
40
+ "@quenty/promise": "10.13.1-canary.656.96ca5ef.0",
41
+ "@quenty/promisemaid": "5.13.1-canary.656.96ca5ef.0",
42
+ "@quenty/rx": "13.23.2-canary.656.96ca5ef.0",
43
+ "@quenty/servicebag": "11.13.7-canary.656.96ca5ef.0",
43
44
  "@quenty/signal": "7.11.5",
44
45
  "@quenty/symbol": "3.5.2",
45
46
  "@quenty/table": "3.9.2",
46
- "@quenty/valueobject": "13.25.1"
47
+ "@quenty/valueobject": "13.25.2-canary.656.96ca5ef.0"
47
48
  },
48
49
  "publishConfig": {
49
50
  "access": "public"
50
51
  },
51
- "gitHead": "6a60b6c354ea5c838b7727906579e59ea60df52b"
52
+ "gitHead": "96ca5ef5a9f1ad50c0ed61242c672d1d0555d4d6"
52
53
  }
@@ -3,6 +3,9 @@
3
3
  "tree": {
4
4
  "$className": "DataModel",
5
5
  "ServerScriptService": {
6
+ "$properties": {
7
+ "LoadStringEnabled": true
8
+ },
6
9
  "datastore": {
7
10
  "$path": ".."
8
11
  },
@@ -18,4 +21,4 @@
18
21
  }
19
22
  }
20
23
  }
21
- }
24
+ }
@@ -10,6 +10,7 @@ local loader = ServerScriptService:FindFirstChild("LoaderUtils", true).Parent
10
10
  local require = require(loader).bootstrapGame(ServerScriptService.datastore)
11
11
 
12
12
  local Maid = require("Maid")
13
+ local NevermoreTestRunnerUtils = require("NevermoreTestRunnerUtils")
13
14
  local Promise = require("Promise")
14
15
 
15
16
  local TURN_TIME = 8
@@ -118,3 +119,5 @@ end
118
119
  spinUpGameCopy("red")
119
120
  spinUpGameCopy("blue")
120
121
  spinUpGameCopy("green")
122
+
123
+ NevermoreTestRunnerUtils.runTestsIfNeededAsync(ServerScriptService.datastore)