aboutsummaryrefslogtreecommitdiffstats
path: root/build
Commit message (Collapse)AuthorAgeFilesLines
* Update psalm baselineNextcloud-PR-Bot2021-02-161-13/+2
| | | | Signed-off-by: GitHub <noreply@github.com>
* Update psalm baselineNextcloud-PR-Bot2021-02-151-4/+0
| | | | Signed-off-by: GitHub <noreply@github.com>
* Update psalm baselineNextcloud-PR-Bot2021-02-141-14/+0
| | | | Signed-off-by: GitHub <noreply@github.com>
* Update psalm baselineNextcloud-PR-Bot2021-02-101-8/+0
| | | | Signed-off-by: GitHub <noreply@github.com>
* Add .devcontainer to file-checker.phpLukas Reschke2021-02-091-0/+1
| | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Bump karma-viewport from 1.0.7 to 1.0.8 in /builddependabot-preview[bot]2021-02-062-35/+20
| | | | | | | | Bumps [karma-viewport](https://github.com/squidfunk/karma-viewport) from 1.0.7 to 1.0.8. - [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/compare/1.0.7...1.0.8) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* Update psalm baselineNextcloud-PR-Bot2021-01-301-4/+0
| | | | Signed-off-by: GitHub <noreply@github.com>
* Update psalm baselineNextcloud-PR-Bot2021-01-291-2/+1
| | | | Signed-off-by: GitHub <noreply@github.com>
* Update psalm baselineNextcloud-PR-Bot2021-01-231-18/+2
| | | | Signed-off-by: GitHub <noreply@github.com>
* [Security] Bump socket.io from 2.3.0 to 2.4.1 in /builddependabot-preview[bot]2021-01-201-207/+110
| | | | | | | | Bumps [socket.io](https://github.com/socketio/socket.io) from 2.3.0 to 2.4.1. **This update includes a security fix.** - [Release notes](https://github.com/socketio/socket.io/releases) - [Changelog](https://github.com/socketio/socket.io/blob/2.4.1/CHANGELOG.md) - [Commits](https://github.com/socketio/socket.io/compare/2.3.0...2.4.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* Update psalm baselineNextcloud-PR-Bot2021-01-201-14/+1
| | | | Signed-off-by: GitHub <noreply@github.com>
* Update psalm baselineNextcloud-PR-Bot2021-01-131-12/+0
| | | | Signed-off-by: GitHub <noreply@github.com>
* Update psalm baseline to remove obsolete stuffVincent Petry2021-01-121-8/+0
| | | | | | | | | As seen in CI static checks, some blocks in the baseline were not needed any more. This will fix static checks in CI. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* Update psalm baselineNextcloud-PR-Bot2021-01-091-59/+2
| | | | Signed-off-by: GitHub <noreply@github.com>
* Merge pull request #24948 from nextcloud/dependabot/composer/doctrine/dbal-3.0.0Christoph Wurst2021-01-081-2/+13
|\ | | | | Bump doctrine/dbal from 2.12.0 to 3.0.0
| * Bump doctrine/dbal from 2.12.0 to 3.0.0Christoph Wurst2021-01-081-2/+13
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Merge pull request #22992 from nextcloud/password-urlencodeMorris Jobke2021-01-081-1/+2
|\ \ | |/ |/| allow authenticating using urlencoded passwords
| * Update baseline.xmlMorris Jobke2021-01-081-1/+2
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Update psalm baselineNextcloud-PR-Bot2021-01-081-13/+2
|/ | | | Signed-off-by: GitHub <noreply@github.com>
* Update psalm baselineNextcloud-PR-Bot2021-01-061-1/+1
| | | | Signed-off-by: GitHub <noreply@github.com>
* Merge pull request #24907 from nextcloud/fix/license-headers-21-IIChristoph Wurst2021-01-042-1/+1
|\ | | | | Update license headers
| * Update license headersChristoph Wurst2020-12-302-1/+1
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Fix expceted psalm-ocp.xml fileRoeland Jago Douma2020-12-301-0/+1
|/ | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Merge pull request #24903 from nextcloud/enh/psalm-ocpRoeland Jago Douma2020-12-301-0/+249
|\ | | | | Add dedicated baseline for OCP
| * Add dedicated baseline for OCPRoeland Jago Douma2020-12-301-0/+249
| | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | Merge pull request #24895 from ↵Roeland Jago Douma2020-12-304-3/+5
|\ \ | | | | | | | | | | | | nextcloud/make-integration-tests-work-with-both-php-7.3-and-7.4 Make integration tests work with both PHP 7.3 and 7.4
| * | Make integration tests work with both PHP 7.3 and 7.4Daniel Calviño Sánchez2020-12-304-3/+5
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The "Trashbin" and "WebDav" traits were using each other in a circular dependency ("WebDav" -> "Sharing" -> "Provisioning" -> "BasicStructure" -> "Trashbin" -> "WebDav"). In PHP 7.3 this worked fine, but in PHP 7.4 the fatal error "Trait 'WebDav' not found in .../Trashbin.php" was thrown. To solve this now the "TrashBin" trait no longer explicitly uses "WebDav". However, due to this change, the class using "TrashBin" is now expected to also use "WebDav". As the "Trashbin" trait was not needed by most contexts using the "BasicStructure" trait "Trashbin" was removed from it and added only to those contexts that actually need it. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* / Update psalm baselineNextcloud-PR-Bot2020-12-301-7/+2
|/ | | | Signed-off-by: GitHub <noreply@github.com>
* Merge pull request #23958 from ↵dependabot-preview[bot]2020-12-292-207/+263
|\ | | | | | | nextcloud/dependabot/npm_and_yarn/build/node-sass-5.0.0
| * Bump node-sass from 4.14.1 to 5.0.0 in /builddependabot-preview[bot]2020-12-292-207/+263
| | | | | | | | | | | | | | | | Bumps [node-sass](https://github.com/sass/node-sass) from 4.14.1 to 5.0.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.14.1...v5.0.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* | Merge pull request #24533 from ↵Christoph Wurst2020-12-291-92/+35
|\ \ | |/ |/| | | | | nextcloud/dependabot/composer/icewind/streams-0.7.2 Bump icewind/streams from 0.7.1 to 0.7.2
| * Bump icewind/streams from 0.7.1 to 0.7.2Christoph Wurst2020-12-291-92/+35
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | jsunit: Run jsunit with chromium/puppeteer on github actionsJulius Härtl2020-12-292-2183/+1006
|/ | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Update the Psalm baselineChristoph Wurst2020-12-221-22/+7
| | | | | | Some issues were resolved, hence every CI run shows this diff. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Merge pull request #22916 from J0WI/unifiy-links-to-php.netRoeland Jago Douma2020-12-224-331/+331
|\ | | | | Unify links to php.net
| * Unify links to php.netJ0WI2020-09-174-331/+331
| | | | | | | | | | | | Update all links to https://www.php.net/ Signed-off-by: J0WI <J0WI@users.noreply.github.com>
* | Update all license headers for Nextcloud 21Christoph Wurst2020-12-1612-9/+14
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Update psalm baselineNextcloud-PR-Bot2020-12-161-10/+2
| | | | | | | | Signed-off-by: GitHub <noreply@github.com>
* | [Security] Bump ini from 1.3.5 to 1.3.7 in /builddependabot-preview[bot]2020-12-101-6/+7
| | | | | | | | | | | | | | Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7. **This update includes a security fix.** - [Release notes](https://github.com/isaacs/ini/releases) - [Commits](https://github.com/isaacs/ini/compare/v1.3.5...v1.3.7) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* | Merge pull request #24605 from nextcloud/enh/share-deckRoeland Jago Douma2020-12-101-11/+2
|\ \ | | | | | | Add deck share provider support
| * | Update psalm baselineJulius Härtl2020-12-091-11/+2
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | Merge pull request #24247 from nextcloud/bugfix/noid/ocm-providerId-stringJulius Härtl2020-12-091-15/+3
|\ \ \ | |/ / |/| |
| * | Update psalm baselineJulius Härtl2020-12-081-15/+3
| | | | | | | | | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* | | Update psalm baselineNextcloud-PR-Bot2020-12-091-1/+0
| | | | | | | | | | | | Signed-off-by: GitHub <noreply@github.com>
* | | Merge pull request #24486 from nextcloud/feature/noid/phone-number-validationJoas Schilling2020-12-082-4/+65
|\ \ \ | |/ / |/| | Phone number validation and search
| * | Unit tests for searching by phone numberJoas Schilling2020-12-071-1/+1
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | Add a config for default region of phone numbersJoas Schilling2020-12-071-2/+2
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
| * | Add an integration test for the phone search APIJoas Schilling2020-12-072-4/+65
| | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Update psalm baselineRoeland Jago Douma2020-12-071-2/+12
| | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | Add integration tests for getting guest avatarsDaniel Calviño Sánchez2020-12-072-0/+30
| | | | | | | | | | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>