Yegor Jbanov 
							
						 
					 
					
						
						
						
						
							
						
						
							841f8789fd 
							
						 
					 
					
						
						
							
							refactor(transformer): precompile stylesheets  
						
						... 
						
						
						
						Part of #3605  
						
						
					 
					
						2015-10-01 18:48:27 -07:00 
						 
				 
			
				
					
						
							
							
								Tim Blasi 
							
						 
					 
					
						
						
						
						
							
						
						
							52236bd765 
							
						 
					 
					
						
						
							
							refactor(transformer): use the new compiler  
						
						... 
						
						
						
						Part of #3605  
						
						
					 
					
						2015-10-01 18:48:26 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							adbfd29fd7 
							
						 
					 
					
						
						
							
							feat(core): renames Property into Input and Event into Output  
						
						... 
						
						
						
						BREACKING CHANGE:
Before: @Directive({properties: ['one'], events: ['two']})
After: @Directive({inputs: ['one'], outputs: ['two']})
Before: @Component({properties: ['one'], events: ['two']})
After: @Componet({inputs: ['one'], outputs: ['two']})
Before: class A {@Property() one; @Event() two;}
After: class A {@Input() one; @Output() two;} 
						
						
					 
					
						2015-10-01 04:36:23 +00:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							589ce31dfc 
							
						 
					 
					
						
						
							
							feat(transformers): record setters for query fields  
						
						... 
						
						
						
						Closes  #4344  
					
						2015-09-25 23:34:42 +00:00 
						 
				 
			
				
					
						
							
							
								Tim Blasi 
							
						 
					 
					
						
						
						
						
							
						
						
							e7d65ad96f 
							
						 
					 
					
						
						
							
							fix(dart/transform): Handle export cycles  
						
						... 
						
						
						
						Currently, an export cycle in dart inputs will cause the transformer to
hang indefinitely on the `DirectiveMetadataExtractor` step.
Closes  #4370  
						
						
					 
					
						2015-09-25 23:08:45 +00:00 
						 
				 
			
				
					
						
							
							
								Tim Blasi 
							
						 
					 
					
						
						
						
						
							
						
						
							820b30c181 
							
						 
					 
					
						
						
							
							refactor(dart/transform): Use protos to run & test directive_linker  
						
						... 
						
						
						
						Use the proto ng_deps model objects internally and while testing the directive
linker rather than reading & comparing Dart code. 
						
						
					 
					
						2015-09-22 13:40:07 -07:00 
						 
				 
			
				
					
						
							
							
								Tim Blasi 
							
						 
					 
					
						
						
						
						
							
						
						
							64e8f93f32 
							
						 
					 
					
						
						
							
							feat(dart/transform): Record property metadata  
						
						... 
						
						
						
						Update the transformer to generate code registering annotations on class
properties, getters, and setters.
Closes  #1800 , #3267 , #4003  
						
						
					 
					
						2015-09-16 08:54:35 -07:00 
						 
				 
			
				
					
						
							
							
								Tim Blasi 
							
						 
					 
					
						
						
						
						
							
						
						
							267121ee17 
							
						 
					 
					
						
						
							
							refactor(dart/transform): Test directive processor using protos  
						
						... 
						
						
						
						Directly test the `NgDepsModel` object created by the
`DirectiveProcessor` rather than string comparing output Dart code. 
						
						
					 
					
						2015-09-15 13:56:44 -07:00 
						 
				 
			
				
					
						
							
							
								Tim Blasi 
							
						 
					 
					
						
						
						
						
							
						
						
							e889ec8335 
							
						 
					 
					
						
						
							
							refactor(dart/transform): Use a protobufs representation during transform  
						
						... 
						
						
						
						To simplify processing and testing in the future, use protobufs to
represent of `.ng_deps.dart` files rather than always dealing
directly in Dart code.
This update does not actually use the protobuf representation, but this
is a step towards moving all phases to parse and use protobufs rather than
Dart code. 
						
						
					 
					
						2015-09-15 08:39:07 -07: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 
						 
				 
			
				
					
						
							
							
								Tim Blasi 
							
						 
					 
					
						
						
						
						
							
						
						
							ef88e0f804 
							
						 
					 
					
						
						
							
							refactor(transformers): extract lifecycle hooks from the interfaces  
						
						
						
						
					 
					
						2015-09-05 01:02:33 +00:00 
						 
				 
			
				
					
						
							
							
								Victor Berchet 
							
						 
					 
					
						
						
						
						
							
						
						
							8302afffb4 
							
						 
					 
					
						
						
							
							refactor(LifecycleEvent): remove LifecycleEvent  
						
						... 
						
						
						
						fixes  #3924 
BREAKING CHANGE
The `lifecycle` configuration for directive has been dropped.
Before
    // Dart
    @Component({lifecycle: const [LifecycleEvent.OnChanges], ...})
    class MyComponent implements OnChanges {
      void onChanges() {...}
    }
    // Typescript
    @Component({lifecycle: [LifecycleEvent.OnChanges], ...})
    class MyComponent implements OnChanges {
      onChanges(): void {...}
    }
    // ES5
    var MyComponent = ng.
    Component({lifecycle: [LifecycleEvent.OnChanges], ...}).
    Class({
      onChanges: function() {...}
    });
After
    // Dart
    @Component({...})
    class MyComponent implements OnChanges {
      void onChanges() {...}
    }
    // Typescript
    @Component({...})
    class MyComponent implements OnChanges {
      onChanges(): void {...}
    }
    // ES5
    var MyComponent = ng
      .Component({...})
      .Class({
        onChanges: function() {
        }
      }); 
					
						2015-09-05 01:02:33 +00:00 
						 
				 
			
				
					
						
							
							
								Tim Blasi 
							
						 
					 
					
						
						
						
						
							
						
						
							46dd5fcbb0 
							
						 
					 
					
						
						
							
							refactor(transform): Remove reflection_entry_points parameter  
						
						... 
						
						
						
						Remove the now unnecessary `reflection_entry_points` parameter from the
Angular 2 transformer.
Support glob syntax for `entry_points`. 
						
						
					 
					
						2015-08-31 13:02:29 -07:00 
						 
				 
			
				
					
						
							
							
								vsavkin 
							
						 
					 
					
						
						
						
						
							
						
						
							d49bc438e8 
							
						 
					 
					
						
						
							
							feat(core): added afterContentInit, afterViewInit, and afterViewChecked hooks  
						
						... 
						
						
						
						Closes  #3897  
					
						2015-08-31 17:16:54 +00:00 
						 
				 
			
				
					
						
							
							
								Misko Hevery 
							
						 
					 
					
						
						
						
						
							
						
						
							551d9a1688 
							
						 
					 
					
						
						
							
							chore(LifecycleEvent): change to PascalCase / rename  
						
						... 
						
						
						
						BREAKING CHANGE
Closes  #3863 
- LifecycleEvent.onInit => LifecycleEvent.OnInit
- LifecycleEvent.onDestroy => LifecycleEvent.OnDestroy
- LifecycleEvent.onChange => LifecycleEvent.OnChanges
- LifecycleEvent.onCheck => LifecycleEvent.DoCheck
- LifecycleEvent.onAllChangesDone => LifecycleEvent.AfterContentChecked
- OnCheck.onCheck() => DoCheck.doCheck()
- OnChange.onChange() => OnChanges.onChanges()
- OnAllChangesDone.onAllChangesDone() => AfterContentChecked.afterContentChecked
Closes  #3851  
						
						
					 
					
						2015-08-27 22:32:21 -07:00 
						 
				 
			
				
					
						
							
							
								Misko Hevery 
							
						 
					 
					
						
						
						
						
							
						
						
							ac3f5106e4 
							
						 
					 
					
						
						
							
							refactor(view): remove hostActions  
						
						... 
						
						
						
						BREAKING CHANGE
Closes  #3396 
Replacement. Either direct DOM access or Renderer in WebWorkers. 
						
						
					 
					
						2015-08-27 22:32:21 -07: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 
						 
				 
			
				
					
						
							
							
								Tim Blasi 
							
						 
					 
					
						
						
						
						
							
						
						
							02d9e18279 
							
						 
					 
					
						
						
							
							chore(transform): Move registrations tests to modules_dart  
						
						... 
						
						
						
						This moves tests which were created in 104302a958e7408ef3e9d2ea591a34e94116ad23
and were not moved in 88a5b8da0fbb81acfa347b788f6479081998c960. 
						
						
					 
					
						2015-08-27 20:54:47 +00:00 
						 
				 
			
				
					
						
							
							
								Jeff Cross 
							
						 
					 
					
						
						
						
						
							
						
						
							8ed22ce6e7 
							
						 
					 
					
						
						
							
							chore: update all import paths  
						
						
						
						
					 
					
						2015-08-25 15:33:23 -07:00 
						 
				 
			
				
					
						
							
							
								Jeff Cross 
							
						 
					 
					
						
						
						
						
							
						
						
							88a5b8da0f 
							
						 
					 
					
						
						
							
							chore(transform): move transform module to modules_dart  
						
						... 
						
						
						
						The build/pure-packages.dart gulp task has also been updated to move the files into the angular2 tree.
Closes  #3729  
						
						
					 
					
						2015-08-24 03:39:07 +00:00