@quenty/datastore 13.7.1 → 13.7.2-canary.497.2df557a.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,14 @@
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.7.2-canary.497.2df557a.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/datastore@13.7.1...@quenty/datastore@13.7.2-canary.497.2df557a.0) (2024-09-20)
7
+
8
+ **Note:** Version bump only for package @quenty/datastore
9
+
10
+
11
+
12
+
13
+
6
14
  ## [13.7.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/datastore@13.7.0...@quenty/datastore@13.7.1) (2024-09-20)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/datastore
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/datastore",
3
- "version": "13.7.1",
3
+ "version": "13.7.2-canary.497.2df557a.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.4.0",
30
- "@quenty/bindtocloseservice": "^8.5.0",
31
- "@quenty/loader": "^10.4.0",
32
- "@quenty/maid": "^3.3.0",
33
- "@quenty/math": "^2.7.0",
34
- "@quenty/promise": "^10.4.0",
35
- "@quenty/rx": "^13.5.0",
36
- "@quenty/servicebag": "^11.5.1",
37
- "@quenty/signal": "^7.4.0",
38
- "@quenty/symbol": "^3.1.0",
39
- "@quenty/table": "^3.5.0",
40
- "@quenty/valueobject": "^13.5.0"
29
+ "@quenty/baseobject": "10.4.1-canary.497.2df557a.0",
30
+ "@quenty/bindtocloseservice": "8.5.1-canary.497.2df557a.0",
31
+ "@quenty/loader": "10.4.1-canary.497.2df557a.0",
32
+ "@quenty/maid": "3.3.0",
33
+ "@quenty/math": "2.7.0",
34
+ "@quenty/promise": "10.4.1-canary.497.2df557a.0",
35
+ "@quenty/rx": "13.5.1-canary.497.2df557a.0",
36
+ "@quenty/servicebag": "11.5.2-canary.497.2df557a.0",
37
+ "@quenty/signal": "7.4.1-canary.497.2df557a.0",
38
+ "@quenty/symbol": "3.1.0",
39
+ "@quenty/table": "3.5.0",
40
+ "@quenty/valueobject": "13.5.1-canary.497.2df557a.0"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "a0dc70feb2e9ae87eccca4193951975ff59b7aae"
45
+ "gitHead": "2df557a9a5463c2c7beb257ff9f7786ac8ad746a"
46
46
  }
@@ -142,7 +142,7 @@ end
142
142
  @return string
143
143
  ]=]
144
144
  function DataStore:GetFullPath()
145
- return ("RobloxDataStore@%s"):format(self._key)
145
+ return string.format("RobloxDataStore@%s", self._key)
146
146
  end
147
147
 
148
148
  --[=[
@@ -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"):format(key))
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"):format(key))
700
+ warn(string.format("[DataStoreStage] - Substore %q destroyed", key))
701
701
  continue
702
702
  end
703
703