@quenty/valuebaseutils 7.19.0 → 7.19.1-canary.405.6fa018e.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
+ ## [7.19.1-canary.405.6fa018e.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/valuebaseutils@7.19.0...@quenty/valuebaseutils@7.19.1-canary.405.6fa018e.0) (2023-08-14)
7
+
8
+ **Note:** Version bump only for package @quenty/valuebaseutils
9
+
10
+
11
+
12
+
13
+
6
14
  # [7.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/valuebaseutils@7.18.0...@quenty/valuebaseutils@7.19.0) (2023-08-01)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/valuebaseutils",
3
- "version": "7.19.0",
3
+ "version": "7.19.1-canary.405.6fa018e.0",
4
4
  "description": "Provides utilities for working with valuesbase objects, like IntValue or ObjectValue in Roblox.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,14 +25,14 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/brio": "^8.16.0",
29
- "@quenty/instanceutils": "^7.18.0",
30
- "@quenty/loader": "^6.2.1",
31
- "@quenty/promise": "^6.7.0",
32
- "@quenty/rxsignal": "^1.3.0"
28
+ "@quenty/brio": "8.16.1-canary.405.6fa018e.0",
29
+ "@quenty/instanceutils": "7.18.1-canary.405.6fa018e.0",
30
+ "@quenty/loader": "6.2.1",
31
+ "@quenty/promise": "6.7.0",
32
+ "@quenty/rxsignal": "1.3.1-canary.405.6fa018e.0"
33
33
  },
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "839b4d929e4d6154aadf719f1ecfb9add4c8b247"
37
+ "gitHead": "6fa018eb1f165230fe1eb0417d8d6951010e4971"
38
38
  }
@@ -9,29 +9,6 @@ local RxBrioUtils = require("RxBrioUtils")
9
9
 
10
10
  local RxValueBaseUtils = {}
11
11
 
12
- --[=[
13
- :::warning
14
- This caches the last value seen, and may memory leak.
15
- :::
16
-
17
- @param parent Instance
18
- @param className string
19
- @param name string
20
- @return Observable<any>
21
- :::
22
- ]=]
23
- -- TODO: Handle default value/nothing there, instead of memory leaking!
24
- function RxValueBaseUtils.observe(parent, className, name)
25
- warn("[RxValueBaseUtils.observe] - Deprecated since 4.0.0. Use RxValueBaseUtils.observeBrio")
26
-
27
- return RxInstanceUtils.observeLastNamedChildBrio(parent, className, name)
28
- :Pipe({
29
- RxBrioUtils.switchMap(function(valueObject)
30
- return RxValueBaseUtils.observeValue(valueObject)
31
- end)
32
- })
33
- end
34
-
35
12
  --[=[
36
13
  Observes a value base underneath a parent (last named child).
37
14