angular-cn/CHANGELOG.md

43 KiB
Raw Blame History

<a name"2.0.0-alpha.27">

2.0.0-alpha.27 (2015-06-16)

Bug Fixes

  • makes NgModel work in strict mode (eb3586d7)
  • Class factory now adds annotations (bc9e482b)
  • improve type safety by typing refs. (4ae7df27)
  • improve type of TreeNode.children. (c3c2ad14)
  • add types for ts2dart's façade handling. (f3d74185)
  • rename FORWARD_REF to forwardRef in the Angular code base. (c4ecbf0a)
  • declare var global. (13466604)
  • Improve error message on missing dependency (2ccc65d7)
  • compare strings with StringWrapper.equals (633cf636)
  • corrected var/# parsing in template (a4183971, closes #2084)
  • increase the stack frame size for tests (ab8eb4f6)
  • include error message in the stack trace (8d081ea7)
  • Compiler: fix text nodes after content tags (d599fd34, closes #2095)
  • DirectiveMetadata: add support for events, changeDetection (b4e82b8b)
  • JsonPipe: always transform to json (e77710a3)
  • Parser: Parse pipes in arguments (f9745327, closes #1680)
  • ShadowDom: fix emulation integration spec to test all 3 strategies (6e385154, closes #2546)
  • analzyer: removed unused imports (902759e1)
  • benchmarks: Do not apply the angular transformer to e2e tests (cee26826)
  • bootstrap: temporary disable jit change detection because of a bug in handling pure functio (9908def8)
  • broccoli: ensure that inputTrees are stable (928ec1c5)
  • build:
    • ensure that asset files are copied over to example directories (60b97b27)
    • Minify files for angular2.min.js bundle (76797dfb)
    • only pass ts files to ts2dart transpilation. (b5431e4c)
  • bundle: makes interfaces.ts non-empty when transpiled. (83e99fc7)
  • change detect: Fix bug in JIT change detectors (e0fbd4b6)
  • ci: remove non-existent gulp task from test_e2e_dart (1cf807c3, closes #2509)
  • dartfmt: don't break win32 command line limit (617d6931, closes #2420, #1875)
  • diffing-broccoli-plugin: wrapped trees are always stable (7611f92f)
  • docs:
    • order class members in order of declaration (ea27704e, closes #2569)
    • update link paths in annotations (dd23bab3, closes #2475)
    • ensure no duplicates in alias names of docs (05d02fa9)
    • Working generated angular2.d.ts (7141c15e)
  • dynamic_component_loader:
    • Fix for ts2dart issue (bbfb4e1d)
    • implemented dispose for dynamically-loaded components (21dcfc89)
  • element_injector: changed visibility rules to expose hostInjector of the component to its shadow d (c51aef9f)
  • forms:
    • updated form examples to contain select elements (c34cb014)
    • fixed the handling of the select element (f1541e65)
    • fixed the selector of NgRequiredValidator (35197acc)
    • getError does not work without path (a858f6ac)
  • life_cycle: throw when recursively reentering LifeCycle.tick (af35ab56)
  • locals: improved an error message (4eb8c9b2)
  • ng_zone: updated zone not to run onTurnDown when invoking run synchronously from onTurnDo (15dab7c5)
  • npm: update scripts and readme for npm packages. (8923103c, closes #2377)
  • router:
    • ensure that root URL redirect doesn't redirect non-root URLs (73d15250, closes #2221)
    • rethrow exceptions (5782f063, closes #2391)
    • avoid two slash values between the baseHref and the path (cdc7b03e)
    • do not prepend the root URL with a starting slash (e372cc77)
  • selector: select by attribute independent of value and order (9bad70be, closes #2513)
  • shadow_dom: moves the imported nodes into the correct location. (92d56584)
  • shrinkwrap: restore fsevents dependency (833048f3, closes #2511)
  • view: local variables override local variables set by ng-for (d8e27953)

Features

  • allow Type.annotations = Component(...).View(...) (b2c66949, closes #2577)
  • support decorator chaining and class creation in ES5 (c3ae34f0, closes #2534)
  • update ts2dart to 0.6.1. (96137724)
  • adjust formatting for clang-format v1.0.19. (a6e71239)
  • upgrade to clang-format v1.0.19. (1c2abbc6)
  • AstTranformer: add support for missing nodes (da60381c)
  • BaseRequestOptions: add merge method to make copies of options (93596dff)
  • Directive: Have a single Directive.host which mimics HTML (f3b49378, closes #2268)
  • ElementInjector: throw if multiple directives define the same host injectable (6a6b43de)
  • Events: allow a different event vs field name (29c72abc, closes #2272, #2344)
  • FakeAsync: check pending timers at the end of fakeAsync in Dart (53694eb6)
  • Http: add Http class (b68e561c, closes #2530)
  • Parser:
  • View: add support for styleUrls and styles (ac3e624d, closes #2382)
  • benchpress:
  • broccoli:
  • build: add test.unit.dartvm for a faster roundtrip of dartvm tests (46eeee6b)
  • change detect: Throw on attempts to use dehydrated detector (b6e95bb9)
  • diffing-broccoli-plugin: support multiple inputTrees (41ae8e76, closes #1815, #2064)
  • e2e: added e2e tests for forms (552d1ed6)
  • facade: add isMap method (548f3dd5)
  • forms:
    • set exportAs to form for all form related directives (e7e82cbe)
    • export validator directives as part of formDirectives (73bce402)
    • changed forms to capture submit events and fires synthetic ng-submit events (5fc23cae)
    • added hasError and getError methods to all controls (1a4d2374)
  • forms.ts: formInjectables with FormBuilder (a6cb86ba, closes #2367)
  • http: add basic http service (21568106, closes #2028)
  • query:
    • notify on changes (5bfcca2d)
    • adds support for descendants and more list apis. (355ab5b3)
  • router:
    • allow configuring app base href via token (cab1d0ef)
    • add routing to async components (cd95e078)
  • transform: update for Directive.host (591f742d)
  • transformers: updated transformers (e5419feb)
  • view: added support for exportAs, so any directive can be assigned to a variable (69b75b7f)

Breaking Changes

  • By default Query only queries direct children.

(355ab5b3) * Before

@Directive({
  hostListeners: {'event': 'statement'},
  hostProperties: {'expression': 'hostProp'},
  hostAttributes: {'attr': 'value'},
  hostActions: {'action': 'statement'}
})

After

@Directive({
  host: {
    '(event)': 'statement',
    '[hostProp]': 'expression'  // k & v swapped
    'attr': 'value',
    '@action': 'statement'
  }
})

(f3b49378) * no longer cache ref

(e77710a3)

<a name"2.0.0-alpha.26">

2.0.0-alpha.26 (2015-06-03)

Bug Fixes

  • format a file that slipped in. (471a1b6d)
  • fix clang errors (01fb8e66)
  • ShadowCss: keyframes tests failing in Safari (4c8e11a5, closes #2283)
  • Tools: Moves files out of dart2js/**/web. (40150379)
  • ast: fix the size of a list in _evalListCache (0387221d)
  • benchpress:
  • binding: unbalanced curly brackets in documentation (a80921b4)
  • browser_adapter:
    • HTMLStyleElement.innerText does not trigger creation of CSS rules (Firefox) (b2a24e02)
    • event creation fails (IE11, Firefox) (665ccafd)
    • element.getBoundingClientRect fails when element not in DOM (IE11) (f35dbb99)
    • element.matches only available with prefix (IE11) (a393f84f)
    • assigning null to document.title sets the title to "null" (IE11, Firefox) (92c2c33a)
  • build:
    • remove nonexistant dart format task from gulpfile (f74d7727)
    • make dart formatter errors more readable (31b66878)
    • also run ts tests in node. (05774f6c)
  • collection:
    • iterator on Map keys is not supported (Safari) (4b98ed11, closes #2096)
    • new Map(iterable) is not supported (Safari) (d308e55e)
    • new Set(iterable) is not supported (IE11, Safari) (57b88ec2, closes #2063)
  • core: resurrect OnChange interface (d48fae35)
  • dartdocs: Hide duplicate exports from guinness. (17e1d7f1)
  • deps: Update clang-format to 1.0.14. (15f1eb28)
  • di: allow @Inject(…) to work in dart2js and dynamic reflection (4a3fd5e8, closes #2185)
  • docs: generate d.ts file only for angular2/angular2. (0a0b84a0)
  • dom:
    • allow to correctly clone document fragments (2351896c)
    • querySelectorAll should only query child nodes (307011a9)
  • example: unused event (f83f1ee0)
  • examples: update form example to use NgIf (1ad65582)
  • facade:
    • Make PromiseWrapper#all semantics equivalent (22f59252)
    • Fix bug in TS indexOf (cda35101)
  • fake_async: fixed fakeAsync to throw instead of crashing on cjs (5c53cf64)
  • forms: disabled form tests on cjs until fakeAsync is fixed (cd52d8a3)
  • gulp: prevent duplicate error messages (381d4cb3, closes #2021)
  • injectable: add missing @Injectables annotations (0c7f05f5, closes #2173)
  • package.json: add reflect-metadata to package.json (60801777, closes #2170)
  • render:
    • only look for content tags in views that might have them. (ba7956f5, closes #2297)
    • dont store a document fragment as bound element (24bc4b66)
  • router: event.defaultPrevented is not reliable (IE11) (2287938f)
  • selector: support multiple :not clauses (62a95823, closes #2243)
  • test:
    • clang formatting errors (05d66bba)
    • solve CSS discrepancies across browsers (fb42d590, closes #2177)
    • use a not expandable CSS rule in ShadowCSS spec (Firefox) (588fbfd8, closes #2061)
    • adds longer timers for NgZone and PromisePipe tests (IE11) (661a0479, closes #2055)
    • native shadow DOM is required (IE11, Firefox) (9802debf)
    • function.name is not available (IE11) (5103f080)
  • tests: disable mobile emulation so benchmarks run on current chrome (b071b66b)
  • types: parametrize QueryList. (552985e3)

Features

  • add support for the safe navigation (aka Elvis) operator (a9be2ebf, closes #791)
  • Directive: convert properties to an array (d7df853b, closes #2013)
  • ElementInjector: support an arbitrary number of bindings (b1c9bf14, closes #1853)
  • OpaqueToken: now a const constructor (c571b269)
  • RegExpWrapper: implement a test method (551586ce)
  • benchpress: Add extension for ff metrics reporting (b390f441, closes #1976)
  • binding: throw on binding to a blank alias (ec2d8cc2, closes #2068)
  • broccoli: add incremental dartfmt plugin (e5d06e47, closes #2211)
  • change_detection: added onInit and onCheck hooks (c39c8ebc)
  • change_detection.ts: export PipeFactory (93f464a1, closes #2245)
  • core:
    • added support for detecting lifecycle events based on interfaces (30b6542f)
    • added missing interfaces for onDestroy and onAllChangesDone lifecycle events (2b6a6530)
  • di: added optional self parameter to Parent, Ancestor, and Unbounded (34cfc9f4)
  • dom: add setData() method. (6f3368ef)
  • facade: add read/write access to global variables (cdf791f0)
  • fakeAsync: flush the microtasks before returning (c7572ac1, closes #2269)
  • form: implemented an imperative way of updating the view by updating the value of a co (652ed0cf)
  • forms:
    • added support for status classes (3baf815d)
    • added touched and untouched to Control (ec3a7828)
    • renamed control, control-group into ng-control and ng-control-group (f543834b)
    • changed the selector of TemplatdrivenFormDirective to match (6bef1c41)
    • added ng-model (559f54e9)
    • implemented template-driven forms (a9d6fd9a)
  • key_event: alias esc to escape (10bc7e94, closes #2010)
  • reflector: added a method to get type's interfaces (34d75e89)
  • render: re-export render and export DirectiveResolver (662da0d7, closes #2026)
  • router: add the router bundle to the bundle task. (05fa9bc9)
  • router.js:
  • test:
  • test_lib:
  • tests: add TestComponentBuilder (c32dbad7, closes #1812)
  • transformers: added support for lifecycle events (f19970a4)
  • view:
    • introduce free embedded views (5030ffb0)
    • add AppViewListener interface (75578f41)

Breaking Changes

  • Renderer.detachFreeHostView was renamed to Renderer.detachFreeView
  • DomRenderer.getHostElement() was generalized into DomRenderer.getRootNodes()

(5030ffb0) * now a const constructor

(c571b269) * Before

@Directive(properties: {
  'sameName': 'sameName',
  'directiveProp': 'elProp | pipe'
})

After

@Directive(properties: [
  'sameName',
  'directiveProp: elProp | pipe'
])

(d7df853b)

<a name"2.0.0-alpha.25">

2.0.0-alpha.25 (2015-05-21)

Bug Fixes

  • don't call onAllChangesDone on checkNoChanges (a664f5a6)
  • XHRImpl: fix errors, add a spec (91ccc9af, closes #1715)
  • browser: template elements should have content imported instead of the element itself. (c9ab8e4b)
  • di: changed host and view injector to respect visibility (705ee46f)
  • element_injector:
    • fixed element injector to inject view dependencies into its components (b6b52e62)
    • fixed element injector to resolve dependencies of regular services (28c2b8f4)
  • forms: changed forms to create only one value accessor instead of always creating Defau (30c3e5a8)
  • gulp: continue watching when tasks throw (ac28ac32, closes #1915)
  • router: router link should navigate to non-base Url. (c4528321)
  • test_lib: fixes nested beforeEach. (826af401)

Features

  • CD: add support for === and !== (0ae89ac0)
  • PromisePipe: remove ref onDestroy (4afd2b41)
  • di: changed toFactory to support dependency annotations (f210c41c)
  • forms: migrated forms to typescript (00c3693d)
  • injector: support forwardRef in toAlias (fed86fc8)

<a name"2.0.0-alpha.24">

2.0.0-alpha.24 (2015-05-19)

Bug Fixes

  • Compiler: add an error when a directive is null or undefined (25cd6e43, closes #1908)
  • benchmark:
    • change If for NgIf (cdbb2473)
    • fixes ng-if ng-for renaming for templates. (38926f71)
  • build: npm shrinkwrap to pick up changed SHA1. (04a9eb88)
  • directives: fix import path (c20060d2)
  • errors: require passing stack traces explicitly in ng2 own code (8ab77353)
  • examples: prefix directives with Ng (0e82970a)
  • facade: MapWrapper.createFromPairs (af9dcad8, closes #1640)
  • ng1 benchmarks: revert *ng-if to ng-if (909233f7)
  • router:
    • use appRootComponentToken to get root route configs (791caf00, closes #1947)
    • improve route matching priorities (5db89071)
    • generate links for router-link with baseHref (390cfb79)
    • sort possible routes by cost (17392f66)
  • tree-differ: treat symlinks to deleted paths as removals (aad57954, closes #1961)

Features

  • allow for forward references in injection (1eea2b25, closes #1891)
  • change_detection:
    • json pipe (98603824, closes #1957)
    • uppercase and lowercase pipes (7a4a6353)
    • implemented change detection that can be configured with pregenerated change det (08f21dbf)
  • compiler:
  • di:
    • added hostInjector and viewInjector to the Directive annotation (b066b8d1)
    • removed publishAs (3a53f679)
  • element_injector: allow @Optional for ProtoViewRef (bb2eda2d)
  • errors: preserve stack traces of user exceptions in Dart (b6f29b44)
  • facade: toUpperCase and toLowerCase (557d54b3)
  • fakeAsync: allow simulating the passage of time (0f002a5b)
  • forms: improved error messages (11e43851, closes #1839)
  • pipe: reexported pipes to genereate docs (155b1e2b)

Breaking Changes

  • AppViewManager.createInPlaceHostView is replaced by AppViewManager.createRootHostView (for bootstrap) and AppViewManager.createFreeHostView (for imperative components).

The later creates new host elements that are not attached anywhere. To attach them, use DomRenderer.getHostElement(hostviewRef) to get the host element.

Closes #1920

(421d8916)

    • renames DirectiveMetadataReader into DirectiveResolver and removes src/core/compiler/directive_metadata.

Fixes #1712 Fixes #1713 (ecb06801)

<a name"2.0.0-alpha.23">

2.0.0-alpha.23 (2015-05-12)

Bug Fixes

  • change_detection: updated dynamic change detector not to mutate when throwing (d717529e, closes #1762)
  • dart: Remove unused imports. (4ce0d5e0)
  • forms: export directives as const in Dart (5036086f, closes #1283)
  • gulpfile: fixed test.unit.dart to format dart code before running test (92d6aa1f)
  • location: dartium does not like pushState with null. (c2a42d5d)
  • router:
    • add baseUrl to relative paths, but not absolute. (a5741541, closes #1783)
    • reuse common parent components (ac80df09)
    • router-link works without params (77d1fc14)
    • strip base href from URLs when navigating (853d1de6)
  • test_lib: spy funcs should match null arguments (84dc6ae7)
  • transformer: remove classDefParser in favor of hardcoded strings to speed up build (01d5c295)
  • view: fixed ProtoViewFactory to get all property bindings (7f976381)

Features

  • PromisePipe: add pipe for promises (74987585)
  • VmTurnZone: Rework the implementation to minimize change detection runs (e8a6c95e)
  • change_detection.js: export null pipes (4b62a722, closes #1624)
  • compiler:
    • added support for host actions (f9c1de46)
    • allow setting attributes on a host element (51839ca6, closes #1402)
  • di:
    • support type literals in DI (358a6750)
    • expose parent injector (2185e7ce)
    • components can self-publish via publishAs (1a0da11e)
  • directives: export collection of core directives (a5638a94, closes #1524)
  • dom: add getBaseHref method (05219a54)
  • facade: add equals method to StringMapWrapper (aff85b50)
  • gulpfuile: added watch.js.dev (3256ff1c)
  • lang: support const expressions in TS/JS and Dart (4665726f, closes #1796)
  • material:
  • view: allow to transplant a view into a ViewContainer at another place. (4f3433b5, closes #1492)

Breaking Changes

VmTurnZone has been renamed to NgZone.

  • The public API has not chnanged,
  • The "outer" zone is now named "mount" zone (private to NgZone).

(e11c2054) * A collection of all the form directives is exported under formDirectives while those were previously available under FormDirectives.

Closes #1804

(229e770a)

<a name"2.0.0-alpha.22">

2.0.0-alpha.22 (2015-05-07)

Bug Fixes

  • brocolli: escape special regexp characters when building regexps (a58c9f83, closes #1721, #1752)
  • build:
    • build the broccoli tools with correct typescript version. (6bba289a)
    • use correct tsd command to get typings at requested versions (1205f54d)
    • revert typescript upgrade which broke the build. (b5032fd3)
    • refer to newest version of hammerjs typings (a7a94636)
  • bundle: update the bundle config to point to rx.js (cf322130)
  • change_detector: ensure that locals are only used when implicit receiver (d4925b61, closes #1542)
  • compiler:
    • clone templates before compiling them (9e8d31d5, closes #1058)
    • changed the compiler to set up event listeners and host properties on host view (e3c11045, closes #1584)
    • only sets viewDefinition absUrl if the view has either a template or templateUrl (3d625463, closes #1326, #1327)
  • decorators:
    • incorrect annotation to decorator adapter (b0c735f7)
    • fixed decorators (49777648)
    • fixes decorator reflection. (be7504d4)
    • updates missing benchmark and fixes typo. (87dcd5eb)
  • decorators.es6: export Directive decorator (93c331d1, closes #1688)
  • di: improve error messages for invalid bindings (ee1b574b, closes #1515, #1573)
  • docs: fix broken docs test after addition of .ts extension to dgeni regex. (62bf777e)
  • exception_handler: log errors via console.error (ead21c91)
  • formatter: point to the newest clang-format (51c47792)
  • router:
    • fix for leading slash in dart (c9cec600)
    • navigate on popstate event (2713b787)
    • throw if config does not contain required fields (259f872c)
    • infer top-level routing from app component (46ad3552, closes #1600)
    • use lists for RouteConfig annotations (4965226f)
  • view: changed view manager to hydrate change detector after creating directives (c1579222)

Features

  • benchmark: added an implementation of the tree benchmark in React (e4342743)
  • benchmarks: Add basic dart transformer benchmarks. (1864f60a)
  • decorators:
    • adds decorator versions of DI annotations. (457c15cd)
    • adds support for parameter decorators. (f863ea0d)
    • adds decorators to be used by TS and Babel transpiled apps. (fb67e373)
  • dom: add location and history as DOM-like APIs. (f356d033)
  • material: add prototype dialog component w/ demo. (f88c4b77)
  • router:

Breaking Changes

  • Previously, Directive was the abstract base class of several directives. Now, Directive is the former Decorator, and Component inherits from it.

(f75a50c1)

  • A dynamic component is just a component that has no @View annotation… (8faf6364)

2.0.0-alpha.21 (2015-04-27)

Features

  • dart/transform: Dedup getters, setters, & methods (15376a6d)
  • facade: add isType method (e617ca63)
  • parser: support === and !== operators (afe0e454, #1496, #1500)
  • router: add initial implementation (1b2754da)
  • view: reimplemented property setters using change detection (8ccafb05)

Performance Improvements

  • benchmarks:
    • benchmark that measure cost of dynamic components (427f0d02)
    • benchmark measuring cost of decorators (fixes #1479) (9fc9d535)

Other (malformed commit messages)