From 2f7681f803bdb090e4931fa792774170f2f4ae60 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 30 May 2022 09:45:29 +0200 Subject: update to 6.5.6 --- .gitignore | 2 ++ composer.json | 30 ++++++++++++++++++++++++++++++ php-guzzlehttp-guzzle6.spec | 14 +++++++++----- 3 files changed, 41 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 1ab5c4f..01f0400 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ +clog package-*.xml *.tgz +*.tar.bz2 *.tar.gz *.tar.xz *.tar.xz.asc diff --git a/composer.json b/composer.json index c01864f..b9cb386 100644 --- a/composer.json +++ b/composer.json @@ -14,10 +14,40 @@ "homepage": "http://guzzlephp.org/", "license": "MIT", "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, { "name": "Michael Dowling", "email": "mtdowling@gmail.com", "homepage": "https://github.com/mtdowling" + }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" } ], "require": { diff --git a/php-guzzlehttp-guzzle6.spec b/php-guzzlehttp-guzzle6.spec index 07e690c..70d5851 100644 --- a/php-guzzlehttp-guzzle6.spec +++ b/php-guzzlehttp-guzzle6.spec @@ -2,7 +2,7 @@ # # Fedora spec file for php-guzzlehttp-guzzle6 # -# Copyright (c) 2015-2019 Shawn Iwinski +# Copyright (c) 2015-2022 Shawn Iwinski # # License: MIT # http://opensource.org/licenses/MIT @@ -12,8 +12,8 @@ %global github_owner guzzle %global github_name guzzle -%global github_version 6.5.5 -%global github_commit 9d4290de1cfd701f38099ef7e183b64b4b7b0c5e +%global github_version 6.5.6 +%global github_commit f092dd734083473658de3ee4bef093ed77d2689c %global composer_vendor guzzlehttp %global composer_project guzzle @@ -195,12 +195,13 @@ AUTOLOAD : Upstream tests RETURN_CODE=0 PHPUNIT=$(which phpunit7) -for PHP_EXEC in php php73 php74 php80; do +for PHP_EXEC in php php74 php80 php81; do if [ -z "$PHP_EXEC" ] || which $PHP_EXEC; then - FILTER="testDescribesType|testInvokesOnStatsOnError|testAddsCookiesWithEmptyPathFromResponse|testCreatesExceptionWithoutPrintableBody" VER=$($PHP_EXEC -r 'echo PHP_VERSION_ID;') + FILTER="testDescribesType|testInvokesOnStatsOnError|testAddsCookiesWithEmptyPathFromResponse|testCreatesExceptionWithoutPrintableBody" if [ $VER -ge 80000 ]; then + # CurlHandle Object instead of resource FILTER="$FILTER|testEmitsProgressToFunction|testCreatesCurlHandle" fi @@ -224,6 +225,9 @@ exit $RETURN_CODE %changelog +* Mon May 30 2022 Remi Collet - 6.5.6-1 +- update to 6.5.6 + * Thu Apr 1 2021 Remi Collet - 6.5.5-1 - update to 6.5.5 -- cgit