@quenty/rx 10.0.0 → 11.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
+ # [11.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rx@10.0.0...@quenty/rx@11.0.0) (2024-02-13)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Replace Subscription:Error() call in Rx.tap with Subscription:Fail() ([#440](https://github.com/Quenty/NevermoreEngine/issues/440)) ([30bcfb9](https://github.com/Quenty/NevermoreEngine/commit/30bcfb9b0d8009eae337d7b6bc9f75bedf4da460))
12
+
13
+
14
+
15
+
16
+
6
17
  # [10.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rx@9.0.0...@quenty/rx@10.0.0) (2024-02-13)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/rx",
3
- "version": "10.0.0",
3
+ "version": "11.0.0",
4
4
  "description": "Quenty's reactive library for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -41,5 +41,5 @@
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "5736b108e4d23cd4c9e761bbe4cc9fed6fb32dfa"
44
+ "gitHead": "87df864b5b6a9a9cef7544f6e8054a12cdd120bd"
45
45
  }
package/src/Shared/Rx.lua CHANGED
@@ -302,7 +302,7 @@ function Rx.tap(onFire, onError, onComplete)
302
302
  if onError then
303
303
  onError(...)
304
304
  end
305
- sub:Error(...)
305
+ sub:Fail(...)
306
306
  end,
307
307
  function(...)
308
308
  if onComplete then