This repository has been archived by the owner on Apr 13, 2022. It is now read-only.
Commits
master
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Commits on Oct 21, 2020
Commits on Oct 5, 2020
Commits on Jun 5, 2020
Commits on Jun 4, 2020
Commits on May 24, 2020
Commits on May 23, 2020
-
-
chore(ci): move over to CircleCi config
This commit gets rid of all references to Travis and, belatedly, Jenkins. Now all CI is done on CircleCI and releases are run locally. The CI no longer updates the docs and code.angularjs.org for jobs that are not on the `master` branch. During releases, the docs and code should be uploaded manually.
Commits on May 22, 2020
Commits on Nov 19, 2019
Commits on Nov 7, 2019
-
fix(angular.merge): do not merge __proto__ property
By blocking `__proto__` on deep merging, this commit prevents the `Object` prototype from being polluted.
Commits on Mar 11, 2019
Commits on Feb 27, 2019
Commits on Feb 4, 2019
Commits on Jan 17, 2019
Commits on Dec 11, 2018
-
test(ngAnimate): ensure that
blockTransitions
can be spied uponPreviously the test was assuing that this function was attached to the window, which is not the case in production, nor in the isolated module tests.
-
chore(modules): execute modules unit tests in one karma run
SauceLabs is struggling to keep connecting and disconnecting for each of the modules unit test runs. This commit puts most of the module tests into IIFEs so that they can be run in one go. * ngMock is still tested separately since unlike the other tests it doesn't want to have a pre-built version of ngMock available. * ngAnimate is still tested separately because it does some funny things with globals that were difficult to isolate in the main modules test run.
Commits on Dec 10, 2018
Commits on Nov 20, 2018
-
fix(interpolate): do not create directives for constant media URL att…
…ributes By creating attribute directives that watch the value of media url attributes (e.g. `img[src]`) we caused a conflict when both `src` and `data-src` were appearing on the same element. As each directive was trying to write to the attributes on the element, where AngularJS treats `src` and `data-src` as synonymous. This commit ensures that we do not create create such directives when the media url attribute is a constant (no interpolation). Because of this (and because we no longer sanitize URLs in the `$attr.$set()` method, this commit also updates `ngHref` and `ngSrc` to do a preliminary sanitization of URLs in case there is no interpolation in the attribute value. Fixes #16734
Commits on Oct 31, 2018
Commits on Oct 4, 2018
Commits on Sep 7, 2018
Commits on Jun 22, 2018
-
chore(docs-app): ensure ToC links contain the path
Without the path the link is always pointing to the root page, rather than the current page, which means that copying the link address or opening the page in a new tab is broken. Closes #16608