Releases: single-spa/single-spa-angular
Releases · single-spa/single-spa-angular
v9.2.0
v9.1.2
v9.1.1
v9.1.0
v9.0.1
v9.0.0
v8.1.0
What's Changed
- build(deps): bump http-cache-semantics from 4.1.0 to 4.1.1 by @dependabot in #472
- fix: remove theta symbol from
BrowserPlatformLocation
by @arturovt in #478
Breaking Changes
The minimum required Angular version is 15.1.0
because the BrowserPlatformLocation
was added to their public API and is not re-exported privately anymore. It was exported as ɵBrowserPlatformLocation
previously.
Full Changelog: v8.0.1...v8.1.0
v8.0.1
v8.0.0
v7.1.0
Features
single-spa-angular
now can bootstrap applications with standalone components. ThebootstrapFunction
allowed bootstrapping application by callingplatformBrowserDynamic(getSingleSpaExtraProviders()).bootstrapModule(...)
. It's possible to callbootstrapApplication(...)
now which bootstraps the standalone component (marked withstandalone: true
). Unfortunately, since thebootstrapApplication
is in developer preview, it's not possible to pass platform providers tobootstrapApplication
; thusgetSingleSpaExtraProviders
cannot be called. (ffa487c)