Files
backstage/.changeset/chatty-books-buy.md
T
Patrik Oldsberg 61c3f927cc changeset: added changesets for Observable type update
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
2021-05-17 13:31:31 +02:00

383 B

@backstage/core-api
@backstage/core-api
patch

Updated the Observable type to provide interoperability with Symbol.observable, making it compatible with at least zen-observable and RxJS 7.

In cases where this change breaks tests that mocked the Observable type, the following addition to the mock should fix the breakage:

  [Symbol.observable]() {
    return this;
  },