Skip to content

Commit 3999d98

Browse files
committed
release: 1.4.0
1 parent 8c36626 commit 3999d98

File tree

3 files changed

+18
-12
lines changed

3 files changed

+18
-12
lines changed

CHANGELOG.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,36 +4,42 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## 1.3.0
7+
## [1.4.0] - 2024-12-05
88

99
### Added
1010

11-
- Support [`guzzlehttp/guzzle` package](https://github.com/guzzle/guzzle) discovery for `^8.0`by [\@aidan-casey](https://github.com/aidan-casey) in [\#6](https://github.com/psr-discovery/http-client-implementations/pull/6)
12-
- Support [`nimbly/shuttle` package](https://github.com/nimbly/Shuttle) discovery by [\@evansims](https://github.com/evansims) in [\#7](https://github.com/psr-discovery/http-client-implementations/pull/7)
11+
- Expand [`voku/httpful`](https://github.com/guzzle/guzzle) support to also include `^8.0`
12+
13+
## [1.3.0] - 2024-12-04
14+
15+
### Added
16+
17+
- Expand [`guzzlehttp/guzzle`](https://github.com/guzzle/guzzle) support to also include `^8.0`[\@aidan-casey](https://github.com/aidan-casey) ([\#6](https://github.com/psr-discovery/http-client-implementations/pull/6))
18+
- Add [`nimbly/shuttle`](https://github.com/nimbly/Shuttle) discovery — [\@evansims](https://github.com/evansims) ([\#7](https://github.com/psr-discovery/http-client-implementations/pull/7))
1319

1420
### Changed
1521

1622
- Bump minimum supported PHP version to 8.2
1723

18-
## 1.2.0
24+
## [1.2.0] - 2024-03-06
1925

2026
### Added
2127

22-
- Support [the Joomla HTTP Package](https://github.com/joomla-framework/http) by [\@kernusr](https://github.com/kernusr) in [\#5](https://github.com/psr-discovery/http-client-implementations/pull/5)
28+
- Add [`joomla/http`](https://github.com/joomla-framework/http) discovery — [\@kernusr](https://github.com/kernusr) ([\#5](https://github.com/psr-discovery/http-client-implementations/pull/5))
2329

24-
## 1.1.1
30+
## [1.1.1] - 2024-03-04
2531

2632
### Changed
2733

2834
- Bump minimum supported PHP version to 8.1
2935

30-
## 1.1.0
36+
## [1.1.0] - 2024-03-04
3137

3238
### Added
3339

34-
- Support [Symfony 7](https://symfony.com/7) components by [\@JanMikes](https://github.com/JanMikes) in [\#4](https://github.com/psr-discovery/http-client-implementations/pull/4)
40+
- Expand [`symfony/http-client`](https://symfony.com/7) support to also include `^7.0`[\@JanMikes](https://github.com/JanMikes) ([\#4](https://github.com/psr-discovery/http-client-implementations/pull/4))
3541

36-
## 1.0.0
42+
## [1.0.0] - 2023-03-27
3743

3844
### Added
3945

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Successful discovery requires the presence of a compatible implementation in the
2626

2727
The following `psr/http-client-implementation` implementations are discovered and instantiated automatically:
2828

29-
- [guzzlehttp/guzzle](https://github.com/guzzle/guzzle) ^7.0
29+
- [guzzlehttp/guzzle](https://github.com/guzzle/guzzle) ^7.0 | ^8.0
3030
- [joomla/http](https://github.com/voku/httpful) ^2.0 | ^3.0
3131
- [kriswallsmith/buzz](https://github.com/kriswallsmith/Buzz) ^1.0
3232
- [php-http/curl-client](https://github.com/php-http/curl-client) ^2.1
@@ -35,7 +35,7 @@ The following `psr/http-client-implementation` implementations are discovered an
3535
- [php-http/guzzle7-adapter](https://github.com/php-http/guzzle7-adapter) ^0.1 | ^1.0
3636
- [php-http/socket-client](https://github.com/php-http/socket-client) ^2.0
3737
- [symfony/http-client](https://github.com/symfony/http-client) ^4.3 | ^5.0 | ^6.0 | ^7.0 | ^8.0
38-
- [voku/httpful](https://github.com/voku/httpful) ^2.2
38+
- [voku/httpful](https://github.com/voku/httpful) ^2.2 | ^3.0
3939
- [nimbly/shuttle](https://github.com/nimbly/shuttle) ^1.0
4040

4141
The following mock implementations are also available:

src/Implementations/Psr18/Clients.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public static function candidates(): CandidatesCollection
129129

130130
self::$candidates->add(CandidateEntity::create(
131131
package: 'voku/httpful',
132-
version: '^2.2',
132+
version: '^2.2 | ^3.0',
133133
builder: static fn (string $class = '\Httpful\Client'): object => new $class(),
134134
));
135135

0 commit comments

Comments
 (0)