@quenty/rxbinderutils 4.9.0 → 5.0.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
+ # [5.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rxbinderutils@4.9.0...@quenty/rxbinderutils@5.0.0) (2022-03-06)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Better errors when not passing a binder into RxBinderUtils ([9897377](https://github.com/Quenty/NevermoreEngine/commit/98973775e85db5fd2a49ddeb1bcbce949a35f43b))
12
+
13
+
14
+
15
+
16
+
6
17
  # [4.9.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rxbinderutils@4.8.1...@quenty/rxbinderutils@4.9.0) (2022-01-17)
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": "4.9.0",
3
+ "version": "5.0.0",
4
4
  "description": "Reactive extensions for binders",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,16 +26,16 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/binder": "^4.8.0",
30
- "@quenty/brio": "^3.8.0",
31
- "@quenty/instanceutils": "^3.8.0",
32
- "@quenty/linkutils": "^3.8.0",
33
- "@quenty/loader": "^3.4.0",
29
+ "@quenty/binder": "^5.0.0",
30
+ "@quenty/brio": "^5.0.0",
31
+ "@quenty/instanceutils": "^4.0.0",
32
+ "@quenty/linkutils": "^4.0.0",
33
+ "@quenty/loader": "^4.0.0",
34
34
  "@quenty/maid": "^2.1.0",
35
- "@quenty/rx": "^3.8.0"
35
+ "@quenty/rx": "^4.0.0"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "c094ba8f4e128cdff08919d89de226d3d65247ce"
40
+ "gitHead": "dd428cab58282c975a4c082957dc8f58e3186905"
41
41
  }
@@ -114,7 +114,7 @@ end
114
114
  @return Observable<T?>
115
115
  ]=]
116
116
  function RxBinderUtils.observeBoundClass(binder, instance)
117
- assert(type(binder) == "table", "Bad binder")
117
+ assert(Binder.isBinder(binder), "Bad binder")
118
118
  assert(typeof(instance) == "Instance", "Bad instance")
119
119
 
120
120
  return Observable.new(function(sub)
@@ -137,7 +137,7 @@ end
137
137
  @return Observable<Brio<T>>
138
138
  ]=]
139
139
  function RxBinderUtils.observeBoundClassBrio(binder, instance)
140
- assert(type(binder) == "table", "Bad binder")
140
+ assert(Binder.isBinder(binder), "Bad binder")
141
141
  assert(typeof(instance) == "Instance", "Bad instance")
142
142
 
143
143
  return Observable.new(function(sub)