@quenty/rxbinderutils 8.1.0 → 8.2.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,17 @@
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
+ # [8.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rxbinderutils@8.1.0...@quenty/rxbinderutils@8.2.0) (2022-10-23)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Rx switch maps would lead to multiple brios alive against a single switched observable. ([cd25a22](https://github.com/Quenty/NevermoreEngine/commit/cd25a220a2096fe1c3093deec7f9bc4e83815924))
12
+
13
+
14
+
15
+
16
+
6
17
  # [8.1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rxbinderutils@8.0.0...@quenty/rxbinderutils@8.1.0) (2022-10-11)
7
18
 
8
19
  **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": "8.1.0",
3
+ "version": "8.2.0",
4
4
  "description": "Reactive extensions for binders",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -37,5 +37,5 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "69c2153865684748d0a8d6806f1ff999685c2e55"
40
+ "gitHead": "f167412233d2a0bcb7f91bdc6aa2f3c754bdbe79"
41
41
  }
@@ -84,6 +84,7 @@ function RxBinderUtils.observeBoundParentClassBrio(binder, instance)
84
84
  return Rx.EMPTY
85
85
  end
86
86
  end);
87
+ RxBrioUtils.onlyLastBrioSurvives();
87
88
  })
88
89
  end
89
90