Skip to content
Permalink
Tag: v1.5.6
Commits on May 25, 2016
  1. docs(tutorial/step-9): fix typo in inline link

    petebacondarwin committed May 25, 2016
  2. docs(ngAnimateMock): document how to require mocked service in tests

    htulipe authored and petebacondarwin committed May 25, 2016
    Closes #14668
    Closes #14670
  3. refactor(ngMock): use exactly equal in browserTrigger

    robinboehm authored and Narretz committed Mar 20, 2014
    Closes #6763
  4. style(src/Angular.js): make comment formatting consistent

    gberg1 authored and Narretz committed May 7, 2015
    Corrected formatting errors on lines 258, 695, 696, 1096, 1219, 1451, and 1536 by adding periods at the end of single line comments that were missing them in order to be consistent with the formatting found in the file.
    
    Capitalized the first letter in the first word of the comments on lines 695, 696, 1096, to be consistent with the formatting of the rest of the file.
    
    Added a space after the // in the comment on line 1536 to be consistent with the formatting of the file.
  5. docs(angular.element): note restriction in toggleClass

    Narretz committed May 25, 2016
  6. perf($rootScope): make queues more efficient

    thorn0 authored and petebacondarwin committed Apr 29, 2016
    By using a pointer to the current start of the queue and only clearing
    up the queue storage later, we save lots of time that was spent manipulating
    arrays with `slice`
    
    Closes #14545
  7. docs($provide): document `decorator` method

    ajaygm authored and petebacondarwin committed May 15, 2016
    Closes #14562
  8. docs(ngAnimate): remove unnecessary transition prefixes

    peebeebee authored and petebacondarwin committed May 11, 2016
    We can remove the vendor-prefixing from our docs, since all major browsers
    support these properties, without prefixes.
    
    Closes #14586
  9. docs(tutorial): fix typos

    SirJackovich authored and petebacondarwin committed May 24, 2016
    Closes #14662
    Closes #14663
    Closes #14664
Commits on May 24, 2016
  1. refactor(*): faster check for a string starting with a substring

    petebacondarwin committed May 24, 2016
    Thanks to @spamdaemon for the original PR to make this improvement.
    
    In naive tests on Chrome I got the following results:
    
    ```
                 Matches   Misses
    indexOf      33ms      1494ms
    lastIndexOf  11ms      11ms
    ```
    
    Closes #3711
  2. refactor($route): consolidate route locals processing into a single h…

    petebacondarwin committed May 24, 2016
    …andler
  3. docs(tutorial): update to use `v1.5.x` and best practices

    gkalpak committed Mar 27, 2016
    This is a major re-structuring of the tutorial app's codebase, aiming at applying established best
    practices (in terms of file naming/layout and code organization) and utilizing several new features
    and enhancements (most notably components) introduced in recent versions of Angular (especially
    v1.5).
    
    Apart from the overall changes, two new chapters were introduced: one on components and one on code
    organization.
    
    --
    In the process, several other things were (incidentally) taken care of, including:
    
    * Dependencies were upgraded to latest versions.
    * Animations were polished.
    * Outdated links were updated.
    * The app's base URL was changed to `/` (instead of `/app/`).
    
    BTW, this has been tested with the following versions of Node (on Windows 10) and everything worked
    fine:
    
    * 0.11.16
    * 4.2.6
    * 4.4.2
    * 5.10.0
    * 6.2.0
    
    --
    This was inspired by (and loosely based on) #13834.
    Again, mad props to @teropa for leading the way :)
    
    --
    **Note:**
    The old version of the tutorial, that is compatible with Angular version 1.4 or older, has been
    saved on the `pre-v1.5.0-snapshot` branch of
    [angular-phonecat](https://github.com/angular/angular-phonecat). The `v1.4.x` version of the
    tutorial should be pointed to that branch instead of `master`.
    
    --
    Related to angular/angular-phonecat#326.
    Related to angular/angular-seed#341.
    
    Closes #14416
  4. docs(tutorial): add svg and visio versions of the graffle images

    petebacondarwin authored and gkalpak committed Apr 12, 2016
  5. docs(guide): add svg and visio versions of the graffle images

    petebacondarwin authored and gkalpak committed Apr 12, 2016
  6. docs(images): add svg and visio versions of the graffle image

    petebacondarwin authored and gkalpak committed Apr 12, 2016
Commits on May 23, 2016
  1. perf(ngClass): improve even-odd checking

    marijaselakovic authored and Narretz committed Feb 5, 2016
    This now uses the same technique as ngRepeat.
  2. refactor($sniffer): avoid unnecessary call to substring

    marijaselakovic authored and Narretz committed Feb 5, 2016
  3. docs(guide/Conceptual Overview): clarify service instantiation explan…

    alirezamirian authored and Narretz committed Sep 23, 2015
    …ation
    
    Change a sentence which describes how currencyConverter service is instantiated
  4. docs(input[text]): remove deprecated tt tag

    Narretz committed May 23, 2016
    Closes #14547
  5. chore(docs): add horizontal rules between known issues

    petebacondarwin committed May 23, 2016
  6. chore(docs): fix api.template.html to display git links

    petebacondarwin committed May 23, 2016
  7. docs(error/$compile): add `reqslot` error description

    Xavier Haniquaut authored and petebacondarwin committed May 17, 2016
    Explains what could generate a `reqslot` error.
    
    Closes #14618
  8. chore(docs): add horizontal rules between known issues

    petebacondarwin committed May 23, 2016
  9. docs($interpolate): add known issue about custom interpolation symbols

    petebacondarwin committed May 23, 2016
    Closes #14610
    Closes #6493
  10. fix(ngMessagesInclude): do not compile template if scope is destroyed

    jpekkala authored and petebacondarwin committed May 22, 2016
    Messages imported with `ngMessagesInclude` are loaded asynchronously and
    they can arrive after the ngMessages element has already been removed from DOM.
    
    Previously we tried to compile these messages and that caused a `$compile:ctreq`
    error. Now they are silently ignored if `ngMessagesInclude`'s scope has already
    been destroyed.
    
    Closes #12695
    Closes #14640
  11. docs(contributing): fix the styleguide link

    wesleycho authored and petebacondarwin committed May 23, 2016
    Update the link to Google's JavaScript style guide to the updated version
    
    Closes #14652
Commits on May 22, 2016
  1. fix($animate): don't break on anchored animations without duration

    gkalpak authored and petebacondarwin committed May 21, 2016
    If the `from` element of an animation does not actually have an animation
    then there will be no animation runner on that element. This is possible
    if the element has the `ng-animate-ref` attribute but does not have any
    CSS animations or transitions defined.
    
    In this case, it is not necessary to try to update the host of the
    non-existent runner.
    
    Fixes #14641
    Closes #14645
Commits on May 21, 2016
  1. fix(ngMock): match HTTP request regardless of the order of query params

    deodeveloper authored and petebacondarwin committed Sep 4, 2015
    Closes #12762
  2. docs(toJson): documented the Safari RangeError known issue

    petebacondarwin committed May 21, 2016
    Closes #14221
    Closes #13415
Commits on May 20, 2016
  1. docs(ngMock/$exceptionHandler): fix formatting

    gkalpak committed May 20, 2016
    Too much indentation, made text get formatted as code block.
  2. fix($brower): set the url even if the browser transforms it

    bedag-moo authored and petebacondarwin committed Apr 26, 2016
    While $location expects that $browser stores the URL unchanged, "some browsers" transform the URL
    when setting or defer the acutal update. To work around this, $browser.url() kept the unchanged
    URL in pendingLocation.
    
    However, it failed to update pendingLocation in all code paths, causing
    $browser.url() to sometimes incorrectly report previous URLs, which horribly confused $location.
    
    This fix ensures that pendingLocation is always updated if set, causing url() to report the
    current url.
    
    Fixes #14427
    Closes #14499
Commits on May 18, 2016
  1. docs(misc/contribute): specify node version

    petebacondarwin committed May 18, 2016
  2. docs(ngMock): final installation description fix

    petebacondarwin committed May 18, 2016
Older
You can’t perform that action at this time.