javascript-typescript-langserver
javascript-typescript-langserver copied to clipboard
fix(deps): update dependency rxjs to v6
This PR contains the following updates:
| Package | Type | Update | New value | References | Sourcegraph |
|---|---|---|---|---|---|
| rxjs | dependencies | major | ^6.6.2 | source |
Release Notes
reactivex/rxjs
v6.6.2
v6.6.1
v6.6.0
v6.5.5
v6.5.4
v6.5.3
Bug Fixes
- general: Refactor modules so they don't show side effects in some tools (#4769) (9829c5e0)
- defer: restrict allowed factory types (#4835) (40a22096)
v6.5.2
Bug Fixes
- endWith: wrap args - they are not observables - in of before concatenating (#4735) (986be2f)
- forkJoin: test for object literal (#4741) (c11e1b3), closes #4737 #4737
- Notification: replace const enum (#4556) (e460eec), closes #4538
- of: remove deprecation comment to prevent false positive warning (#4724) (da69c16)
- pairwise: make it recursion-proof (#4743) (21ab261)
- scan: fixed declarations to properly support different return types (#4598) (126d2b6)
- Subscription: Return Empty when teardown === null (#4575) (ffc4e68)
- throttleTime: emit single value with trailing enabled (#4564) (fd690a6), closes #2859 #4491
- umd: export fetch namespace (#4738) (7926122)
- fromFetch: don't abort if fetch resolves (#4742 (ed8d771)
v6.5.1
Bug Fixes
- Notification: replace const enum (#4556) (e460eec), closes #4538
- throttleTime: emit single value with trailing enabled (#4564) (fd690a6), closes #2859 #4491
v6.5.0
Bug Fixes
- docs-app: remove stopWordFilter from lunr pipeline (#4536) (9eaebd4)
- dtslint: disable tests that break in TS@next (#4705) (ecc73d2)
- index: export NotificationKind (#4514) (7125355), closes #4513
- race: better typings (#4643) (fb9bc48), closes #4390 #4642
- throwIfEmpty: ensure result is retry-able (c4f44b9)
- types: Fixed signature for onErrorResumeNext (#4603) (4dd0be0)
Features
- combineLatest: deprecated rest argument and scheduler signatures (#4641) (6661c79), closes #4640
-
fromFetch: We now export a
fromFetchstatic observable creation method fromrxjs/fetch. Mirrors nativefetchonly it's lazy and cancellable viaObservableinterface. (#4702) (5a1ef86) - forkJoin: accepts a dictionary of sources (#4640) (b5a2ac9)
-
partition: new
partitionobservable creation function. Oldpartitionoperator is deprecated (#4419) (#4685) (d5d6980) -
scheduled: Add
scheduledcreation function to use to create scheduled observable of values. Deprecate scheduled versions offrom,range, et al. (#4595) (f57e1fc)
Performance Improvements
v6.4.0
Bug Fixes
- ajax: Fix case-insensitive headers in HTTP request (#4453) (673bf47)
- bundle: closure to not rewrite polyfills for minification (#4487) (a1fedb9)
-
bundle: don't export
operatorstwice (#4310) (2399f6e) - combineLatest: improve typings for combineLatest (#4470) (40c3d9f)
- compat: remove internal from import locations (#4498) (a6c0017), closes #4070
- endWith: ability to endWith different types (#4183) (#4185) (83533d1)
- fromEventPattern: improve typings for fromEventPattern (#4496) (037f53d)
- Observable: Fix Observable.subscribe to add operator TeardownLogic to returned Subscription. (#4434) (f28955f)
- subscribe: Deprecate null starting parameter signatures for subscribe (#4202) (c85ddf6)
- combineLatest: support passing union types (ffda319)
- from: support passing union types (eb1d596)
- withLatestFrom: support passing union types (1e19a24)
- zip: support passing union types (0d87f52)
- multicast: support returning union types from projection (e9e9041)
- exhaustMap: support returning union types from projection (ff1f5dc)
- merge: support union type inference for merge operators (c2ac39c)
- catchError: support union type returns (8350622)
- switchMap: support union type returns (32d35fd)
- defer: support union types passed (5aea50e)
- race: Update typings to support proper return types (#4465) (0042846)
- VirtualTimeScheduler: rework flush so it won't lose actions (#4433) (d068bc9)
- WebSocketSubject: fix subject failing to close socket (#4446) (dcfa52b)
Features
-
shareReplay: Add configuration object for named arguments, and add argument to support unsubscribing from source observable by
refCountwhen all resulting subscriptions have unsubscribed. The default behavior is to leave the source subscription running. - mergeScan: Add index to the accumulator function (#4458) (f5e143d), closes #4441
- range: accept one argument (#4360) (a388578)
-
takeWhile: add an
inclusiveoption to the operator which causes to emit final value (#4115) (6e7f407)
Performance Improvements
- internal: optimize Subscription#add() for the common case (#4489) (bdd201c)
- internal: use strict equality for isObject() (#4493) (fc84a00)
-
Subscription: use
instanceofto avoid megamorphic LoadIC (#4499) (065b4e3)
6.3.3 (2018-09-25)
Bug Fixes
- pipe: align static pipe to Observable pipe rest parameters overl… (#4112) (8c607e9), closes #4109 #4109
- RxJS: each instance of RxJS now has a unique Subscriber symbol (0972c56)
- subscribe: report errors that occur in subscribe after the initial error (#4089) (9b4b2bc), closes #3803
- Subscriber: Can no longer subscribe to itself in a circular manner (#4106) (e623ec6), closes #4095
- Subscriber: use only local Subscriber instances (50ee0a7)
- TypeScript: ensure RxJS builds with TS@next as well (f03e790)
6.3.2 (2018-09-04)
Bug Fixes
6.3.1 (2018-08-31)
Bug Fixes
v6.3.3
Bug Fixes
- pipe: align static pipe to Observable pipe rest parameters overl… (#4112) (8c607e9), closes #4109 #4109
- RxJS: each instance of RxJS now has a unique Subscriber symbol (0972c56)
- subscribe: report errors that occur in subscribe after the initial error (#4089) (9b4b2bc), closes #3803
- Subscriber: Can no longer subscribe to itself in a circular manner (#4106) (e623ec6), closes #4095
- Subscriber: use only local Subscriber instances (50ee0a7)
- TypeScript: ensure RxJS builds with TS@next as well (f03e790)
v6.3.2
Bug Fixes
v6.3.1
Bug Fixes
v6.3.0
Bug Fixes
- find: unsubscribe from source when found (#3968) (fd01f7b)
- convert @internal comment to JSDoc (#3932) (f8a9d6e)
- AjaxObservable: notify with error if fails to parse json response (#3139) (d8231e2), closes #3138
- catchError: stop listening to a synchronous inner-obervable when unsubscribed (456ef33)
- distinctUntilKeyChanged: improved key typing with keyof T (#3988) (4ec4ff1)
- exhaustMap: stop listening to a synchronous inner-obervable when unsubscribed (ee1a339)
- find: add undefined to return type (#3970) (5a6c90f), closes #3969
- IE10: Remove dependency on Object.setPrototypeOf (#3967) (5c52a73), closes #3966
- mergeAll: add source subscription to composite before actually subscribing (#2479) (40852ff), closes #2476
- mergeScan: stop listening to a synchronous inner-obervable when unsubscribed (c4002f3)
- Observable: forEach will no longer next values after an error (b4bad1f)
- Observable: use more granular Observable exports in compat mode (#3974) (3f75564)
- onErrorResumeNext: stop listening to a synchronous inner-obervable when unsubscribed (1d14277)
- pipe: replace rest parameters overload (#3945) (872b0ec), closes #3841
- skipUntil: stop listening to a synchronous notifier after its first nexted value (1c257db)
- startWith: allow empty type signature and passing a different type (b7866a0)
- subscribable: make subscribe() signature match Observable (#4050) (865d8d7), closes #3891
- subscriber: unsubscribe parents on error/complete (ad8131b)
- switchMap: stop listening to a synchronous inner-obervable when unsubscribed (260d52a)
- takeUntil: takeUntil should subscribe to the source if notifier sync completes without emitting (#4039) (21fd0b4), closes #3504
- testscheduler: type arguments to Observable creation functions (#3928) (0e30ef1)
Features
- delayWhen: add index to the selector function (#2473) (0979d31)
- forEach: deprecating passing promise constructor (5178ab9)
- TestScheduler: Add subscription schedule to expectObservable (#3997) (0d20255)
6.2.2 (2018-07-13)
Bug Fixes
- first: improved type gaurds for TypeScript (3e12f7a)
- last: improved type gaurds for TypeScript (3e12f7a)
6.2.1 (2018-06-12)
Bug Fixes
- ci: do not trigger postbuild script on PR (f82c085)
- delayWhen: Emit source value if duration selector completes synchronously (#3664) (2c43af7), closes #3663
- docs: fix broken github links (#3802) (9f9bf9b)
- docs: fix code examples (#3784) (a95441b)
- from: Objects implementing Symbol.observable take precedence over other types (80ceea0)
- fromEvent: Support React Native and node-compatible event sources. (#3821) (1969f18)
- Observable.prototype.pipe: TS typings now more correct for >8 parameters (#3789) (ad010ea)
- subscribe: ignore syncError when deprecated (#3749) (f94560c)
- Symbol.observable: make observable declaration readonly (#3697) (#3773) (e1c203f)
- TypeScript: resolved typings issue for TS 3.0 (bf2cdeb)
- typings: allow bufferCreationInterval null for bufferTime (#3734) (0bda9cd), closes #3728
Performance Improvements
v6.2.2
Bug Fixes
- first: improved type gaurds for TypeScript (3e12f7a)
- last: improved type gaurds for TypeScript (3e12f7a)
v6.2.1
Bug Fixes
- ci: do not trigger postbuild script on PR (f82c085)
- delayWhen: Emit source value if duration selector completes synchronously (#3664) (2c43af7), closes #3663
- docs: fix broken github links (#3802) (9f9bf9b)
- docs: fix code examples (#3784) (a95441b)
- from: Objects implementing Symbol.observable take precedence over other types (80ceea0)
- fromEvent: Support React Native and node-compatible event sources. (#3821) (1969f18)
- Observable.prototype.pipe: TS typings now more correct for >8 parameters (#3789) (ad010ea)
- subscribe: ignore syncError when deprecated (#3749) (f94560c)
- Symbol.observable: make observable declaration readonly (#3697) (#3773) (e1c203f)
- TypeScript: resolved typings issue for TS 3.0 (bf2cdeb)
- typings: allow bufferCreationInterval null for bufferTime (#3734) (0bda9cd), closes #3728
Performance Improvements
v6.2.0
Bug Fixes
- ajax: Handle timeouts as errors (#3653) (e4128ea)
- ajax: RxJS v6 TimeoutError is missing name property (576d943)
- isObservable: Fix throwing error when testing isObservable(null) (#3688) (c9acc61)
- range: Range should be same for every subscriber (#3707) (9642133)
- skipUntil: fix skipUntil when innerSubscription is null (#3686) (4226432)
- TestScheduler: restore run changes upon error (27cb9b6)
- TimeoutError: Add name to TimeoutError (44042d0)
- WebSocketSubject: Check to see if WebSocket exists in global scope (#3694) (2db0788)
Features
v6.1.0
Bug Fixes
- audit: will not crash if duration is synchronous (#3608) (76b7e27), closes #2743
- delay: fix memory leak (#3605) (96f05b0)
Features
- isObservable: a new method for checking to see if an object is an RxJS Observable (edb33e5)
v6.0.0
Bug Fixes
Code Refactoring
Features
- testing: Add testScheduler.run() helper (2d5b3b2)
- testing: testScheduler.run() supports time progression syntax (9322b7d)
BREAKING CHANGES
-
webSocket: UNBREAKING websocket to be named
webSocketagain, just like it was in 5.0. Now you should import fromrxjs/webSocket
v5.5.12
v5.5.11
v5.5.10
v5.5.9
v5.5.8
v5.5.7
v5.5.6
Bug Fixes
- Observable: rethrow errors when syncErrorThrowable and inherit it from destination. Fixes #2813 (541b49d)
v5.5.5
Support Added
- Bazel: Add files to support users that want Bazel builds with RxJS (12dac3b)
v5.5.4
Bug Fixes
- scheduler: resolve regression on angular router with zones (#3158) (520b06a)
- publish: re-publish after having built with proper version of TypeScript. (f0ff5bc, closes#3155)
v5.5.3
Bug Fixes
- concatStatic: missing exports for mergeStatic and concatStatic (#2999) (cae5f9b)
- scheduler: prevent unwanted clearInterval (#3044) (7d722d4), closes #3042
- SystemJS: avoid node module resolution of pipeable operators (#3025) (d77e3d7), closes #2971 #2996 #3011
- typings: fix subscribe overloads (#3053) (1a9fd42), closes #3052
v5.5.2
Bug Fixes
- package: fixed import failures in Webpack (#2987) (e16202d)
- typings: improved type inference for arguments to publishReplay (#2992) (0753ff7), closes #2991
-
typings: ensure TS types for
zipandcombineLatestare properly inferred. (b8e6cf8) - typings: publish variants will properly return ConnectableObservable(#2983) (d563bfa)
v5.5.1
Bug Fixes
-
build: Remove
moduleandes2015keys to avoid resolution conflicts (5073139) - ajaxobservable: fix operator import path (d9b62ed)
Renovate configuration
:date: Schedule: "on the 1st through 7th day of the month" in timezone America/Los_Angeles.
:vertical_traffic_light: Automerge: Disabled by config. Please merge this manually once you are satisfied.
:recycle: Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR has been generated by WhiteSource Renovate. View repository job log here.