@quenty/datastore 13.13.0 → 13.13.2

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,25 @@
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.13.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/datastore@13.13.1...@quenty/datastore@13.13.2) (2024-11-04)
7
+
8
+ **Note:** Version bump only for package @quenty/datastore
9
+
10
+
11
+
12
+
13
+
14
+ ## [13.13.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/datastore@13.13.0...@quenty/datastore@13.13.1) (2024-11-04)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * Remove empty print ([552eb30](https://github.com/Quenty/NevermoreEngine/commit/552eb309458eed3e91b91f3f7b0623aa2d59474f))
20
+
21
+
22
+
23
+
24
+
6
25
  # [13.13.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/datastore@13.12.0...@quenty/datastore@13.13.0) (2024-11-03)
7
26
 
8
27
  **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.13.0",
3
+ "version": "13.13.2",
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.7.0",
30
- "@quenty/bindtocloseservice": "^8.11.0",
31
- "@quenty/loader": "^10.7.0",
29
+ "@quenty/baseobject": "^10.7.1",
30
+ "@quenty/bindtocloseservice": "^8.11.1",
31
+ "@quenty/loader": "^10.7.1",
32
32
  "@quenty/maid": "^3.4.0",
33
33
  "@quenty/math": "^2.7.0",
34
- "@quenty/promise": "^10.7.0",
35
- "@quenty/rx": "^13.11.0",
36
- "@quenty/servicebag": "^11.9.0",
37
- "@quenty/signal": "^7.8.0",
34
+ "@quenty/promise": "^10.7.1",
35
+ "@quenty/rx": "^13.11.1",
36
+ "@quenty/servicebag": "^11.9.1",
37
+ "@quenty/signal": "^7.8.1",
38
38
  "@quenty/symbol": "^3.2.0",
39
39
  "@quenty/table": "^3.6.0",
40
- "@quenty/valueobject": "^13.11.0"
40
+ "@quenty/valueobject": "^13.11.1"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "a7e6d8dffd16e9b516e352050571009f57fe6c67"
45
+ "gitHead": "01c43a0ddd3c5e0cb2d9027313dbfa9852eedef1"
46
46
  }
@@ -275,7 +275,6 @@ function DataStoreStage:Observe(key, defaultValue)
275
275
  local maid = Maid.new()
276
276
 
277
277
  maid:GiveTask(self._keySubscriptions:Observe(key):Subscribe(function(value)
278
- print()
279
278
  if value == nil then
280
279
  sub:Fire(defaultValue)
281
280
  else