Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-01-25[Security] Bump bower from 1.8.4 to 1.8.8 in /builddependabot[bot]
Bumps [bower](https://github.com/bower/bower) from 1.8.4 to 1.8.8. **This update includes security fixes.** - [Release notes](https://github.com/bower/bower/releases) - [Changelog](https://github.com/bower/bower/blob/master/CHANGELOG.md) - [Commits](https://github.com/bower/bower/compare/v1.8.4...v1.8.8) Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-11-05Bump node-sass from 4.9.4 to 4.10.0 in /builddependabot[bot]
Bumps [node-sass](https://github.com/sass/node-sass) from 4.9.4 to 4.10.0. - [Release notes](https://github.com/sass/node-sass/releases) - [Changelog](https://github.com/sass/node-sass/blob/master/CHANGELOG.md) - [Commits](https://github.com/sass/node-sass/compare/v4.9.4...v4.10.0) Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-10-25Bump karma from 2.0.4 to 3.1.1 in /builddependabot[bot]
Bumps [karma](https://github.com/karma-runner/karma) from 2.0.4 to 3.1.1. - [Release notes](https://github.com/karma-runner/karma/releases) - [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md) - [Commits](https://github.com/karma-runner/karma/compare/v2.0.4...v3.1.1) Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-10-24Fix jsdocs build on server repoJulius Härtl
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2018-10-22Bump node-sass from 4.9.3 to 4.9.4 in /builddependabot[bot]
Bumps [node-sass](https://github.com/sass/node-sass) from 4.9.3 to 4.9.4. - [Release notes](https://github.com/sass/node-sass/releases) - [Changelog](https://github.com/sass/node-sass/blob/master/CHANGELOG.md) - [Commits](https://github.com/sass/node-sass/compare/v4.9.3...v4.9.4) Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-09-03Bump node-sass from 4.9.2 to 4.9.3 in /builddependabot[bot]
Bumps [node-sass](https://github.com/sass/node-sass) from 4.9.2 to 4.9.3. - [Release notes](https://github.com/sass/node-sass/releases) - [Changelog](https://github.com/sass/node-sass/blob/master/CHANGELOG.md) - [Commits](https://github.com/sass/node-sass/compare/v4.9.2...v4.9.3) Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-07-21Bump karma configJohn Molakvoæ (skjnldsv)
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2018-05-30Merge pull request #9680 from ↵John Molakvoæ
nextcloud/dependabot/npm_and_yarn/build/karma-viewport-tw-1.0.2 Update karma-viewport requirement to ^1.0.2 in /build
2018-05-30Update karma-viewport requirement to ^1.0.2 in /builddependabot[bot]
Updates the requirements on [karma-viewport](https://github.com/squidfunk/karma-viewport) to permit the latest version. - [Release notes](https://github.com/squidfunk/karma-viewport/releases) - [Changelog](https://github.com/squidfunk/karma-viewport/blob/master/CHANGELOG) - [Commits](https://github.com/squidfunk/karma-viewport/commits/1.0.2) Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-05-30Update karma requirement to ^2.0.2 in /builddependabot[bot]
Updates the requirements on [karma](https://github.com/karma-runner/karma) to permit the latest version. - [Release notes](https://github.com/karma-runner/karma/releases) - [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md) - [Commits](https://github.com/karma-runner/karma/commits/v2.0.2) Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-05-30Merge pull request #9685 from ↵Julius Härtl
nextcloud/dependabot/npm_and_yarn/build/node-sass-approx-4.9.0 Update node-sass requirement to ~4.9.0 in /build
2018-05-30Update node-sass requirement to ~4.9.0 in /builddependabot[bot]
Updates the requirements on [node-sass](https://github.com/sass/node-sass) to permit the latest version. - [Release notes](https://github.com/sass/node-sass/releases) - [Changelog](https://github.com/sass/node-sass/blob/master/CHANGELOG.md) - [Commits](https://github.com/sass/node-sass/commits/v4.9.0) Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-05-30Update jsdoc requirement to ~3.5.5 in /builddependabot[bot]
Updates the requirements on [jsdoc](https://github.com/jsdoc3/jsdoc) to permit the latest version. - [Release notes](https://github.com/jsdoc3/jsdoc/releases) - [Changelog](https://github.com/jsdoc3/jsdoc/blob/master/CHANGES.md) - [Commits](https://github.com/jsdoc3/jsdoc/commits/3.5.5) Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-05-28Limit Sinon version to 5.0.7 at mostDaniel Calviño Sánchez
When using fake servers with Sinon.JS, the JavaScript test framework, the XHR objects are also fake. In Sinon 5.0.8 the "setRequestHeader" of XMLHttpRequest was modified to normalize the header values (as requested by the spec), but since then only string values are accepted; null or integer values can no longer be passed to "setRequestHeader", as it expects the "replace" function to be available in the object. However, in the tests null and integer values are passed to "setRequestHeader", which causes them to fail. Both Firefox and Chromium accept passing non-string values to their "setRequestHeader" implementation, and it is done, for example, in davclient.js; it is not clear yet whether Sinon got too restrictive or the code calling "setRequestHeader" was too loose. Given that davclient.js is an external dependency, as a temporary measure Sinon version is forced to be 5.0.7 at most until either Sinon or davclient.js are updated. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2017-12-14Add unit tests for the navigation bar slide gestureDaniel Calviño Sánchez
The slide gesture is enabled or disabled depending on the width of the browser window. In order to easily control that width the karma-viewport plugin is now used in the unit tests. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2017-04-25Fix JS unit failure because of Jasmine 2.6 and the phantomjs launcherMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-24also install sinonMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-24Update karma, use sinon from npmVincent Petry
Update karma library and use sinon JS library provided by karma-jasmine-sinon instead of local file. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-01-06Fix js testsRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2016-11-08Bump jstests depsRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2016-06-13Use proper PhantomJS library and run the tests as separate stepMorris Jobke
* add dependency for phantomjs
2015-07-10Update JS unit test libsVincent Petry
Update sinon to 1.15.4. Update karma-jasmine to 0.3.0 Update jasmine to 2.3.4 This brings a bunch of new useful functions for unit testing.
2015-03-04Make sure we use Jasmine 2 for running JS unit testsVincent Petry
2014-03-13added missing packages required to run "karma" and "phantomjs" insidernveach
"autotest-js"
2014-01-21adding code coverage supportThomas Müller
2014-01-16Added Javascript unit testsVincent Petry
- added karma utility to run jasmine unit tests - added Sinon library (for stubs/mocks/fakeserver) - added a few unit tests for core and files - added autotest-js.sh script