Skip to content

Releases: single-spa/single-spa-angular

v9.2.0

10 Sep 17:55
Compare
Choose a tag to compare

What's Changed

Full Changelog: v9.1.2...v9.2.0

v9.1.2

19 Apr 15:32
Compare
Choose a tag to compare

What's Changed

  • fix: assertNotInAngularZone should act as a noop by @arturovt in #513

Full Changelog: v9.1.1...v9.1.2

v9.1.1

19 Apr 13:14
Compare
Choose a tag to compare

What's Changed

  • fix: assertInAngularZone should act as a noop by @arturovt in #512

Full Changelog: v9.1.0...v9.1.1

v9.1.0

14 Apr 19:11
Compare
Choose a tag to compare

What's Changed

Full Changelog: v9.0.1...v9.1.0

v9.0.1

22 Sep 17:15
Compare
Choose a tag to compare

What's Changed

  • fix: resolve global styles from StylesWebpackPlugin by @arturovt in #489

Full Changelog: v9.0.0...v9.0.1

v9.0.0

19 Sep 22:29
Compare
Choose a tag to compare

What's Changed

Full Changelog: v8.1.0...v9.0.0

v8.1.0

14 Mar 20:35
Compare
Choose a tag to compare

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

12 Jan 18:33
Compare
Choose a tag to compare

What's Changed

  • fix: bump Nx to 15.4.8 to resolve build issue by @arturovt in #470

Full Changelog: v8.0.0...v8.0.1

v8.0.0

01 Jan 19:23
Compare
Choose a tag to compare

What's Changed

Full Changelog: v7.1.0...v8.0.0

v7.1.0

24 Jul 21:14
Compare
Choose a tag to compare

Features

  • single-spa-angular now can bootstrap applications with standalone components. The bootstrapFunction allowed bootstrapping application by calling platformBrowserDynamic(getSingleSpaExtraProviders()).bootstrapModule(...). It's possible to call bootstrapApplication(...) now which bootstraps the standalone component (marked with standalone: true). Unfortunately, since the bootstrapApplication is in developer preview, it's not possible to pass platform providers to bootstrapApplication; thus getSingleSpaExtraProviders cannot be called. (ffa487c)