Skip to content
Permalink
Branch: master
Commits on Apr 14, 2020
  1. chore(docs.angularjs.org): upgrade Firebase libraries

    gkalpak committed Apr 14, 2020
Commits on Apr 13, 2020
  1. docs(misc/Version Support Status): Minor Typo Fix

    nishantwrp authored and gkalpak committed Apr 12, 2020
    Closes #17012
Commits on Mar 11, 2020
  1. docs(developers): commit message format typo

    samkatakouzinos authored and gkalpak committed Mar 10, 2020
    Any line of the commit message cannot be longer *than* 100 characters!
    
    Closes #17006
Commits on Feb 7, 2020
  1. docs($aria): get the docs working for the service

    chivesrs authored and gkalpak committed Feb 7, 2020
    Closes #16945
Commits on Feb 2, 2020
  1. docs(*): fix spelling errors

    hjung4 authored and gkalpak committed Jan 28, 2020
    Closes #16942
  2. chore(*): fix serving of URI-encoded files on code.angularjs.org

    gkalpak committed Feb 1, 2020
    The files served for the various versions on https://code.angularjs.org/
    are retrieved by a Firebase function from a Firebase Storage bucket
    (where they are deployed to from Travis CI). The files are stored
    exactly as they are named on disk.
    
    It turns out that some of the files have names with special characters
    that get URI-encoded when sent to the Firebase function. For example,
    `input[text].html` becomes `input%5Btext%5D.html`. As a result, the
    actual file cannot be retrieved from the Storage bucket (since the name
    does not match) and `index.html` is returned instead. Apparently, this
    never worked, but nobody noticed or reported it until recently.
    
    An example of a failing URL is:
    https://code.angularjs.org/1.7.9/docs/api/ng/input/input%5Btext%5D
    
    (NOTE: https://docs.angularjs.org/ works correctly, since the files are
    deployed to Firebase hosting directly and not to a Storage bucket.)
    
    This commit fixes the problem by decoding the request path before trying
    to retrieve the corresponding file from the Storage bucket.
    
    Closes #16943
Commits on Jan 14, 2020
  1. docs(angular.errorHandlingConfig): fix typo (wether --> whether)

    thatshubham authored and gkalpak committed Jan 7, 2020
    Closes #16935
  2. docs(angular.copy): fix `getter`/`setter` formatting

    thatshubham authored and gkalpak committed Jan 7, 2020
    Fix the formatting of `getter`/`setter` in the known limitations section
    of the `angular.copy()` docs.
    
    Closes #16934
  3. chore(*): update copyright year to 2020

    AngelKitty authored and gkalpak committed Jan 1, 2020
    Closes #16930
Commits on Nov 19, 2019
  1. docs: add mention to changelog

    petebacondarwin committed Nov 19, 2019
  2. docs: add mention to changelog

    petebacondarwin committed Nov 19, 2019
  3. docs: release notes for 1.7.9

    petebacondarwin committed Nov 19, 2019
Commits on Nov 7, 2019
  1. fix(angular.merge): do not merge __proto__ property

    petebacondarwin committed Nov 7, 2019
    By blocking `__proto__` on deep merging, this commit
    prevents the `Object` prototype from being polluted.
Commits on Jul 24, 2019
  1. chore(saucelabs): switch to latest version of desktop Safari

    gkalpak committed Jul 23, 2019
    The currently latest-1 version of desktop Safari (v12.0) on SauceLabs is
    completely unstable. Switching to the latest version (currently v12.1),
    which works fine.
    
    Closes #16888
Commits on Jul 21, 2019
  1. docs($compile): fix typos and incorrect example

    gkalpak committed Jul 21, 2019
Commits on May 28, 2019
  1. docs(guide/migration): fix typo (misceallenous --> miscellaneous)

    byronigoe authored and gkalpak committed May 24, 2019
    Closes #16876
Commits on May 9, 2019
  1. fix(ngStyle): correctly remove old style when new style value is invalid

    gkalpak committed Apr 27, 2019
    Since d6098ee, old styles were not removed if `newStyles` specified an
    invalid value for the style (e.g. `false`). The assumption was that the
    new style would overwrite the old style value, but using an invalid
    value made browsers ignore the new value and thus keep the old style.
    This would typically happen when guarding a style with a boolean flag;
    e.g.: `ng-style="{backgroundColor: isError && 'red'}"`
    
    This commit essentially revers commit d6098ee, whose main purpose was
    to work around jquery/jquery#4185. The jQuery issue has been fixed in
    3.4.0, so that should not be a problem any more.
    
    Fixes #16860
    
    Closes #16868
Commits on Apr 12, 2019
  1. chore(*): update jQuery from 3.2.1 to 3.4.0

    mgol committed Apr 12, 2019
    This updates jQuery to 3.4.0 to ensure future security fixes won't break it.
    
    Closes #16863
Commits on Mar 26, 2019
  1. docs(DEVELOPERS): remove git revert misleading information

    askhalil authored and gkalpak committed Mar 26, 2019
    Closes #16857
Commits on Mar 22, 2019
  1. chore(*): update copyright year

    JandersonConstantino authored and petebacondarwin committed Mar 13, 2019
Commits on Mar 11, 2019
  1. docs(CHANGELOG): add 1.7.8 release notes

    petebacondarwin committed Mar 11, 2019
Commits on Mar 6, 2019
  1. fix(required): correctly validate required on non-input element surro…

    Narretz committed Mar 6, 2019
    …unded by ngIf
    
    Closes #16830
    Closes #16836
Commits on Mar 5, 2019
  1. docs(guide/di): clarify example description

    kambleaa007 authored and gkalpak committed Feb 16, 2019
    Closes #16833
Commits on Feb 27, 2019
  1. chore(github): update Issue template with LTS info

    petebacondarwin committed Feb 27, 2019
  2. chore(github): update PR template to highlight LTS mode

    petebacondarwin committed Feb 27, 2019
Commits on Feb 4, 2019
  1. chore(scripts): use https for git repo URLs

    petebacondarwin committed Feb 4, 2019
  2. docs(CHANGELOG): update with 1.7.7 release notes

    petebacondarwin committed Feb 4, 2019
  3. docs(RELEASE): store release instructions

    petebacondarwin committed Feb 4, 2019
Commits on Jan 26, 2019
  1. fix(ngRequired): set error correctly when inside ngRepeat and false b…

    Narretz committed Jan 26, 2019
    …y default
    
    Previously, in the required validator, we would read the required setting directly
    from attr.required, where it is set by ngRequired.
    
    However, when the control is inside ngRepeat, ngRequired sets it only after a another digest has
    passed, which means the initial validation run of ngModel does not include the correct required
    setting. (Before commit 0637a21 this would not have been a problem,
    as every observed value change triggered a validation).
    
    We now use the initially parsed value from ngRequired in the validator.
    
    Fixes #16814
    Closes #16820
Commits on Jan 21, 2019
  1. docs(angular.copy): fix list of unsupported types

    Narretz committed Jan 21, 2019
  2. docs(angular.merge): add notes about support and lodash compatibility

    Narretz committed Jan 14, 2019
    Closes #16187
    Closes #14512
  3. docs(angular.copy): list object types / features that are not supported

    Narretz committed Jan 14, 2019
    Closes #5085
    Closes #13193
    Closes #14352
    Closes #15904
    Closes #16055
    Closes #16061
    Closes #16067
Older
You can’t perform that action at this time.