Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ pipeline:
- cd /drone/src/apps
- git clone https://github.com/owncloud/files_primary_s3.git
- cd files_primary_s3
- git checkout update-guzzle-6
- composer install
- cp tests/drone/${OBJECTSTORE}.config.php /drone/src/config
- cd /drone/src
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"nikic/php-parser": "^4.0",
"icewind/streams": "0.7.1",
"swiftmailer/swiftmailer": "^6.0",
"guzzlehttp/guzzle": "^5.3",
"guzzlehttp/guzzle": "^6.3",
"league/flysystem": "^1.0",
"pear/pear-core-minimal": "^v1.10",
"interfasys/lognormalizer": "^v1.0",
Expand Down
209 changes: 143 additions & 66 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/private/Files/Storage/DAV.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@

use Exception;
use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\Message\ResponseInterface;
use OC\Files\Filesystem;
use OC\Files\Stream\Close;
use Icewind\Streams\IteratorDirectory;
Expand All @@ -50,6 +49,7 @@
use Sabre\HTTP\ClientHttpException;
use Sabre\DAV\Exception\InsufficientStorage;
use OCA\DAV\Connector\Sabre\Exception\Forbidden;
use Psr\Http\Message\ResponseInterface;

/**
* Class DAV
Expand Down
Loading