aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-02-07refactor(testing): split travis end to end tests into separate jobs for ↵Julie
jquery and jqlite Closes #6159
2014-02-07refactor(doc): separate end to end tests into jquery and jqlite filesJulie
2014-02-07chore(testing): switch Jenkins to test e2e only on chromeJulie
End to end tests will continue to be run on Safari and Firefox on Travis. Closes #6187
2014-02-07chore(release): update cdn versionjenkins
2014-02-07docs(changelog): release notes for 1.2.12v1.2.12Matias Niemelä
2014-02-07revert: refactor(mocks): simplify the `inject` implementationIgor Minar
This reverts commit 64d58a5b5292046adf8b28928950858ab3895fcc. For some weird reason this is causing regressions at Google. I'm not sure why and I'm running out of time to investigate, so I'm taking a safe route here and reverting the commit since it's just a refactoring.
2014-02-07docs(contributing): add code of conductBrian Ford
2014-02-06chore(build): Update closure i18n integrationTobias Bosch
Use git repo as source and use q-io instead of q-fs
2014-02-06chore(testing): de-flake a ngHref test for navigating away from the Angular pageJulie
2014-02-06fix($locale): Minor grammar amends for locale_ltKasparas Galdikas
Closes #6164
2014-02-06docs(misc): fix typo in "getting started" docsasif22
changed "building and application" to "building an application" Closes #6156
2014-02-06docs(injector): correct typo in examplesunderls
$provide misused into $provider maybe this should be corrected I think Closes #6146
2014-02-06chore(travis): remove double bower install to test if it's still neededIgor Minar
We did this due to travis-ci/travis-ci#1293 but since it's possible that this hack is not needed, I'm removing it. If it turns out that we do need it still then we should ping the travis issue and revert this commit
2014-02-06fix(mocks): rename mock.animate to ngAnimateMock and ensure it contains all ↵Matias Niemelä
test helper code for ngAnimate Closes #5822 Closes #5917
2014-02-06fix(mocks): remove usage of $animate.flushNext in favour of queingMatias Niemelä
The flushNext method of testing is difficult and highly coupled with the behavior of ngAnimate's $animate workflow. It is much better instead to just queue all $animate animation calls into a queue collection which is available on the $animate service when mock.animate is included as a module within test code.
2014-02-05docs(angular.forEach): add missing space in testFranziskus Domig
Closes #6130
2014-02-05chore(testing): fix Jenkins breakage due to test directory already being presentJulie
2014-02-05refactor(testing): run end to end tests on separate browsers in parallelJulie
2014-02-05chore(testing): run end to end tests on firefox and safari as well as chromeJulie
Update the Travis and Jenkins configs to run protractor tests on Safari and Firefox as well, and make the Travis tests run output XML and turn off color. Fix tests which were failing in Firefox due to clear() not working as expected. Fix tests which were failing in Safari due to SafariDriver not understanding the minus key, and disable tests which SafariDriver has no support for.
2014-02-05chore(end2end): remove old references to the scenario runner and update to ↵Julie
point to protractor
2014-02-05chore(build): remove `MINERR_ASSET` from source mapTobias Bosch
The actual change happened in ng-closure-runner. The change here just includes the new version. Closes #4675
2014-02-05docs(forEach): correct spelling errorHopiu
Closes #6124
2014-02-04chore(ngdoc): fix misspellling of Naturally in sortVersionsNatruallyNicolas Leger
Corrects "sortVersionsNatrually" method name in `ngdoc.js` in "sortVersionsNaturally"
2014-02-04fix(ngMock): return false from mock $interval.cancel() when no argument is ↵Daniel Luxemburg
supplied Closes #6103. Closed #6099.
2014-02-04fix(jqLite): trim HTML string in jqLite constructorCaitlin Potter
jQuery will construct DOM nodes containing leading whitespace. Prior to this change, jqLite would throw a nosel minErr due to the first character of the string not being '<'. This change corrects this behaviour by trimming the element string in jqLite constructor before testing for '<'. Closes #6053
2014-02-04fix($http): ignore xhr.responseType setter exception if value is "json"Caitlin Potter
WebKit added support for the json responseType value on 09/03/2013 https://bugs.webkit.org/show_bug.cgi?id=73648. Versions of Safari prior to 7 are known to throw when setting the value "json" as the response type. Other older browsers implementing the responseType. Other browsers with infrequent update cycles may also be affected. The json responseType value can be ignored if not supported, because JSON payloads are parsed on the client-side regardless. Closes #6115 Closes #6122
2014-02-04docs(log.js): param debugEnabled is a boolean and not a stringGiffenGood
2014-02-04chore(release): be able to release any commitTobias Bosch
The version information is now stored only in the tags. By this we are able to release commits in the past, which have already been tested, so we don't need a code freeze or run tests any more. This is also the first step for letting Travis do the releases in the future. The package.json now contains the new property 'branchVersion' that defines which tags are valid on this branch. Closes #6116
2014-02-04revert: "fix($http): ignore xhr.responseType setter exception if value is ↵Caitlin Potter
"json"" This reverts commit 431bad01835f0294eb159d5b08101d5904828147.
2014-02-04fix($http): ignore xhr.responseType setter exception if value is "json"Caitlin Potter
WebKit added support for the json responseType value on 09/03/2013 https://bugs.webkit.org/show_bug.cgi?id=73648. Versions of Safari prior to 7 are known to throw when setting the value "json" as the response type. Other older browsers implementing the responseType. Other browsers with infrequent update cycles may also be affected. The json responseType value can be ignored if not supported, because JSON payloads are parsed on the client-side regardless. Closes #6115 Closes #6122
2014-02-04docs(CHANGELOG): add breaking change notice for 1.2.9 $http default headers ↵Caitlin Potter
change Add a mention for the slightly breaking change introduced in 1.2.9. Closes #6022
2014-02-04fix(ngResource): don't filter "$"-prefixed properties from ngResource ↵Thomas Belin
requests/responses ngResource no longer filters properties prefixed with a single "$" character from requests or responses, correcting a regression introduced in 1.2.6 (cb29632a) which caused shallowCopy and shallowClearAndCopy to ignore properties prefixed with a single "$". Closes #5666 Closes #6080 Closes #6033
2014-02-04docs($compile): fixed syntax error.Kamil Pekala
"how to" was written twice in a row. Closes #6110
2014-02-04docs($q): fixed grammatical errorJohn Kurlak
"Promises" should be of the possessive form. Closes #6082
2014-02-03refactor(mocks): simplify the implementationIgor Minar
2014-02-03fix(mocks): always call functions injected with `inject` with `this` set to ↵Wes Alvaro
the current spec Currently when a function is injected inside of a test we set the context to undefined which is a bug. Closes #6102
2014-02-03chore(Gruntfile.js, package.json): use load-grunt-tasks and move ↵gdi2290
grunt-contrib-jshint into devDependencies Closes #6085
2014-02-03style(License): update copyright yearPatrickJS
Closes #6090
2014-02-03chore(ngClass): remove debugger statement from an e2e testIgor Minar
2014-02-03chore(release): update cdn versionjenkins
2014-02-03chore(release): start v1.2.12 (1.2.12)jenkins
2014-02-03chore(release): cut v1.2.11 releasev1.2.11jenkins
2014-02-03docs(changelog): release notes for 1.2.11Tobias Bosch
2014-02-03fix(ngResource): don't append number to '$' in url param value when encoding URICaitlin Potter
Previously, if a URL parameter value included a $, it would replace the dollar sign with a literal '$1' for mysterious reasons. Using a function rather than a replacement string circumvents this behaviour and produces a more expected result. Closes #6003 Closes #6004
2014-02-03docs(animations): ngClass usage should link to ngClass documentationAlan Rubin
Fixing reference to ngClass documentation Closes #6089
2014-01-31fix(http): make jshint happyIgor Minar
2014-01-31fix($http): update httpBackend to use ActiveXObject on IE8 if necessaryJorg
window.XMLHttpRequest is not always available in IE8 despite it not running in quirks mode, in which case Angular should be using the ActiveXObject instead. Just checking the browser version is taking too many shortcuts. Closes #5677 Closes #5679
2014-01-31docs(guide/templates.css-styling): fix "`{{}}`"Stéphane Reynaud
Replace {{}} to `{{}}` so that "{{}}" is rendered in the HTML page Closes #5950
2014-01-31fix($q): make $q.reject support `finally` and `catch`Lucas Galfasó
Add support for the functions `finally` and `catch` to the promise returned by `$q.reject` Closes #6048 Closes #6076
2014-01-31fix($compile): retain CSS classes added in cloneAttachFn on asynchronous ↵Caitlin Potter
directives Previously, classes added to asynchronous directive elements during the clone attach function would not persist after the node is merged with the template, prior to linking. This change corrects this behaviour and brings it in line with synchronous directives. Closes #5439 Closes #5617