@quenty/datastore 13.7.2-canary.499.60b3012.0 → 13.8.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,7 +3,7 @@
|
|
|
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
|
-
|
|
6
|
+
# [13.8.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/datastore@13.7.1...@quenty/datastore@13.8.0) (2024-09-25)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @quenty/datastore
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/datastore",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.8.0",
|
|
4
4
|
"description": "Quenty's Datastore implementation for Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,21 +26,21 @@
|
|
|
26
26
|
"Quenty"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@quenty/baseobject": "10.
|
|
30
|
-
"@quenty/bindtocloseservice": "8.
|
|
31
|
-
"@quenty/loader": "10.
|
|
32
|
-
"@quenty/maid": "3.3.0",
|
|
33
|
-
"@quenty/math": "2.7.0",
|
|
34
|
-
"@quenty/promise": "10.
|
|
35
|
-
"@quenty/rx": "13.
|
|
36
|
-
"@quenty/servicebag": "11.
|
|
37
|
-
"@quenty/signal": "7.
|
|
38
|
-
"@quenty/symbol": "3.1.0",
|
|
39
|
-
"@quenty/table": "3.5.0",
|
|
40
|
-
"@quenty/valueobject": "13.
|
|
29
|
+
"@quenty/baseobject": "^10.5.0",
|
|
30
|
+
"@quenty/bindtocloseservice": "^8.6.0",
|
|
31
|
+
"@quenty/loader": "^10.5.0",
|
|
32
|
+
"@quenty/maid": "^3.3.0",
|
|
33
|
+
"@quenty/math": "^2.7.0",
|
|
34
|
+
"@quenty/promise": "^10.5.0",
|
|
35
|
+
"@quenty/rx": "^13.6.0",
|
|
36
|
+
"@quenty/servicebag": "^11.6.0",
|
|
37
|
+
"@quenty/signal": "^7.5.0",
|
|
38
|
+
"@quenty/symbol": "^3.1.0",
|
|
39
|
+
"@quenty/table": "^3.5.0",
|
|
40
|
+
"@quenty/valueobject": "^13.6.0"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "41715b15e2b48b2d22ff4f5277a8d4b7a0d32ef3"
|
|
46
46
|
}
|
package/src/Server/DataStore.lua
CHANGED
|
@@ -641,7 +641,7 @@ function DataStoreStage:GetNewWriter()
|
|
|
641
641
|
|
|
642
642
|
for key, store in pairs(self._stores) do
|
|
643
643
|
if not store.Destroy then
|
|
644
|
-
warn(("[DataStoreStage] - Substore %q destroyed"
|
|
644
|
+
warn(string.format("[DataStoreStage] - Substore %q destroyed", key))
|
|
645
645
|
continue
|
|
646
646
|
end
|
|
647
647
|
|
|
@@ -697,7 +697,7 @@ function DataStoreStage:_createFullBaseDataSnapshot()
|
|
|
697
697
|
|
|
698
698
|
for key, store in pairs(self._stores) do
|
|
699
699
|
if not store.Destroy then
|
|
700
|
-
warn(("[DataStoreStage] - Substore %q destroyed"
|
|
700
|
+
warn(string.format("[DataStoreStage] - Substore %q destroyed", key))
|
|
701
701
|
continue
|
|
702
702
|
end
|
|
703
703
|
|