diff --git a/.github/workflows/ci_main.yml b/.github/workflows/ci_main.yml index 519d69bb67..df5b59a338 100644 --- a/.github/workflows/ci_main.yml +++ b/.github/workflows/ci_main.yml @@ -23,7 +23,7 @@ jobs: node-version: ${{ matrix.node }} - name: install run: | - npm install -g npm@latest + npm --version npm ci - name: lint run: npm run lint diff --git a/.github/workflows/ci_ts_latest.yml b/.github/workflows/ci_ts_latest.yml index ab207255d6..1151427613 100644 --- a/.github/workflows/ci_ts_latest.yml +++ b/.github/workflows/ci_ts_latest.yml @@ -3,6 +3,8 @@ name: CI (ts@latest) on: pull_request: types: ['opened', 'reopened', 'synchronize'] + # Legacy v7 is incompatible with latest TS + branches-ignore: ['7.x'] permissions: contents: read diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f6c7283e3..0b681e2abb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [7.8.2](https://github.com/reactivex/rxjs/compare/7.8.1...7.8.2) (2025-02-22) + +### Bug Fixes + +- **animationFrameScheduler:** some tasks are never flushed and sometimes it breaks completely ([#7444](https://github.com/reactivex/rxjs/issues/7444)) ([8bbfa4e](https://github.com/reactivex/rxjs/commit/8bbfa4efd15f6572316d5b2b05b2f49ded69a3ca)) +- **mergeWith:** works correctly with an Array ([#7281](https://github.com/reactivex/rxjs/issues/7281)) ([27855c6](https://github.com/reactivex/rxjs/commit/27855c635ca74107352ae3336944433a328c0b41)) +- **subscriber:** strict type signature for next method ([#7172](https://github.com/reactivex/rxjs/issues/7172)) ([0e2ef5e](https://github.com/reactivex/rxjs/commit/0e2ef5e1142699b028bc3624aae9b24c3e3aaccf)) + ## [7.8.1](https://github.com/reactivex/rxjs/compare/7.8.0...7.8.1) (2023-04-26) ### Bug Fixes diff --git a/docs_app/content/guide/glossary-and-semantics.md b/docs_app/content/guide/glossary-and-semantics.md index 882d516417..e10fba36c5 100644 --- a/docs_app/content/guide/glossary-and-semantics.md +++ b/docs_app/content/guide/glossary-and-semantics.md @@ -34,7 +34,7 @@ There are specific actions and events that occur between major entities in RxJS ### Subscribe -The act of a [consumer](#consumer) requesting an Observable set up a [subscription](#subscription) so that it may [observe](#observation) a [producer](#producer). A subscribe action can occur with an observable via many different mechanisms. The primary mechanism is the [`subscribe` method](/api/index/class/Observable#subscribe) on the [Observable class](/api/index/class/Observable). Other mechanisms include the [`forEach` method](/api/index/class/Observable#forEach), functions like [`lastValueFrom`](/api/index/function/lastValueFrom), and [`firstValueFrom`](/api/index/function/firstValueFrom), and the deprecated [`toPromise` method](/api/index/class/Observable#forEach). +The act of a [consumer](#consumer) requesting from an Observable to set up a [subscription](#subscription) so that it may [observe](#observation) a [producer](#producer). A subscribe action can occur with an observable via many different mechanisms. The primary mechanism is the [`subscribe` method](/api/index/class/Observable#subscribe) on the [Observable class](/api/index/class/Observable). Other mechanisms include the [`forEach` method](/api/index/class/Observable#forEach), functions like [`lastValueFrom`](/api/index/function/lastValueFrom), and [`firstValueFrom`](/api/index/function/firstValueFrom), and the deprecated [`toPromise` method](/api/index/class/Observable#forEach). ### Finalization @@ -78,11 +78,11 @@ The act of one [producer](#producer) being [observed](#observation) by **many** ### Unicast -The act of one [producer](#producer) being [observed](#observation) **only one** [consumer](#consumer). An observable is "unicast" when it only connects one [producer](#producer) to one [consumer](#consumer). Unicast doesn't necessarily mean ["cold"](#cold). +The act of one [producer](#producer) being [observed](#observation) by **only one** [consumer](#consumer). An observable is "unicast" when it only connects one [producer](#producer) to one [consumer](#consumer). Unicast doesn't necessarily mean ["cold"](#cold). ### Cold -An observable is "cold" when it creates a new [producer](#producer) during [subscribe](#subscribe) for every new [subscription](#subscription). As a result, a "cold" observables are _always_ [unicast](#unicast), being one [producer](#producer) [observed](#observation) by one [consumer](#consumer). Cold observables can be made [hot](#hot) but not the other way around. +An observable is "cold" when it creates a new [producer](#producer) during [subscribe](#subscribe) for every new [subscription](#subscription). As a result, "cold" observables are _always_ [unicast](#unicast), being one [producer](#producer) [observed](#observation) by one [consumer](#consumer). Cold observables can be made [hot](#hot) but not the other way around. ### Hot @@ -138,7 +138,7 @@ An [observer](#observer) that lacks all necessary [notification](#notification) ### Unhandled Errors -An "unhandled error" is any [error](#error) that is not handled by a [consumer](#consumer)-provided function, which is generally provided during the [subscribe](#subscribe) action. If no error handler was provided, RxJS will assume the error is "unhandled" and rethrow the error on a new callstack or prevent ["producer interference"](#producer-interface). +An "unhandled error" is any [error](#error) that is not handled by a [consumer](#consumer)-provided function, which is generally provided during the [subscribe](#subscribe) action. If no error handler was provided, RxJS will assume the error is "unhandled" and rethrow the error on a new callstack to prevent ["producer interference"](#producer-interference). ### Producer Interference diff --git a/docs_app/content/navigation.json b/docs_app/content/navigation.json index 58a9ac6236..f7de1552d5 100644 --- a/docs_app/content/navigation.json +++ b/docs_app/content/navigation.json @@ -120,6 +120,10 @@ } ], "docVersions": [ + { + "title": "next", + "url": "https://next.rxjs.dev/" + }, { "title": "stable", "url": "https://rxjs.dev/" diff --git a/docs_app/src/index.html b/docs_app/src/index.html index 81ce43626e..92a1c8c9bd 100644 --- a/docs_app/src/index.html +++ b/docs_app/src/index.html @@ -84,7 +84,7 @@