Skip to content

Commit

Permalink
Merge pull request #1980 from nextcloud/dependabot/composer/icewind/s…
Browse files Browse the repository at this point in the history
…earchdav-3.2.0

build(deps): Bump icewind/searchdav from 3.1.0 to 3.2.0
  • Loading branch information
susnux authored Feb 7, 2025
2 parents 39b1fb1 + 98d74f8 commit 2b6d7bf
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"fusonic/opengraph": "^2.3.0",
"giggsey/libphonenumber-for-php-lite": "^8.13.48",
"guzzlehttp/guzzle": "^7.9.2",
"icewind/searchdav": "^3.1.0",
"icewind/searchdav": "^3.2.0",
"icewind/streams": "^0.7.7",
"kornrunner/blurhash": "^1.2",
"laravel/serializable-closure": "^1.3.5",
Expand Down
14 changes: 7 additions & 7 deletions composer.lock

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

14 changes: 7 additions & 7 deletions composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -1527,17 +1527,17 @@
},
{
"name": "icewind/searchdav",
"version": "v3.1.0",
"version_normalized": "3.1.0.0",
"version": "v3.2.0",
"version_normalized": "3.2.0.0",
"source": {
"type": "git",
"url": "https://github.com/icewind1991/SearchDAV.git",
"reference": "8339181df313361da4daee6cb1c7f144f67f8492"
"reference": "3865288b6962de33086d4e02ec3584610c32b773"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/icewind1991/SearchDAV/zipball/8339181df313361da4daee6cb1c7f144f67f8492",
"reference": "8339181df313361da4daee6cb1c7f144f67f8492",
"url": "https://api.github.com/repos/icewind1991/SearchDAV/zipball/3865288b6962de33086d4e02ec3584610c32b773",
"reference": "3865288b6962de33086d4e02ec3584610c32b773",
"shasum": ""
},
"require": {
Expand All @@ -1551,7 +1551,7 @@
"phpunit/phpunit": "^8",
"psalm/phar": "^4.3"
},
"time": "2023-11-14T22:32:04+00:00",
"time": "2024-11-08T15:54:16+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
Expand All @@ -1572,7 +1572,7 @@
"description": "sabre/dav plugin to implement rfc5323 SEARCH",
"support": {
"issues": "https://github.com/icewind1991/SearchDAV/issues",
"source": "https://github.com/icewind1991/SearchDAV/tree/v3.1.0"
"source": "https://github.com/icewind1991/SearchDAV/tree/v3.2.0"
},
"install-path": "../icewind/searchdav"
},
Expand Down
6 changes: 3 additions & 3 deletions composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,9 @@
'dev_requirement' => false,
),
'icewind/searchdav' => array(
'pretty_version' => 'v3.1.0',
'version' => '3.1.0.0',
'reference' => '8339181df313361da4daee6cb1c7f144f67f8492',
'pretty_version' => 'v3.2.0',
'version' => '3.2.0.0',
'reference' => '3865288b6962de33086d4e02ec3584610c32b773',
'type' => 'library',
'install_path' => __DIR__ . '/../icewind/searchdav',
'aliases' => array(),
Expand Down
2 changes: 1 addition & 1 deletion icewind/searchdav/src/Query/Scope.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class Scope {
* @param int|string $depth
* @param string|null $path
*/
public function __construct(string $href = '', $depth = 1, string $path = null) {
public function __construct(string $href = '', $depth = 1, ?string $path = null) {
$this->href = $href;
$this->depth = $depth;
$this->path = $path;
Expand Down
2 changes: 1 addition & 1 deletion icewind/searchdav/src/XML/QueryDiscoverResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class QueryDiscoverResponse extends Response {
* @param BasicSearchSchema|null $schema
* @param null|int|string $httpStatus
*/
public function __construct($href, BasicSearchSchema $schema = null, $httpStatus = null) {
public function __construct($href, ?BasicSearchSchema $schema = null, $httpStatus = null) {
if ($httpStatus !== null) {
$httpStatus = (string)$httpStatus;
}
Expand Down

0 comments on commit 2b6d7bf

Please sign in to comment.