fix(deps): update dependency rxjs to v7
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
rxjs (source) | dependencies | major | ~6.6.0 -> ~7.5.0 |
Release Notes
reactivex/rxjs
v7.5.7
Bug Fixes
- schedulers: improve performance of animationFrameScheduler and asapScheduler (#7059) (c93aa60), closes #7017, related to #7018 and #6674
Performance Improvements
v7.5.6
Bug Fixes
- share: No longer results in a bad-state observable in an edge case where a synchronous source was shared and refCounted, and the result is subscribed to twice in a row synchronously. (#7005) (5d4c1d9)
-
share & connect:
share
andconnect
no longer bundle scheduling code by default (#6873) (9948dc2), closes #6872 - exhaustAll: Result will now complete properly when flattening all synchronous observables. (#6911) (3c1c6b8), closes #6910
- TypeScript: Now compatible with TypeScript 4.6 type checks (#6895) (fce9aa1)
v7.5.5
Bug Fixes
- package: add types to exports (#6802) (3750f75)
-
package: add
require
export condition (#6821) (c8955e4) - timeout: no longer will timeout when receiving the first value synchronously (#6865) (2330c96), closes #6862
Performance Improvements
v7.5.4
Performance Improvements
- removed code that would
bind
functions passed with observers tosubscribe
. (#6815) (fb375a0), closes #6783
v7.5.3
Bug Fixes
- subscribe: allow interop with Monio and other libraries that patch function bind (0ab91eb), closes #6783
v7.5.2
Bug Fixes
- operators that ignore input values now use
unknown
rather thanany
, which should resolve issues with eslint no-unsafe-argument (#6738) (67cb317), closes #6536 - ajax: crossDomain flag deprecated and properly reported to consumers (#6710) (7fd0575), closes #6663
v7.5.1
Bug Fixes
v7.5.0
Bug Fixes
-
takeWhile: Now returns proper types when passed a
Boolean
constructor. (#6633) (081ca2b) - forEach: properly unsubs after error in next handler (#6677) (b9ab67d), closes #6676
- WebSocketSubject: handle slow WebSocket close (#6708) (8cb201c), closes #4650 #3935
- RxJS now supports tslib 2.x, rather than just 2.1.x (#6692) (0b2495f), closes #6689
- schedulers will no longer error while rescheduling and unsubscribing during flushes (e35f589), closes #6672
Features
v7.4.0
Features
- Add es2015 entries to the exports declaration to support Angular (#6614) (268777b), closes /github.com/ReactiveX/rxjs/pull/6613#discussion_r716958551
7.3.1 (2021-10-01)
Bug Fixes
- Schedulers: Throwing a falsy error in a scheduled function no longer results in strange error objects. (#6594) (c70fcc0)
- scheduling with Rx-provided schedulers will no longer leak action references (#6562) (ff5a748), closes #6561
- forkJoin: now finalizes sources before emitting (#6546) (c52ff2e), closes #4914
- observeOn: release action references on teardown (321d205)
- types: update schedule signature overload (c61e57c)
v7.3.1
Bug Fixes
- Schedulers: Throwing a falsy error in a scheduled function no longer results in strange error objects. (#6594) (c70fcc0)
- scheduling with Rx-provided schedulers will no longer leak action references (#6562) (ff5a748), closes #6561
- forkJoin: now finalizes sources before emitting (#6546) (c52ff2e), closes #4914
- observeOn: release action references on teardown (321d205)
- types: update schedule signature overload (c61e57c)
v7.3.0
Bug Fixes
- Expose
Connectable
, the return type ofconnectable
(#6531) (69f5bfa), closes #6529 - AsyncSubject: properly emits values during reentrant subscriptions (#6522) (dd8bdf3), closes #6520
Features
- retry: Now supports configurable delay as a named argument (#6421) (5f69795)
- tap: Now supports subscribe, unsubscribe, and finalize handlers (#6527) (eb26cbc)
v7.2.0
Bug Fixes
- debounceTime: unschedule dangling task on unsubscribe before complete (#6464) (7ab0a4c)
- fromEvent: Types now properly infer when resultSelector is provided (#6447) (39b9d81)
Features
- Operators are all exported at the top level, from "rxjs". From here on out, we encourage top-level imports with RxJS. Importing from
rxjs/operators
will be deprecated soon. (#6488) (512adc2), closes #6242
v7.1.0
Bug Fixes
- returned operator functions from multicast operators
share
,publish
,publishReplay
are now referentially transparent. Meaning if you take the result of callingpublishReplay(3)
and pass it to more than one observable'spipe
method, it will behave the same in each case, rather than having a cumulative effect, which was a regression introduced sometime in version 6. If you required this broken behavior, there is a workaround posted here (#6410) (e2f2e51), closes /github.com/ReactiveX/rxjs/pull/6410#issuecomment-846087374 #5411
Features
- All subjects now have an
observed
property. This will allow users to check whether a subject has current subscribers without us allowing access to theobservers
array, which is going to be made private in future versions. (#6405) (f47425d) - groupBy: Support named arguments, support ObservableInputs for duration selector (#5679) (7a99397)
- share: use another observable to control resets (#6169) (12c3716)
7.0.1 (2021-05-12)
Bug Fixes
- bindCallback: resulting function now recreated underlying Subject and is reusable once again. (#6369) (abf2bc1)
-
retry: properly handles retry counts smaller than
1
. (#6359) (e797bd7) - share: properly closes synchronous "firehose" sources. (#6370) (2271a91)
- Observable teardowns now properly called if
useDeprecatedSynchronousErrorHandling
istrue
. (#6365) (e19e104), closes #6364 - Subscription: properly release parent subscriptions when unsubscribed. (#6352) (88331d2), closes #6351 #6351
- node: do not reference DOM-related imports to assist in node usage. (#6305) (b24818e), closes #6297
v7.0.1
Bug Fixes
- bindCallback: resulting function now recreated underlying Subject and is reusable once again. (#6369) (abf2bc1)
-
retry: properly handles retry counts smaller than
1
. (#6359) (e797bd7) - share: properly closes synchronous "firehose" sources. (#6370) (2271a91)
- Observable teardowns now properly called if
useDeprecatedSynchronousErrorHandling
istrue
. (#6365) (e19e104), closes #6364 - Subscription: properly release parent subscriptions when unsubscribed. (#6352) (88331d2), closes #6351 #6351
- node: do not reference DOM-related imports to assist in node usage. (#6305) (b24818e), closes #6297
v7.0.0
Bug Fixes
- VS code will now properly auto-import operators, et al (#6276) (f43c728), closes #6067
-
AjaxResponse: add stricter
type
(AjaxResponseType
) (#6279) (839e192)
v6.6.7
v6.6.6
v6.6.4
Configuration
-
If you want to rebase/retry this MR, click this checkbox.
This MR has been generated by Renovate Bot.
Edited by Renovate-Bot
Merge request reports
Activity
mentioned in issue #22
added 12 commits
-
e3f25b5f...966a37bf - 11 commits from branch
V2.0
- 6f8e2a3e - fix(deps): update dependency rxjs to v7
-
e3f25b5f...966a37bf - 11 commits from branch
added 10 commits
-
6f8e2a3e...d43cc5a1 - 9 commits from branch
V2.0
- 231324e7 - fix(deps): update dependency rxjs to v7
-
6f8e2a3e...d43cc5a1 - 9 commits from branch
added 3 commits
-
231324e7...2193531f - 2 commits from branch
V2.0
- 4930133f - fix(deps): update dependency rxjs to v7
-
231324e7...2193531f - 2 commits from branch
added 2 commits
added 4 commits
-
e65f9562...8d1ff5f4 - 3 commits from branch
V2.0
- edfdc3c1 - fix(deps): update dependency rxjs to v7
-
e65f9562...8d1ff5f4 - 3 commits from branch
added 2 commits
added 4 commits
-
82976c88...f8772977 - 3 commits from branch
V2.0
- 46325089 - fix(deps): update dependency rxjs to v7
-
82976c88...f8772977 - 3 commits from branch
added 3 commits
-
46325089...9cfc4e5c - 2 commits from branch
V2.0
- 5415d211 - fix(deps): update dependency rxjs to v7
-
46325089...9cfc4e5c - 2 commits from branch
added 4 commits
-
5415d211...7243ed28 - 3 commits from branch
V2.0
- e94b6276 - fix(deps): update dependency rxjs to v7
-
5415d211...7243ed28 - 3 commits from branch
added 11 commits
-
e94b6276...37e12415 - 10 commits from branch
V2.0
- e72a7a2a - fix(deps): update dependency rxjs to v7
-
e94b6276...37e12415 - 10 commits from branch
added 3 commits
-
e72a7a2a...1553957a - 2 commits from branch
V2.0
- 7ae768cf - fix(deps): update dependency rxjs to v7
-
e72a7a2a...1553957a - 2 commits from branch
added 3 commits
-
7ae768cf...ad6c9164 - 2 commits from branch
V2.0
- 6e4c98e1 - fix(deps): update dependency rxjs to v7
-
7ae768cf...ad6c9164 - 2 commits from branch
added 5 commits
-
6e4c98e1...b0a43385 - 4 commits from branch
V2.0
- 10706456 - fix(deps): update dependency rxjs to v7
-
6e4c98e1...b0a43385 - 4 commits from branch
added 11 commits
-
10706456...9489eaaa - 10 commits from branch
V2.0
- dbc7e74a - fix(deps): update dependency rxjs to v7
-
10706456...9489eaaa - 10 commits from branch
added 5 commits
-
dbc7e74a...37ddac87 - 4 commits from branch
V2.0
- 07368572 - fix(deps): update dependency rxjs to v7
-
dbc7e74a...37ddac87 - 4 commits from branch
added 12 commits
-
07368572...a3647cd0 - 11 commits from branch
V2.0
- a4fb25db - fix(deps): update dependency rxjs to v7
-
07368572...a3647cd0 - 11 commits from branch
added 2 commits
Please register or sign in to reply