From 7bdcd7da1ff3a31f4958d90d856beb297e99b187 Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Wed, 22 Sep 2021 19:14:39 -0400 Subject: [PATCH] feat(@schematics/angular): create new projects with rxjs 7 With the Angular framework supporting rxjs 7 for Angular 13, new projects (`ng new ...`) can now be created using rxjs 7. rxjs 6 is also still fully supported with Angular 13 allowing existing projects to continue to use rxjs 6 if preferred or required. Support for rxjs 7 within the framework was enabled via https://github.com/angular/angular/pull/42991 --- .../schematics/angular/utility/latest-versions/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/schematics/angular/utility/latest-versions/package.json b/packages/schematics/angular/utility/latest-versions/package.json index 28145905ebac..5660a7cb5ebf 100644 --- a/packages/schematics/angular/utility/latest-versions/package.json +++ b/packages/schematics/angular/utility/latest-versions/package.json @@ -12,7 +12,7 @@ "karma-jasmine": "~4.0.0", "karma": "~6.3.0", "ng-packagr": "~13.0.0-next.0", - "rxjs": "~6.6.0", + "rxjs": "~7.3.0", "tslib": "^2.3.0", "typescript": "~4.3.5", "zone.js": "~0.11.4"