Skip to content

Commit

Permalink
release: 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Dec 5, 2024
1 parent 8c36626 commit 3999d98
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
24 changes: 15 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,42 @@ All notable changes to this project will be documented in this file.

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).

## 1.3.0
## [1.4.0] - 2024-12-05

### Added

- 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)
- 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)
- Expand [`voku/httpful`](https://github.com/guzzle/guzzle) support to also include `^8.0`

## [1.3.0] - 2024-12-04

### Added

- 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))
- 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))

### Changed

- Bump minimum supported PHP version to 8.2

## 1.2.0
## [1.2.0] - 2024-03-06

### Added

- 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)
- 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))

## 1.1.1
## [1.1.1] - 2024-03-04

### Changed

- Bump minimum supported PHP version to 8.1

## 1.1.0
## [1.1.0] - 2024-03-04

### Added

- 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)
- 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))

## 1.0.0
## [1.0.0] - 2023-03-27

### Added

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Successful discovery requires the presence of a compatible implementation in the

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

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

The following mock implementations are also available:
Expand Down
2 changes: 1 addition & 1 deletion src/Implementations/Psr18/Clients.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public static function candidates(): CandidatesCollection

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

Expand Down

0 comments on commit 3999d98

Please sign in to comment.