Jason Teplitz 
							
						 
					 
					
						
						
						
						
							
						
						
							787d1f955f 
							
						 
					 
					
						
						
							
							fix(Typings): Remove public exports added in 1926335b85af6c1fe56f4e36d0b95dcc92bb5c42  
						
						... 
						
						
						
						Closes  #4147  
					
						2015-09-11 19:16:57 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							f6cc573687 
							
						 
					 
					
						
						
							
							fix(exception_handler): fix error messages of wrapped exceptions  
						
						... 
						
						
						
						Closes  #4117  
					
						2015-09-10 22:26:56 +00:00 
						 
				 
			
				
					
						
							
							
								Jason Teplitz 
							
						 
					 
					
						
						
						
						
							
						
						
							1926335b85 
							
						 
					 
					
						
						
							
							fix(Typings): Output public constructors in .d.ts files  
						
						... 
						
						
						
						Closes  #3926 .
Closes  #3963  
					
						2015-09-10 01:37:43 +00:00 
						 
				 
			
				
					
						
							
							
								Jeff Cross 
							
						 
					 
					
						
						
						
						
							
						
						
							f14b212dc9 
							
						 
					 
					
						
						
							
							refactor: export core APIs from angular2/core  
						
						... 
						
						
						
						This change moves many APIs to the angular2/core export.
This change also automatically adds FORM_BINDINGS in
the application root injector.
BREAKING CHANGE:
    Many dependencies that were previously exported from specific
    APIs are now exported from angular2/core. Affected exports, which
    should now be included from angular2/core include:
    angular2/forms
    angular2/di
    angular2/directives
    angular2/change_detection
    angular2/bootstrap (except for dart users)
    angular2/render
    angular2/metadata
    angular2/debug
    angular2/pipes
Closes  #3977  
						
						
					 
					
						2015-09-05 07:01:34 +00:00 
						 
				 
			
				
					
						
							
							
								Harry Terkelsen 
							
						 
					 
					
						
						
						
						
							
						
						
							d8c5ab232c 
							
						 
					 
					
						
						
							
							refactor: add leading underscore to private fields  
						
						... 
						
						
						
						Closes  #4001  
					
						2015-09-05 00:54:50 +00:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							855cb16cc7 
							
						 
					 
					
						
						
							
							refactor(event_manager): use multi bindings to configure EventManager  
						
						... 
						
						
						
						Closes  #3978  
					
						2015-09-04 21:57:36 +00:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							60ce884671 
							
						 
					 
					
						
						
							
							feat(core): remove the (^ syntax and make all DOM events bubbling  
						
						... 
						
						
						
						BREAKING CHANGE
Before
<div (^click)="onEventHandler()">
  <button></button>
</div>
After
<div (click)="onEventHandler()">
  <button></button>
</div>
Closes  #3864  
						
						
					 
					
						2015-09-01 15:54:47 +00:00 
						 
				 
			
				
					
						
							
							
								Misko Hevery 
							
						 
					 
					
						
						
						
						
							
						
						
							c349bbbc08 
							
						 
					 
					
						
						
							
							refactor(ViewEncapsulation): rename to PascalCase  
						
						... 
						
						
						
						BREAKING CHANGE
- ViewEncapsulation.EMULATED => ViewEncapsulation.Emulated
- ViewEncapsulation.NATIVE => ViewEncapsulation.Native
- ViewEncapsulation.NONE => ViewEncapsulation.None
Closes  #3889  
						
						
					 
					
						2015-08-31 21:32:10 +00:00 
						 
				 
			
				
					
						
							
							
								Misko Hevery 
							
						 
					 
					
						
						
						
						
							
						
						
							e916836261 
							
						 
					 
					
						
						
							
							chore(ts2dart): replace List with Array  
						
						... 
						
						
						
						Closes  #3514  
					
						2015-08-31 21:32:10 +00:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							f93cd9ced7 
							
						 
					 
					
						
						
							
							feat(compiler): add full directive metadata and validation logic  
						
						... 
						
						
						
						With this, the new `TemplateParser` has feature/data parity with the `ProtoViewDto` of the `RenderCompiler`.
Part of #3605 
Closes  #3880  
						
						
					 
					
						2015-08-28 14:55:47 -07:00 
						 
				 
			
				
					
						
							
							
								Marc Laval 
							
						 
					 
					
						
						
						
						
							
						
						
							be07390859 
							
						 
					 
					
						
						
							
							refactor(test_lib): BrowserDetection util  
						
						... 
						
						
						
						Closes  #3805  
					
						2015-08-28 11:41:17 +02:00 
						 
				 
			
				
					
						
							
							
								Misko Hevery 
							
						 
					 
					
						
						
						
						
							
						
						
							69926dd002 
							
						 
					 
					
						
						
							
							refactor(change_detection): introduce enum ChangeDetectionStrategy  
						
						... 
						
						
						
						BREAKING CHANGE
Closes  #2497 
- change detection strategy type changes from string to ChangeDetectionStrategy
- CHECK_ONCE => ChangeDetectionStrategy.CheckOnce
- CHECKED => ChangeDetectionStrategy.Checked
- CHECK_ALWAYS => ChangeDetectionStrategy.CheckAlways
- DETACHED => ChangeDetectionStrategy.Detached
- ON_PUSH => ChangeDetectionStrategy.OnPush
- DEFAULT => ChangeDetectionStrategy.Default
- ON_PUSH_OBSERVE => ChangeDetectionStrategy.OnPushObserve 
						
						
					 
					
						2015-08-27 21:41:46 -07:00 
						 
				 
			
				
					
						
							
							
								Jason Teplitz 
							
						 
					 
					
						
						
						
						
							
						
						
							4ba4427510 
							
						 
					 
					
						
						
							
							feat(WebWorkers): Add WebSocket MessageBuses for debugging apps  
						
						... 
						
						
						
						Closes  #3858  
					
						2015-08-26 19:07:53 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							343dcfa0c0 
							
						 
					 
					
						
						
							
							refactor(tests): removed @IMPLEMENTS  
						
						
						
						
					 
					
						2015-08-26 15:06:25 -07:00 
						 
				 
			
				
					
						
							
							
								Tim Blasi 
							
						 
					 
					
						
						
						
						
							
						
						
							457eb5d69c 
							
						 
					 
					
						
						
							
							fix(WebWorker): Return boolean from dispatchRenderEvent  
						
						... 
						
						
						
						Update web_worker `dispatchRenderEvent` to return a boolean, which
[view.ts](https://github.com/angular/angular/blob/master/modules/angular2/src/core/render/dom/view/view.ts#L85 ) expects. 
						
						
					 
					
						2015-08-26 14:12:45 -07:00 
						 
				 
			
				
					
						
							
							
								Jeff Cross 
							
						 
					 
					
						
						
						
						
							
						
						
							8ed22ce6e7 
							
						 
					 
					
						
						
							
							chore: update all import paths  
						
						
						
						
					 
					
						2015-08-25 15:33:23 -07:00 
						 
				 
			
				
					
						
							
							
								Jeff Cross 
							
						 
					 
					
						
						
						
						
							
						
						
							38a5a2a955 
							
						 
					 
					
						
						
							
							chore: move core modules into core directory  
						
						... 
						
						
						
						BREAKING CHANGE:
    This change moves the http module into angular2/, so its import
    path is now angular2/http instead of http/http.
    Many other modules have also been moved around inside of angular2,
    but the public API paths have not changed as of this commit. 
						
						
					 
					
						2015-08-25 15:33:22 -07:00