Skip to content

Commit 4dbec00

Browse files
committed
Update the composer dependencies
1 parent 853cc49 commit 4dbec00

File tree

9 files changed

+228
-99
lines changed

9 files changed

+228
-99
lines changed

wcfsetup/install/files/lib/system/api/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"erusev/parsedown": "^1.8.0",
1616
"ezyang/htmlpurifier": "^4.19",
1717
"guzzlehttp/guzzle": "^7.10.0",
18-
"guzzlehttp/psr7": "^2.8.1",
18+
"guzzlehttp/psr7": "^2.9.0",
1919
"laminas/laminas-diactoros": "^3.8.0",
2020
"laminas/laminas-httphandlerrunner": "^2.13.0",
2121
"minishlink/web-push": "^9.0.4",

wcfsetup/install/files/lib/system/api/composer.lock

Lines changed: 8 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wcfsetup/install/files/lib/system/api/composer/installed.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -549,17 +549,17 @@
549549
},
550550
{
551551
"name": "guzzlehttp/psr7",
552-
"version": "2.8.0",
553-
"version_normalized": "2.8.0.0",
552+
"version": "2.9.0",
553+
"version_normalized": "2.9.0.0",
554554
"source": {
555555
"type": "git",
556556
"url": "https://github.com/guzzle/psr7.git",
557-
"reference": "21dc724a0583619cd1652f673303492272778051"
557+
"reference": "7d0ed42f28e42d61352a7a79de682e5e67fec884"
558558
},
559559
"dist": {
560560
"type": "zip",
561-
"url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
562-
"reference": "21dc724a0583619cd1652f673303492272778051",
561+
"url": "https://api.github.com/repos/guzzle/psr7/zipball/7d0ed42f28e42d61352a7a79de682e5e67fec884",
562+
"reference": "7d0ed42f28e42d61352a7a79de682e5e67fec884",
563563
"shasum": ""
564564
},
565565
"require": {
@@ -575,12 +575,13 @@
575575
"require-dev": {
576576
"bamarni/composer-bin-plugin": "^1.8.2",
577577
"http-interop/http-factory-tests": "0.9.0",
578+
"jshttp/mime-db": "1.54.0.1",
578579
"phpunit/phpunit": "^8.5.44 || ^9.6.25"
579580
},
580581
"suggest": {
581582
"laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
582583
},
583-
"time": "2025-08-23T21:21:41+00:00",
584+
"time": "2026-03-10T16:41:02+00:00",
584585
"type": "library",
585586
"extra": {
586587
"bamarni-bin": {
@@ -648,7 +649,7 @@
648649
],
649650
"support": {
650651
"issues": "https://github.com/guzzle/psr7/issues",
651-
"source": "https://github.com/guzzle/psr7/tree/2.8.0"
652+
"source": "https://github.com/guzzle/psr7/tree/2.9.0"
652653
},
653654
"funding": [
654655
{

wcfsetup/install/files/lib/system/api/composer/installed.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
'name' => '__root__',
44
'pretty_version' => '6.3.x-dev',
55
'version' => '6.3.9999999.9999999-dev',
6-
'reference' => 'd74e0207c194670c943442d3a22a473ff14c53b3',
6+
'reference' => '853cc49fd20719713c3b4bf034f06a8c3c741488',
77
'type' => 'project',
88
'install_path' => __DIR__ . '/../',
99
'aliases' => array(),
@@ -13,7 +13,7 @@
1313
'__root__' => array(
1414
'pretty_version' => '6.3.x-dev',
1515
'version' => '6.3.9999999.9999999-dev',
16-
'reference' => 'd74e0207c194670c943442d3a22a473ff14c53b3',
16+
'reference' => '853cc49fd20719713c3b4bf034f06a8c3c741488',
1717
'type' => 'project',
1818
'install_path' => __DIR__ . '/../',
1919
'aliases' => array(),
@@ -83,9 +83,9 @@
8383
'dev_requirement' => false,
8484
),
8585
'guzzlehttp/psr7' => array(
86-
'pretty_version' => '2.8.0',
87-
'version' => '2.8.0.0',
88-
'reference' => '21dc724a0583619cd1652f673303492272778051',
86+
'pretty_version' => '2.9.0',
87+
'version' => '2.9.0.0',
88+
'reference' => '7d0ed42f28e42d61352a7a79de682e5e67fec884',
8989
'type' => 'library',
9090
'install_path' => __DIR__ . '/../guzzlehttp/psr7',
9191
'aliases' => array(),

wcfsetup/install/files/lib/system/api/guzzlehttp/psr7/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 2.9.0 - 2026-03-10
9+
10+
### Added
11+
12+
- Added nested array expansion support to `MultipartStream`
13+
- Added `@return static` to `MessageTrait` methods
14+
15+
### Changed
16+
17+
- Updated MIME type mappings
18+
819
## 2.8.1 - 2026-03-10
920

1021
### Fixed

wcfsetup/install/files/lib/system/api/guzzlehttp/psr7/composer.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,19 @@
4949
"homepage": "https://sagikazarmark.hu"
5050
}
5151
],
52+
"repositories": [
53+
{
54+
"type": "package",
55+
"package": {
56+
"name": "jshttp/mime-db",
57+
"version": "1.54.0.1",
58+
"dist": {
59+
"url": "https://codeload.github.com/jshttp/mime-db/zip/0a9fd0bfbc87a725ff638495839114e7807b7177",
60+
"type": "zip"
61+
}
62+
}
63+
}
64+
],
5265
"require": {
5366
"php": "^7.2.5 || ^8.0",
5467
"psr/http-factory": "^1.0",
@@ -62,6 +75,7 @@
6275
"require-dev": {
6376
"bamarni/composer-bin-plugin": "^1.8.2",
6477
"http-interop/http-factory-tests": "0.9.0",
78+
"jshttp/mime-db": "1.54.0.1",
6579
"phpunit/phpunit": "^8.5.44 || ^9.6.25"
6680
},
6781
"suggest": {

wcfsetup/install/files/lib/system/api/guzzlehttp/psr7/src/MessageTrait.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ public function getProtocolVersion(): string
2929
return $this->protocol;
3030
}
3131

32+
/**
33+
* @return static
34+
*/
3235
public function withProtocolVersion($version): MessageInterface
3336
{
3437
if ($this->protocol === $version) {
@@ -69,6 +72,9 @@ public function getHeaderLine($header): string
6972
return implode(', ', $this->getHeader($header));
7073
}
7174

75+
/**
76+
* @return static
77+
*/
7278
public function withHeader($header, $value): MessageInterface
7379
{
7480
$this->assertHeader($header);
@@ -85,6 +91,9 @@ public function withHeader($header, $value): MessageInterface
8591
return $new;
8692
}
8793

94+
/**
95+
* @return static
96+
*/
8897
public function withAddedHeader($header, $value): MessageInterface
8998
{
9099
$this->assertHeader($header);
@@ -103,6 +112,9 @@ public function withAddedHeader($header, $value): MessageInterface
103112
return $new;
104113
}
105114

115+
/**
116+
* @return static
117+
*/
106118
public function withoutHeader($header): MessageInterface
107119
{
108120
$normalized = strtolower($header);
@@ -128,6 +140,9 @@ public function getBody(): StreamInterface
128140
return $this->stream;
129141
}
130142

143+
/**
144+
* @return static
145+
*/
131146
public function withBody(StreamInterface $body): MessageInterface
132147
{
133148
if ($body === $this->stream) {

0 commit comments

Comments
 (0)