Skip to content

Commit

Permalink
Update CHANGELOG with missing BC.
Browse files Browse the repository at this point in the history
chore(): Remove unused token
  • Loading branch information
christopherthielen committed Sep 24, 2016
1 parent ce1b308 commit 2a45243
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ This release fixes bugs for both ng1 and ng2

### BREAKING CHANGES

#### BC in Core
* Remove `UIInjector.native` infavor of `UIInjector.getNative()` ([d11b7dc](https://github.com/angular-ui/ui-router/commit/d11b7dc))
* Remove `stateProvider` from ui-router-core. Use `stateRegistry` and `stateService` in 88c6494
* We now enforce states with an explicit `parent:` may NOT ALSO specify a parent state in their name (i.e., `parent.child`)

#### Angular 2
#### BC in Angular 2

Major breaking changes for Angular 2 bootstrap between beta.2 and beta.3

Expand Down Expand Up @@ -151,7 +153,7 @@ Previously, a single wildcard `foo.*` could match "missing segments" on the end
For example, `foo.*` would match the state `foo`.
Likewise, `foo.*.*.*` would also match the `foo` state.

Now, a single wildcard matches exactly one segment.
Now, a single wildcard matches exactly one segment.
`foo.*` will match `foo.bar` and `foo.baz`, but neither `foo` nor `foo.bar.baz`.

If you previously relied on the single wildcard to match missing segments, use a double wildcard, `foo.**`.
Expand Down
2 changes: 0 additions & 2 deletions src/ng2/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -341,5 +341,3 @@ export interface Ng2Component {
*/
uiCanExit(): HookResult;
}

export const NG2_INJECTOR_TOKEN = new OpaqueToken("NgModule Injector");

0 comments on commit 2a45243

Please sign in to comment.