@quenty/rx 13.15.0 → 13.16.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 +11 -0
- package/package.json +8 -8
- package/src/Shared/Rx.lua +6 -6
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
|
+
# [13.16.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rx@13.15.0...@quenty/rx@13.16.0) (2025-02-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Typo typo causing some operators to not emit on source completion ([#537](https://github.com/Quenty/NevermoreEngine/issues/537)) ([bdff54c](https://github.com/Quenty/NevermoreEngine/commit/bdff54c926234e44d01af54f773239c0647bb303))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [13.15.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rx@13.14.0...@quenty/rx@13.15.0) (2024-12-15)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/rx",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.16.0",
|
|
4
4
|
"description": "Quenty's reactive library for Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -28,18 +28,18 @@
|
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@quenty/cancellabledelay": "^3.5.0",
|
|
31
|
-
"@quenty/canceltoken": "^11.
|
|
32
|
-
"@quenty/ducktype": "^5.
|
|
33
|
-
"@quenty/loader": "^10.
|
|
31
|
+
"@quenty/canceltoken": "^11.11.0",
|
|
32
|
+
"@quenty/ducktype": "^5.8.0",
|
|
33
|
+
"@quenty/loader": "^10.8.0",
|
|
34
34
|
"@quenty/maid": "^3.4.0",
|
|
35
|
-
"@quenty/promise": "^10.
|
|
36
|
-
"@quenty/signal": "^7.
|
|
35
|
+
"@quenty/promise": "^10.10.0",
|
|
36
|
+
"@quenty/signal": "^7.10.0",
|
|
37
37
|
"@quenty/symbol": "^3.4.0",
|
|
38
38
|
"@quenty/table": "^3.7.0",
|
|
39
|
-
"@quenty/throttle": "^10.
|
|
39
|
+
"@quenty/throttle": "^10.9.0"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "184a407d8d7366c39009444c3c9a7023cb176471"
|
|
45
45
|
}
|
package/src/Shared/Rx.lua
CHANGED
|
@@ -645,11 +645,11 @@ function Rx.reduce(reducer, seed)
|
|
|
645
645
|
end,
|
|
646
646
|
function(...)
|
|
647
647
|
sub:Fail(...)
|
|
648
|
-
end
|
|
648
|
+
end,
|
|
649
649
|
function()
|
|
650
650
|
-- On complete emit the result.
|
|
651
651
|
sub:Fire(current)
|
|
652
|
-
end)
|
|
652
|
+
end))
|
|
653
653
|
|
|
654
654
|
return maid
|
|
655
655
|
end)
|
|
@@ -750,13 +750,13 @@ function Rx.endWith(values)
|
|
|
750
750
|
sub:Fire(item)
|
|
751
751
|
end
|
|
752
752
|
sub:Fail(...)
|
|
753
|
-
end
|
|
753
|
+
end,
|
|
754
754
|
function()
|
|
755
755
|
for _, item in pairs(values) do
|
|
756
756
|
sub:Fire(item)
|
|
757
757
|
end
|
|
758
758
|
sub:Complete()
|
|
759
|
-
end)
|
|
759
|
+
end))
|
|
760
760
|
|
|
761
761
|
return maid
|
|
762
762
|
end)
|
|
@@ -1330,7 +1330,7 @@ function Rx.combineLatestAll()
|
|
|
1330
1330
|
end,
|
|
1331
1331
|
function(...)
|
|
1332
1332
|
sub:Fail(...)
|
|
1333
|
-
end
|
|
1333
|
+
end,
|
|
1334
1334
|
function()
|
|
1335
1335
|
if not alive then
|
|
1336
1336
|
return
|
|
@@ -1338,7 +1338,7 @@ function Rx.combineLatestAll()
|
|
|
1338
1338
|
|
|
1339
1339
|
maid:GiveTask(Rx.combineLatest(observables))
|
|
1340
1340
|
:Subscribe(sub:GetFireFailComplete())
|
|
1341
|
-
end)
|
|
1341
|
+
end))
|
|
1342
1342
|
|
|
1343
1343
|
return maid
|
|
1344
1344
|
end)
|