From 030b68229c6e355c7d56c5ce6323587f2e4d2912 Mon Sep 17 00:00:00 2001 From: Ben Lesh Date: Thu, 15 Dec 2022 17:07:19 -0600 Subject: [PATCH] chore(publish): 7.7.0 --- CHANGELOG.md | 9 +++++++++ package-lock.json | 34 ++-------------------------------- package.json | 2 +- 3 files changed, 12 insertions(+), 33 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c46b448b5..1d022529a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# [7.7.0](https://github.com/reactivex/rxjs/compare/7.6.0...7.7.0) (2022-12-15) + +### Features + +- **distinct:** `flush` argument now supports any `ObservableInput` ([#7081](https://github.com/reactivex/rxjs/issues/7081)) ([74c9ebd](https://github.com/reactivex/rxjs/commit/74c9ebd818113f9f25f1fb2b9fee4a0eac121ae0)) +- **repeatWhen:** `notifier` supports `ObservableInput` ([#7103](https://github.com/reactivex/rxjs/issues/7103)) ([8f1b976](https://github.com/reactivex/rxjs/commit/8f1b976125c55a5e884317c2b463fd019662e6af)) +- **retryWhen:** `notifier` now supports any `ObservableInput` ([#7105](https://github.com/reactivex/rxjs/issues/7105)) ([794f806](https://github.com/reactivex/rxjs/commit/794f8064cf8fe754e9dfebeee0ffef0ac1562252)) +- **sample:** `notifier` now supports any `ObservableInput` ([#7104](https://github.com/reactivex/rxjs/issues/7104)) ([b18c2eb](https://github.com/reactivex/rxjs/commit/b18c2eb2bc8dc1a717c927f998028316eec83937)) + # [7.6.0](https://github.com/reactivex/rxjs/compare/7.5.7...7.6.0) (2022-12-03) ### Bug Fixes diff --git a/package-lock.json b/package-lock.json index 94795ffccf..02cbdfd928 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rxjs", - "version": "7.5.7", + "version": "7.6.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "rxjs", - "version": "7.5.7", + "version": "7.6.0", "license": "Apache-2.0", "dependencies": { "tslib": "^2.1.0" @@ -63,7 +63,6 @@ "sinon-chai": "2.14.0", "source-map-support": "0.5.3", "systemjs": "^0.21.0", - "ts-api-guardian": "^0.5.0", "ts-node": "^9.1.1", "tslint": "^5.20.1", "tslint-config-prettier": "^1.18.0", @@ -11539,24 +11538,6 @@ "node": ">=0.10.0" } }, - "node_modules/ts-api-guardian": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/ts-api-guardian/-/ts-api-guardian-0.5.0.tgz", - "integrity": "sha512-BjVlb23FUqWU+wmdHkLdaHcllU+v/Cca26sY40bCkM15BCF2yc17daOm+UXyvxQ9NndPM/40m+X+GLyDkrE9tA==", - "deprecated": "No longer actively maintained. Package never hit 1.x stable.", - "dev": true, - "dependencies": { - "chalk": "^2.3.1", - "diff": "^3.5.0", - "minimist": "^1.2.0" - }, - "bin": { - "ts-api-guardian": "bin/ts-api-guardian" - }, - "peerDependencies": { - "typescript": "~3.7.4" - } - }, "node_modules/ts-node": { "version": "9.1.1", "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.1.1.tgz", @@ -22112,17 +22093,6 @@ "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", "dev": true }, - "ts-api-guardian": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/ts-api-guardian/-/ts-api-guardian-0.5.0.tgz", - "integrity": "sha512-BjVlb23FUqWU+wmdHkLdaHcllU+v/Cca26sY40bCkM15BCF2yc17daOm+UXyvxQ9NndPM/40m+X+GLyDkrE9tA==", - "dev": true, - "requires": { - "chalk": "^2.3.1", - "diff": "^3.5.0", - "minimist": "^1.2.0" - } - }, "ts-node": { "version": "9.1.1", "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.1.1.tgz", diff --git a/package.json b/package.json index 79cf6ef269..53cef1fdd1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rxjs", - "version": "7.6.0", + "version": "7.7.0", "description": "Reactive Extensions for modern JavaScript", "main": "./dist/cjs/index.js", "module": "./dist/esm5/index.js",