# 0.9.12 thought-implanter (in-progress) # ### API - rewrite of JQuery lite implementation for better supports operations on multiple nodes when matched by a selector. - Infer DI dependencies from function signature. http://docs.angularjs.org/#!guide.di ### Breaking changes - Removed the $init() method after the compilation. The old way of compiling the DOM element was angular.compile(element).$init(); The $init was there to allow the users to do any work to the scope before the view would be bound. This is a left over from not having proper MVC. The new recommended way to deal with initializing scope is to put it in the root constructor controller. To migrate simply remove the call to $init() and move any code you had before $init() to the root controller. - Change API angular.compile(..) to angular.compile(element)([scope], [cloneAttachFn]) # 0.9.11 snow-maker (2011-02-08) # ### Documentation - completed migration of docs from the wiki site to [http://docs.angularjs.org/](http://docs.angularjs.org/) - many, but by far not all, docs were updated, improved and cleaned up ### Features - [`$route`](http://docs.angularjs.org/#!angular.service.$route) service now supports these features: - route not found handling via `#otherwise()` - redirection support via `#when('/foo', {redirectTo: '/bar'})` (including param interpolation) - setting the parent scope for scopes created by the service via `#parent()` - reloading the current route via `#reload()` ### API - added `angular.element(...).scope()` method to retrieve scope for a given element. ### Bug Fixes - # 0.9.10 flea-whisperer (2011-01-26) # ### Features - new [`ng:view`](http://docs.angularjs.org/#!angular.widget.ng:view) widget to simplify integration with the `$route` service - the content of all standard HTML widgets is now being processed (e.g. `` works now) (commit 1d7b9d56) - new [`$log`](http://docs.angularjs.org/#!angular.mock.service.$log) and [`$exceptionHandler`](http://docs.angularjs.org/#!angular.mock.service.$exceptionHandler) service mocks now part of `angular-mocks.js` (commit f5d08963) ### Bug Fixes -