Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

docs(guide/migration): mention isolate scope one-way bindings #13940

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/content/guide/migration.ngdoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ which drives many of these changes.
## Migrating from 1.4 to 1.5

Angular 1.5 takes a big step towards preparing developers for a smoother transition to Angular 2 in
the future. Architecturing your applications using components, multi-slot transclusion, using
lifecycle hooks in directive controllers and relying on native ES6 features (such as classes and
arrow functions) are now all possible with Angular 1.5.
the future. Architecturing your applications using components, multi-slot transclusion, one-way
bindings in isolate scopes, using lifecycle hooks in directive controllers and relying on native ES6
features (such as classes and arrow functions) are now all possible with Angular 1.5.


This release includes numerous bug and security fixes, as well as performance improvements to core
services, directives, filters and helper functions. Existing applications can start enjoying the
benefits of such changes in `$compile`, `$parse`, `$animate`, `$animateCss`, `$sanitize`, `ngOptions`,
`currencyFilter`, `numberFilter`, `copy()` (to name but a few) without any change in code.

New features have been added to more than a dozen services, directives and filters across 7 modules.
New features have been added to more than a dozen services, directives and filters across 8 modules.
Among them, a few stand out:
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't add the one-way bindings in the "highlights" (the list is getting too long for the migration guide).
I'm fine adding it though if someone feels it's worth highlighting (or maybe remove some other item).


* `angular.component()`: Introducing "components", a special sort of directive that are easy to
Expand Down