-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removed deprecated symbols that have a new name #7164
Conversation
BREAKING CHANGE: The `animationFrame` constant is no longer available. Use `animationFrameScheduler`.
BREAKING CHANGE: The `ObservableLike` interface is no longer available. Use `InteropObservable`.
BREAKING CHANGE: The `ObservedValuesFromArray` interface is no longer available. Use `ObservedValueUnionFromArray`.
BREAKING CHANGE: The `combineAll` operator is no longer available. Use `combineLatestAll`.
BREAKING CHANGE: The `flatMap` operator is no longer available. Use `mergeMap`.
BREAKING CHANGE: The `exhaust` operator is no longer available. Use `exhaustAll`.
BREAKING CHANGE: The `asap` constant is no longer available. Use `asapScheduler`.
BREAKING CHANGE: The `queue` constant is no longer available. Use `queueScheduler`.
BREAKING CHANGE: The `async` constant is no longer available. Use `asyncScheduler`.
I can’t figure out why “CI / Node 14 build” is crashing. I installed the same version of node locally but the tests pass. @benlesh, maybe this is some kind of anomaly? |
Not sure... It might have something to do with the transpiled output using a feature that doesn't exist in Node 14, and being somehow different than what is happening locally. Different TS version locally maybe? |
BREAKING CHANGE: The `onErrorResumeNext` operator is no longer available. Use `onErrorResumeNextWith`.
ab90614
to
e2cc6bd
Compare
@benlesh I restarted and it's gone. It looks like it's some kind of floating bug in old node or tests in the repository. |
Thank you, @demensky |
Exported symbols marked as "Renamed to $SYMBOL_NAME. Will be removed in v8" have been removed. The entire project was also searched and all references to deleted entities were updated.
BREAKING CHANGE: removed deprecated symbols that have a new name
Related issue (if exists): #6367