mlaval 
							
						 
					 
					
						
						
						
						
							
						
						
							c4964e7c9b 
							
						 
					 
					
						
						
							
							fix(test): "integration tests svg should support svg elements" fails in non-Chrome browsers  
						
						... 
						
						
						
						Fixes  #4987 
Closes  #5000  
					
						2015-10-29 16:03:15 +00:00 
						 
				 
			
				
					
						
							
							
								Martin Probst 
							
						 
					 
					
						
						
						
						
							
						
						
							c02f2bdab0 
							
						 
					 
					
						
						
							
							chore: adjust formatting to new clang-format.  
						
						... 
						
						
						
						- fixes wrapping for object literal keys called `template`.
- spacing in destructuring expressions.
- changes to keep trailing return types of functions closer to their
  function declaration.
- better formatting of string literals.
Closes  #4828  
						
						
					 
					
						2015-10-28 11:19:10 +01:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							540b8c2a1a 
							
						 
					 
					
						
						
							
							fix(renderer): support xlink:href attribute in svg  
						
						... 
						
						
						
						Closes  #4956  
					
						2015-10-27 16:22:32 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							ac52bfd80f 
							
						 
					 
					
						
						
							
							fix(render): create svg elements with the right namespace  
						
						... 
						
						
						
						Temporary fix for #4506 
Closes  #4949  
						
						
					 
					
						2015-10-27 14:45:00 -07:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							04b4035ecd 
							
						 
					 
					
						
						
							
							refactor(AppViewListener): prefix listener with on for consistency  
						
						... 
						
						
						
						Closes  #3925  
					
						2015-10-26 18:28:27 +00:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							3118d5cebb 
							
						 
					 
					
						
						
							
							fix(compiler): support events on a template element that are consumed via a direct expression  
						
						... 
						
						
						
						Closes  #4883  
					
						2015-10-26 10:45:01 -07:00 
						 
				 
			
				
					
						
							
							
								Tim Blasi 
							
						 
					 
					
						
						
						
						
							
						
						
							fd0ba37734 
							
						 
					 
					
						
						
							
							refactor(dart): Format Dart code  
						
						... 
						
						
						
						Use the dart formatter to clean up all pure Dart code.
Closes  #4832  
						
						
					 
					
						2015-10-20 17:39:37 +00:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							cec8b58373 
							
						 
					 
					
						
						
							
							fix(compiler): explicitly support event bindings also on <template> elements  
						
						... 
						
						
						
						Although these events don’t fire events themselves, there might be directives on them that fire events.
Closes  #4712  
						
						
					 
					
						2015-10-15 10:08:22 -07:00 
						 
				 
			
				
					
						
							
							
								Kevin Moore 
							
						 
					 
					
						
						
						
						
							
						
						
							a91ae291e4 
							
						 
					 
					
						
						
							
							fix(test) fix Dart annotation for integration_dart_spec.dart  
						
						
						
						
					 
					
						2015-10-15 00:19:31 +00:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							bfbf18d983 
							
						 
					 
					
						
						
							
							feat(query): add filter and reduce to QueryList  
						
						... 
						
						
						
						Closes  #4710  
					
						2015-10-13 23:52:17 +00:00 
						 
				 
			
				
					
						
							
							
								Julie Ralph 
							
						 
					 
					
						
						
						
						
							
						
						
							f529236bfc 
							
						 
					 
					
						
						
							
							refactor(test): rename test_lib to testing  
						
						... 
						
						
						
						Old test_lib is now testing_internal
test_lib_public is now testing 
						
						
					 
					
						2015-10-13 10:36:49 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							1aeafd31bd 
							
						 
					 
					
						
						
							
							feat(di): change the params of Provider and provide to start with "use"  
						
						... 
						
						
						
						Closes  #4684  
					
						2015-10-12 21:09:09 +00:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							1eb0162cde 
							
						 
					 
					
						
						
							
							feat(di): rename Binding into Provider  
						
						... 
						
						
						
						Closes  #4416 
Closes  #4654  
					
						2015-10-11 05:13:31 +00:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							7c6130c2c5 
							
						 
					 
					
						
						
							
							feat(core): desugar [()] to [prop] and (prop-change)  
						
						... 
						
						
						
						BREAKING CHANGE
Before
```
<cmp [(prop)]="field"> was desugared to <cmp [prop]="field" (prop)="field=$event">
```
After
```
<cmp [(prop)]="field"> is desugared to <cmp [prop]="field" (prop-change)="field=$event">
```
Closes  #4658  
						
						
					 
					
						2015-10-11 02:58:13 +00:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							14fa00791e 
							
						 
					 
					
						
						
							
							fix(analyzer): fix dart analyzer errors  
						
						
						
						
					 
					
						2015-10-08 13:54:44 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							8b725c77fd 
							
						 
					 
					
						
						
							
							fix(tests): fix tests  
						
						
						
						
					 
					
						2015-10-08 13:54:44 -07:00 
						 
				 
			
				
					
						
							
							
								Alex Eagle 
							
						 
					 
					
						
						
						
						
							
						
						
							5458036de7 
							
						 
					 
					
						
						
							
							fix(typings): update test.typings for abstract superclasses  
						
						
						
						
					 
					
						2015-10-08 13:54:43 -07:00 
						 
				 
			
				
					
						
							
							
								Alex Eagle 
							
						 
					 
					
						
						
						
						
							
						
						
							6075509f26 
							
						 
					 
					
						
						
							
							chore(typing): extract abstract superclasses to replace @private constructors  
						
						
						
						
					 
					
						2015-10-08 13:54:43 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							6d4bd5d901 
							
						 
					 
					
						
						
							
							fix(render): recurse into components/embedded templates not until all elements in a view have been visited  
						
						... 
						
						
						
						Fixes  #4551 
Closes  #4601  
					
						2015-10-08 11:43:21 -07:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							aaa215514b 
							
						 
					 
					
						
						
							
							refactor(ListWrapper): get ride of ListWrapper.map  
						
						
						
						
					 
					
						2015-10-07 06:39:14 +00:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							dea6a4593b 
							
						 
					 
					
						
						
							
							cleanup(core): making @View optional  
						
						... 
						
						
						
						Closes  #4566  
					
						2015-10-07 02:16:42 +00:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							bd31b01690 
							
						 
					 
					
						
						
							
							feat(core): add syntax sugar to make @View optional  
						
						
						
						
					 
					
						2015-10-07 02:16:42 +00:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							0b3e4fa090 
							
						 
					 
					
						
						
							
							refactor(core): move ViewEncapsulation and ViewType to the right places  
						
						... 
						
						
						
						Closes  #4526  
					
						2015-10-05 11:22:21 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							0299d4af00 
							
						 
					 
					
						
						
							
							fix(core): keep styles for ViewEncapsulation.Native isolated per component  
						
						... 
						
						
						
						BREAKING CHANGE:
- `Renderer.registerComponent` now takes an additional argument.
Fixes  #4513 
Closes  #4524  
						
						
					 
					
						2015-10-05 10:34:42 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							6fe8b85295 
							
						 
					 
					
						
						
							
							fix(render): keep bindings of components in content and view in the right order  
						
						... 
						
						
						
						Bindings in the component view have to be first, before 
bindings of components in the light dom (i.e. have the same
order as used in the `ViewManagerUtils.createView()` method.
Fixes  #4522 
Closes  #4523  
						
						
					 
					
						2015-10-05 10:10:47 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							c9901c5fe0 
							
						 
					 
					
						
						
							
							feat(core): support properties and events in addition to inputs and outputs to make transition easier  
						
						... 
						
						
						
						Closes  #4482  
					
						2015-10-02 23:23:15 +00:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							6b5d345a2b 
							
						 
					 
					
						
						
							
							refactor(core): adjust imports for move files to the right place  
						
						... 
						
						
						
						- render/xhr_* -> compiler/xhr_*
- render/event_config -> linker/event_config
- render/dom/schema -> compiler/schema
- render/dom/compiler/* -> compiler/*
- render/dom/view/shared_styles_host -> render/dom/shared_styles_host 
						
						
					 
					
						2015-10-02 13:38:51 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							2450a3c5b0 
							
						 
					 
					
						
						
							
							refactor(core): move files to the right place  
						
						... 
						
						
						
						- render/xhr_* -> compiler/xhr_*
- render/event_config -> linker/event_config
- render/dom/schema -> compiler/schema
- render/dom/compiler/* -> compiler/*
- render/dom/view/shared_styles_host -> render/dom/shared_styles_host
- services/url_resolver -> compiler/url_resolver
- services/app_root_urlo -> compiler/app_root_url 
						
						
					 
					
						2015-10-02 13:38:51 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							6248a5e846 
							
						 
					 
					
						
						
							
							refactor(core): move core/compiler to core/linker, adjust imports  
						
						
						
						
					 
					
						2015-10-02 08:42:12 -07:00 
						 
				 
			
				
					
						
							
							
								Tobias Bosch 
							
						 
					 
					
						
						
						
						
							
						
						
							9f4fa1ab0a 
							
						 
					 
					
						
						
							
							refactor(core): move core/compiler to core/linker  
						
						
						
						
					 
					
						2015-10-02 08:42:11 -07:00