rxjs icon indicating copy to clipboard operation
rxjs copied to clipboard

A reactive programming library for JavaScript

Results 246 rxjs issues
Sort by recently updated
recently updated
newest added

### Describe the bug ### Description We are using your package as a dependency in our project. In our internal security scan (conducted via Black Duck), we found that some...

**Description:** Add TypeScript types, and fix all the TypeScript errors that were there even without the extra types. https://rxjs.dev/deprecations/multicasting https://rxjs.dev/api/index/interface/ConnectConfig **Related issue (if exists):**

**Description:** As pointed out in #7536, the docs for rxjs 7+ have specifically said this since #5307: https://github.com/ReactiveX/rxjs/blob/c15b37f81ba5f5abea8c872b0189a70b150df4cb/apps/rxjs.dev/content/guide/subject.md#L368 https://github.com/ReactiveX/rxjs/blob/c15b37f81ba5f5abea8c872b0189a70b150df4cb/apps/rxjs.dev/content/guide/subject.md#L377 But the `` was removed for unexplained reasons in #5430 even...

**Description:** Replace a bunch of `any` types with either `unknown` or a more specific type. But two are harder to replace, changing them causes type errors: https://github.com/ReactiveX/rxjs/blob/c15b37f81ba5f5abea8c872b0189a70b150df4cb/packages/observable/src/observable.ts#L262 https://github.com/ReactiveX/rxjs/blob/c15b37f81ba5f5abea8c872b0189a70b150df4cb/packages/observable/src/observable.ts#L498 ``` Type...

**Description:** The documentation mentions and the code allow for undefined parameter (and null), but the exported types didn't allow it. Example mentioned in the existing JSDoc: ``` // We only...

**Description:** Document the minimum supported Node.js version with `engines.node` https://docs.npmjs.com/cli/v11/configuring-npm/package-json#engines node v18 is currently EOL. **BREAKING CHANGE:** **Related issue (if exists):**

**Description:** This does #7365 but for the spec/ files. **BREAKING CHANGE:** **Related issue (if exists):**

### Describe the bug Both AsyncSubject and ReplaySubject overrides Subject next method, but even _throwIfClosed checked in every error/next/complete messages, is not checked in these two overriden methods. It just...

**Description:** Update `@types/node` and add some recommended options to tsconfig, including turning on [`noImplicitOverride`](https://www.typescriptlang.org/tsconfig/noImplicitOverride.html`), and following changes in upstream Angular defaults https://github.com/angular/angular-cli/pull/27988 Also fix this compile error that shows up...

**Description:** Rename CommonsJS files from `.js` to `.cjs` so they're unambiguous and don't depend on package.json's current `"type"` to resolve correctly. **BREAKING CHANGE:** **Related issue (if exists):**