Skip to content

Commit 88a7622

Browse files
1.0.0-beta.8
1 parent 3c6963a commit 88a7622

File tree

3 files changed

+56
-5
lines changed

3 files changed

+56
-5
lines changed

CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,54 @@
1+
# 1.0.0-beta.7 (2017-10-07)
2+
[Compare `@uirouter/angular` versions 1.0.0-beta.7 and 1.0.0-beta.7](https://github.com/ui-router/ng2/compare/1.0.0-beta.7...1.0.0-beta.7)
3+
4+
### Bug Fixes
5+
6+
* **NgModule:** Use InjectionToken instead of OpaqueToken ([bfa604c](https://github.com/ui-router/ng2/commit/bfa604c))
7+
* **typescript:** Fix typescript 2.4 compatibility issue ([d0c46ce](https://github.com/ui-router/ng2/commit/d0c46ce))
8+
* **uiSref:** run update when input properties change ([#141](https://github.com/ui-router/ng2/issues/141)) ([9ecc6e2](https://github.com/ui-router/ng2/commit/9ecc6e2))
9+
10+
11+
### Features
12+
13+
* **UIRouterModule:** Add deferInitialRender toggle to forRoot. Waits for initial router transition before bootstrapping the app the initial render. ([5ae9051](https://github.com/ui-router/ng2/commit/5ae9051))
14+
* **uiSrefStatus:** Emit all enclosed uiSref targetStates in the status object ([0687e19](https://github.com/ui-router/ng2/commit/0687e19))
15+
* **uiSrefStatus:** emit state/params in events ([bd67d25](https://github.com/ui-router/ng2/commit/bd67d25))
16+
17+
18+
19+
## `@uirouter/core` updated from 5.0.4 to 5.0.10 (2017-10-07)
20+
[Compare `@uirouter/core` versions 5.0.4 and 5.0.10](https://github.com/ui-router/core/compare/5.0.4...5.0.10)
21+
22+
### Bug Fixes
23+
24+
* **angular/cli:** Use package.json fields: 'typings', 'main', 'jsnext:main' ([74143d9](https://github.com/ui-router/core/commit/74143d9))
25+
* **bundle:** Rollup: Do not warn on THIS_IS_UNDEFINED ([a4581b1](https://github.com/ui-router/core/commit/a4581b1))
26+
* **globals:** Use shallow copy to update the globals.params / $state.params object ([e883afc](https://github.com/ui-router/core/commit/e883afc))
27+
* **Injector:** When getting tokens from native injector, only throw on undefined (not on falsey values) ([ada9ca2](https://github.com/ui-router/core/commit/ada9ca2))
28+
* **isomorphic:** Remove use of CustomEvent. Detect root scope (global/window/self) for nodejs, browser, or web-worker. ([2d206ba](https://github.com/ui-router/core/commit/2d206ba))
29+
* **redirectTo:** Fix typings for redirectTo. Allow a function that returns a target state or a promise for one. ([3904487](https://github.com/ui-router/core/commit/3904487))
30+
* **sourceMaps:** Embed typescript sources in sourcemaps ([10558a3](https://github.com/ui-router/core/commit/10558a3))
31+
* **trace:** Fall back to console.log if .table is unavailable (IE) ([c8110fc](https://github.com/ui-router/core/commit/c8110fc))
32+
* **trace:** Support tracing of object-parameters with circular references ([2f1ae9a](https://github.com/ui-router/core/commit/2f1ae9a))
33+
* **typescript:** Fix strictNullCheck type error ([0ae585e](https://github.com/ui-router/core/commit/0ae585e))
34+
* **typescript:** Update to typescript 2.4 ([ce1669b](https://github.com/ui-router/core/commit/ce1669b))
35+
* **typings:** Use StateObject for parameter to hook criteria functions ([5b58566](https://github.com/ui-router/core/commit/5b58566))
36+
* **url:** Add CustomEvent polyfill for IE ([a50db21](https://github.com/ui-router/core/commit/a50db21))
37+
* **urlRouter:** Fix absolute 'href' generation by using location.hostname (not location.host) ([a28b68a](https://github.com/ui-router/core/commit/a28b68a))
38+
* **urlService:** Fix priority sorting of URL rules ([73a1fe0](https://github.com/ui-router/core/commit/73a1fe0))
39+
* **vanilla:** fix base path handling for vanilla push state ([ad61d74](https://github.com/ui-router/core/commit/ad61d74))
40+
* **vanilla:** Use `self` instead of `window` for webworker compat ([a4629ee](https://github.com/ui-router/core/commit/a4629ee))
41+
42+
43+
### Features
44+
45+
* **Resolvable:** Add `.value()`: returns value (WAIT) or promise (NOWAIT) ([8769449](https://github.com/ui-router/core/commit/8769449))
46+
* **TargetState:** Add builder methods .withState, .withParams, and .withOptions ([6b93142](https://github.com/ui-router/core/commit/6b93142))
47+
* **TransitionHook:** Add hook registration option `invokeLimit` to limit the number of times a hook is invoked before being auto-deregistered. ([2cb17ef](https://github.com/ui-router/core/commit/2cb17ef))
48+
* **urlMatcher:** add support for multiline urls ([5b11ce0](https://github.com/ui-router/core/commit/5b11ce0))
49+
50+
51+
152
<a name="1.0.0-beta.7"></a>
253
# [1.0.0-beta.7](https://github.com/ui-router/ng2/compare/1.0.0-beta.6...1.0.0-beta.7) (2017-06-19)
354

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@uirouter/angular",
33
"description": "State-based routing for Angular",
4-
"version": "1.0.0-beta.7",
4+
"version": "1.0.0-beta.8",
55
"scripts": {
66
"clean": "shx rm -rf lib lib-esm _bundles _dec",
77
"compile": "npm run clean && ngc",
@@ -48,7 +48,7 @@
4848
"module": "lib/index.js",
4949
"typings": "lib/index.d.ts",
5050
"dependencies": {
51-
"@uirouter/core": "5.0.9",
51+
"@uirouter/core": "5.0.10",
5252
"@uirouter/rx": "=0.4.1",
5353
"tslib": "^1.7.1"
5454
},

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@
9191
dependencies:
9292
"@types/node" "*"
9393

94-
"@uirouter/[email protected].9":
95-
version "5.0.9"
96-
resolved "https://registry.yarnpkg.com/@uirouter/core/-/core-5.0.9.tgz#62ddf5377d242d364baffa9227369d6bdb230254"
94+
"@uirouter/[email protected].10":
95+
version "5.0.10"
96+
resolved "https://registry.yarnpkg.com/@uirouter/core/-/core-5.0.10.tgz#1a39eacbe33f3b44ab2c8fa4520cb1da92026cc3"
9797

9898
"@uirouter/publish-scripts@^1.0.7":
9999
version "1.0.7"

0 commit comments

Comments
 (0)