@quenty/rxbinderutils 14.36.1 → 14.37.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,12 @@
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
+ # [14.37.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rxbinderutils@14.36.1...@quenty/rxbinderutils@14.37.0) (2026-07-14)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **rxbinderutils:** launder Rx chain for strict binder observers ([516a304](https://github.com/Quenty/NevermoreEngine/commit/516a3044eb24b38634029af807fb1ecbc18a01e4))
11
+
6
12
  ## [14.36.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rxbinderutils@14.36.0...@quenty/rxbinderutils@14.36.1) (2026-05-30)
7
13
 
8
14
  **Note:** Version bump only for package @quenty/rxbinderutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/rxbinderutils",
3
- "version": "14.36.1",
3
+ "version": "14.37.0",
4
4
  "description": "Reactive extensions for binders",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,10 +29,10 @@
29
29
  "Quenty"
30
30
  ],
31
31
  "dependencies": {
32
- "@quenty/binder": "14.36.1",
32
+ "@quenty/binder": "14.37.0",
33
33
  "@quenty/brio": "14.30.1",
34
34
  "@quenty/instanceutils": "13.30.1",
35
- "@quenty/linkutils": "13.30.1",
35
+ "@quenty/linkutils": "13.31.0",
36
36
  "@quenty/loader": "10.11.0",
37
37
  "@quenty/maid": "3.9.0",
38
38
  "@quenty/rx": "13.28.3"
@@ -40,5 +40,5 @@
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
43
+ "gitHead": "13f0162f4971a77378e55e9b7236aea94f0dd3a8"
44
44
  }
@@ -42,11 +42,13 @@ function RxBinderUtils.observeLinkedBoundClassBrio<T>(
42
42
  assert(typeof(parent) == "Instance", "Bad parent")
43
43
  assert(Binder.isBinder(binder), "Bad binder")
44
44
 
45
- return RxLinkUtils.observeValidLinksBrio(linkName, parent):Pipe({
46
- RxBrioUtils.flatMapBrio(function(_, linkValue)
47
- return binder:ObserveBrio(linkValue)
48
- end),
49
- })
45
+ return (
46
+ RxLinkUtils.observeValidLinksBrio(linkName, parent):Pipe({
47
+ RxBrioUtils.flatMapBrio(function(_, linkValue)
48
+ return binder:ObserveBrio(linkValue)
49
+ end) :: any,
50
+ }) :: any
51
+ ) :: Observable.Observable<Brio.Brio<T>>
50
52
  end
51
53
 
52
54
  --[=[