Victor Berchet
43512aa5eb
fix(i18n): ICU placeholders are replaced by their translations ( #10586 )
...
They were replaced by the original message.
2016-08-09 21:05:04 -07:00
Victor Savkin
c7f3aa71fb
fix(router): support relative param-only navigation ( #10613 )
2016-08-09 17:03:17 -07:00
Misko Hevery
f9da3c98d6
chore: remove deprecated router 2/2
2016-08-09 15:24:14 -07:00
Misko Hevery
a20a420be6
chore: remove deprecated router 1/2
2016-08-09 15:24:14 -07:00
Alex Eagle
beadf6167a
fix(ngc): add an option to produce TS1.9-pathMapping imports ( #10602 )
...
This fixes a regression in #10486
2016-08-09 14:58:19 -07:00
Marc Laval
c8da7e995f
test(router): Android browser does not support element.click()
2016-08-09 13:25:20 -07:00
Marc Laval
8be6b12c2b
test(router): use Object.isFrozen instead of relying on an exception
2016-08-09 13:25:20 -07:00
Marc Laval
4728f29f67
test(router): increase Karma timers and add polyfills for old browsers
2016-08-09 13:25:20 -07:00
Victor Berchet
2a942e49ac
chore(changelog): update convetional-changelog ( #10594 )
...
conventional-changelog-angular@1.3.0 makes breaking changes message detection more forgiving
2016-08-09 11:53:23 -07:00
vsavkin
e3aa19049f
chore(router): update changelog
2016-08-09 11:02:04 -07:00
vsavkin
ef1eadadcd
chore(router): bump up version number
2016-08-09 11:01:17 -07:00
Igor Minar
f444c11d21
docs(changelog): add the ngModel is now fully async note
2016-08-09 10:54:54 -07:00
Julie Ralph
d75502eeee
refactor(testing): remove deprecated test setup functions ( #10600 )
...
Remove test setup functions which were deprecated in rc5. See the
changelog for rc5 for how to update. In brief, instead of
`setBaseTestProviders`, use `TestBed.initTestEnvironment`.
2016-08-09 10:46:28 -07:00
Stephen Fluin
ebcd14f8e9
docs(changelog): update change log to rc.5
...
Closes #10599
2016-08-09 10:34:07 -07:00
Victor Berchet
b65f66feff
feat(i18n): switch to sha1 for message fingerprinting
2016-08-09 09:52:11 -07:00
Victor Berchet
dd68ae3ef1
feat(ExtractorMerger): ignore implicit tags in translatable sections
2016-08-09 09:52:11 -07:00
Victor Berchet
1b04d70626
feat(ExtractorMerger): allow nested implicit tags
2016-08-09 09:52:11 -07:00
Hans
01bca41168
fix: allow users to pass in absolute paths to ngc ( #10572 )
2016-08-09 09:36:37 -07:00
Igor Minar
94e1ab33ce
chore(release): update package.jsons
2016-08-09 09:33:17 -07:00
Matias Niemelä
0b08dd8674
chore(animations): make sure host-prop animation deprecation is correctly emitted
...
Closes #10581
2016-08-08 23:39:22 -07:00
Jesús Rodríguez
b2b47177cd
add brandon suggestions
2016-08-09 03:30:25 +02:00
Jesús Rodríguez
f08257ff4a
docs(cheatsheet): update for rc5
2016-08-09 03:06:01 +02:00
Igor Minar
d1f4222c83
docs(cheatsheet): add NgModules docs to the cheatsheet
2016-08-08 17:18:50 -07:00
Igor Minar
d21331e902
fix(ngUpgrade): to work with @NgModule
...
We changed the bootstrap order:
1. create NgZone
2. bootstrap ng1 inside NgZone and upgrade ng1 components to ng2 components.
3. bootstrap ng2 with NgZone
Note: Previous footgun behavior was: bootstrap ng2 first to extract NgZone, so that ng1 bootstrap can happen in NgZone. This meant that if ng2 bootstrap eagerly compiled a component which contained ng1 components, then we did not have complete metadata.
2016-08-08 12:50:08 -07:00
Igor Minar
37f138e83d
test(ngUpgrade): convert the upgrade example to use NgModules
...
The example worked even before this change - verifying that the fallback/legacy mode works as well.
2016-08-08 12:20:22 -07:00
Igor Minar
5dab0bad3c
test(NgUpgrade): add support for loading plaground/upgrade example without bundles
2016-08-08 12:20:22 -07:00
Igor Minar
85e70a4cde
style(ngUpgrade): small cleanup
2016-08-08 12:20:21 -07:00
Igor Minar
6b564ecda5
feat(ngUpgrade): add support for NgModules
...
BREAKING CHANGE: UpgradeAdapter.addProvider are now deprecated in favor of passing in an NgModule into the adapter's constructor
Before:
```
let upgradeAdapter = new UpgradeAdapter();
upgradeAdapter.addProviders([myProvidersArray);
```
After:
```
@NgModule({
providers: myProvidersArray
})
class MyModule {}
let upgradeAdapter = new UpgradeAdapter(MyModule);
```
2016-08-08 12:17:35 -07:00
Miško Hevery
d4cceff0ef
chore: remove module aware bootstrap API ( #10543 )
...
This API was introduced post RC4, but needs to be removed
before RC5 as we have decided against it.
2016-08-08 09:36:09 -07:00
vsavkin
a415613457
fix(router): update dts files
2016-08-08 09:15:59 -07:00
vsavkin
1a41bd1ca4
feature(router): add route.root returning the root of router state
2016-08-08 09:15:59 -07:00
vsavkin
5a99393355
fix(router): route.parent should work for secondary children
2016-08-08 09:15:59 -07:00
vsavkin
afcb3c0035
fix(router): support outlets in non-absolute positions
2016-08-08 09:15:59 -07:00
vsavkin
d2d36c61f3
fix(router): fix matrix params check to handle 'special' objects
2016-08-08 09:15:59 -07:00
Damien Cassan
0bd97ecda2
feat(http): add options method to Http ( #10540 )
...
Add options method to the Http object, which could be useful when using self-describing RESTful APIs.
This closes #10500 , closes #7918
2016-08-08 09:15:13 -07:00
Pawel Kozlowski
46bbcefb36
fix(linker): prevent pollution of empty embeddedView context ( #10548 )
...
Fixes #10045
2016-08-08 09:11:35 -07:00
Victor Berchet
74b57dfa7d
refactor(i18n): remove circular dep
2016-08-05 13:39:54 -07:00
Victor Berchet
8c9c0986e9
refatcor(digestMessage): takes a `i18n.Message`
2016-08-05 13:39:54 -07:00
Victor Berchet
4028fcaa51
refactor(i18n): Drop `html.Message` and create `i18n.Message` right away
2016-08-05 13:39:54 -07:00
Victor Berchet
7a8ef1eae5
feat(i18n): merge translations
2016-08-05 13:39:54 -07:00
Victor Berchet
e811a5d97f
refactor(i18n): misc updates
2016-08-05 13:39:54 -07:00
Victor Berchet
df44e3e425
fix(i18n extractor): array manipulation
2016-08-05 13:39:54 -07:00
Victor Berchet
cdb1a237e5
refactor(compiler): html_parser -> ml_parser
2016-08-05 13:39:54 -07:00
Kara
fcafdff10b
feat(forms): allow both patching and strict setting of values ( #10537 )
2016-08-05 13:35:17 -07:00
vsavkin
c586656d43
fix(router): fix type definition
2016-08-05 13:12:21 -07:00
vsavkin
3a307c2794
fix(router): absolute redirects should work with lazy loading
2016-08-05 13:12:21 -07:00
vsavkin
4f17dbc721
fix(router): add segmentPath to the link DSL
2016-08-05 13:12:21 -07:00
Jason Choi
99989f5d3f
chore(facade): remove most facade/async functions
2016-08-05 12:26:28 -07:00
Jason Choi
6baf3baedd
chore(playground): clang-format
2016-08-05 12:26:28 -07:00
Miško Hevery
0d1f3c3b07
fix: support trailing slash in basePath ( #10533 )
2016-08-05 11:11:24 -07:00