Skip to content

Commit 2b6d7bf

Browse files
authored
Merge pull request #1980 from nextcloud/dependabot/composer/icewind/searchdav-3.2.0
build(deps): Bump icewind/searchdav from 3.1.0 to 3.2.0
2 parents 39b1fb1 + 98d74f8 commit 2b6d7bf

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"fusonic/opengraph": "^2.3.0",
2929
"giggsey/libphonenumber-for-php-lite": "^8.13.48",
3030
"guzzlehttp/guzzle": "^7.9.2",
31-
"icewind/searchdav": "^3.1.0",
31+
"icewind/searchdav": "^3.2.0",
3232
"icewind/streams": "^0.7.7",
3333
"kornrunner/blurhash": "^1.2",
3434
"laravel/serializable-closure": "^1.3.5",

composer.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

composer/installed.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1527,17 +1527,17 @@
15271527
},
15281528
{
15291529
"name": "icewind/searchdav",
1530-
"version": "v3.1.0",
1531-
"version_normalized": "3.1.0.0",
1530+
"version": "v3.2.0",
1531+
"version_normalized": "3.2.0.0",
15321532
"source": {
15331533
"type": "git",
15341534
"url": "https://github.com/icewind1991/SearchDAV.git",
1535-
"reference": "8339181df313361da4daee6cb1c7f144f67f8492"
1535+
"reference": "3865288b6962de33086d4e02ec3584610c32b773"
15361536
},
15371537
"dist": {
15381538
"type": "zip",
1539-
"url": "https://api.github.com/repos/icewind1991/SearchDAV/zipball/8339181df313361da4daee6cb1c7f144f67f8492",
1540-
"reference": "8339181df313361da4daee6cb1c7f144f67f8492",
1539+
"url": "https://api.github.com/repos/icewind1991/SearchDAV/zipball/3865288b6962de33086d4e02ec3584610c32b773",
1540+
"reference": "3865288b6962de33086d4e02ec3584610c32b773",
15411541
"shasum": ""
15421542
},
15431543
"require": {
@@ -1551,7 +1551,7 @@
15511551
"phpunit/phpunit": "^8",
15521552
"psalm/phar": "^4.3"
15531553
},
1554-
"time": "2023-11-14T22:32:04+00:00",
1554+
"time": "2024-11-08T15:54:16+00:00",
15551555
"type": "library",
15561556
"installation-source": "dist",
15571557
"autoload": {
@@ -1572,7 +1572,7 @@
15721572
"description": "sabre/dav plugin to implement rfc5323 SEARCH",
15731573
"support": {
15741574
"issues": "https://github.com/icewind1991/SearchDAV/issues",
1575-
"source": "https://github.com/icewind1991/SearchDAV/tree/v3.1.0"
1575+
"source": "https://github.com/icewind1991/SearchDAV/tree/v3.2.0"
15761576
},
15771577
"install-path": "../icewind/searchdav"
15781578
},

composer/installed.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,9 @@
182182
'dev_requirement' => false,
183183
),
184184
'icewind/searchdav' => array(
185-
'pretty_version' => 'v3.1.0',
186-
'version' => '3.1.0.0',
187-
'reference' => '8339181df313361da4daee6cb1c7f144f67f8492',
185+
'pretty_version' => 'v3.2.0',
186+
'version' => '3.2.0.0',
187+
'reference' => '3865288b6962de33086d4e02ec3584610c32b773',
188188
'type' => 'library',
189189
'install_path' => __DIR__ . '/../icewind/searchdav',
190190
'aliases' => array(),

icewind/searchdav/src/Query/Scope.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class Scope {
5151
* @param int|string $depth
5252
* @param string|null $path
5353
*/
54-
public function __construct(string $href = '', $depth = 1, string $path = null) {
54+
public function __construct(string $href = '', $depth = 1, ?string $path = null) {
5555
$this->href = $href;
5656
$this->depth = $depth;
5757
$this->path = $path;

icewind/searchdav/src/XML/QueryDiscoverResponse.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class QueryDiscoverResponse extends Response {
3838
* @param BasicSearchSchema|null $schema
3939
* @param null|int|string $httpStatus
4040
*/
41-
public function __construct($href, BasicSearchSchema $schema = null, $httpStatus = null) {
41+
public function __construct($href, ?BasicSearchSchema $schema = null, $httpStatus = null) {
4242
if ($httpStatus !== null) {
4343
$httpStatus = (string)$httpStatus;
4444
}

0 commit comments

Comments
 (0)