Skip to content

Releases: single-spa/single-spa-angular

v3.0.0-rc.1

09 Jul 15:50
Compare
Choose a tag to compare
v3.0.0-rc.1 Pre-release
Pre-release

Fixes

  • Fixed bug where ng add single-spa-angular@beta threw an error in Angular 7 projects. (7688d1f)
  • Fixing problem where live reloading with webpack-dev-server caused repeated network requests. (b7f4516)

v3.0.0-beta.26

05 Jul 02:08
Compare
Choose a tag to compare

Fixes

v3.0.0-rc.0

06 Jul 01:17
Compare
Choose a tag to compare
v3.0.0-rc.0 Pre-release
Pre-release

Release candidate

Version 3 includes support for angular-cli and works with Angular 2-8.

v3.0.0-beta.27

06 Jul 01:15
Compare
Choose a tag to compare
v3.0.0-beta.27 Pre-release
Pre-release

Features

  • Support for angular 8, via @angular-builders/custom-webpack. Angular 7 and below will continue using single-spa-angular builder (#83)

v3.0.0-beta.25

26 Jun 11:16
Compare
Choose a tag to compare

Fixes

  • Fixed typescript compilation error. (#90 586ca34)
  • Allow all headers when dev server is doing CORS (7e5eec3)

Features

  • Serving the src directory through webpack-dev-server, so that assets can be loaded. (7e5eec3)

v3.0.0-beta.24

24 Jun 07:01
Compare
Choose a tag to compare

Features

Fixes

  • Fix problems with routing, change detection, and back/forward buttons. (#86, #89 via @ernestlv)

v3.0.0-beta.22

13 Jun 08:18
Compare
Choose a tag to compare

Features

  • Support for props.domElement, which means single-spa-angular can be used to create parcels. (1484c11)

Maintenance

  • Removing references to dead serveDirectory option (0164d34)

v3.0.0-beta.21

21 May 17:14
Compare
Choose a tag to compare

Features

#73 (custom props are now available in the bootstrap lifecycles - thanks @Magefo )

v3.0.0-beta.20

07 May 22:14
Compare
Choose a tag to compare

Fixes

  • Removed some (but not all 😢) of the Navigation triggered outside of Angular zone warnings (#69 from @jlewicki-nevo)
  • Improved support for using Angular's --project feature (#68 from kbjerke)

v3.0.0-beta.19

03 May 22:50
Compare
Choose a tag to compare

Features

  • Lazy loading is now possible via SystemJS (fe37476)
  • You can now put your html file into a separate git repo and directory, which doesn't have to be a parent directory of your applications.
  • Users are encouraged to use single-spa-playground.org to set up their single spa application (fe37476)

Fixes

  • --project option is now respected as the default libraryName in webpack (#67 @kbjerke)

Migrating from 3.0.0-beta.17

Update your main.single-spa.ts file to no longer export default. Instead, it should do the following:

const lifecycles = singleSpaAngular({...})

export const bootstrap = lifecycles.bootstrap
export const mount = lifecycles.mount
export const unmount = lifecycles.mount

Now go to single-spa-playground.org and follow the instructions there.