Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: angular-redux/router
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: angular-redux/router
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: es-upgrade-to-ng5-compiler
Choose a head ref
  • 2 commits
  • 8 files changed
  • 1 contributor

Commits on Nov 30, 2017

  1. v7 release - Angular v5 Support

    * Update to Angular 5 compiler
    * Update RxJS, change to use let-able operators
    * Requires @angular-redux/store 7+
    
    ** Breaking Change **
    
    * NgReduxRouterModule now needs to be imported with `.forRoot`
    
    ** before **
    
    ``ts
    @NgModule({
              declarations: [AppComponent],
                imports: [
                    RouterModule.forRoot(appRoutes),
                    /* .... */
                    NgReduxRouterModule  ],
                      bootstrap: [AppComponent]
                      })
    export class AppModule {}
    ``
    
    ** after **
    
    ``ts
    @NgModule({
              declarations: [AppComponent],
                imports: [
                    RouterModule.forRoot(appRoutes),
                    /* .... */
                    NgReduxRouterModule.forRoot()
                  ],
                    bootstrap: [AppComponent]
                    })
    export class AppModule {}
    ```
    e-schultz committed Nov 30, 2017
    Configuration menu
    Copy the full SHA
    9f943b4 View commit details
    Browse the repository at this point in the history
  2. v7.0.0-2

    e-schultz committed Nov 30, 2017
    Configuration menu
    Copy the full SHA
    31c7d7c View commit details
    Browse the repository at this point in the history
Loading