From cafc1ffc5abea3bab832cd3c3430dd0117669427 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Aug 12 2021 05:02:36 +0000 Subject: update to 2.9.4 raise dependency on doctrine/cache 1.12.1 --- diff --git a/.gitignore b/.gitignore index 98b1abd..c8bab97 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ clog /php-doctrine-orm-2.9.1-f3e55fae9fdbdbc23897006bdbf016c20e11f6e9.tar.gz /php-doctrine-orm-2.9.2-75b4b88c5b7cebc24ed7251a20c2a5aa027300e1.tar.gz /php-doctrine-orm-2.9.3-82e77cf5089a1303733f75f0f0ed01be3ab9ec22.tar.gz +/php-doctrine-orm-2.9.4-b19a13f4edfaa5806109cd899f5912a7df1547b5.tar.gz diff --git a/composer.json b/composer.json index 77e265b..67afdcd 100644 --- a/composer.json +++ b/composer.json @@ -16,30 +16,32 @@ "sort-packages": true }, "require": { - "php": "^7.1|^8.0", + "php": "^7.1 ||^8.0", + "ext-ctype": "*", "ext-pdo": "*", "composer/package-versions-deprecated": "^1.8", "doctrine/annotations": "^1.13", - "doctrine/cache": "^1.11.3|^2.0.3", + "doctrine/cache": "^1.12.1 || ^2.1.1", "doctrine/collections": "^1.5", "doctrine/common": "^3.0.3", "doctrine/dbal": "^2.13.0", "doctrine/deprecations": "^0.5.3", "doctrine/event-manager": "^1.1", - "doctrine/inflector": "^1.4|^2.0", + "doctrine/inflector": "^1.4 || ^2.0", "doctrine/instantiator": "^1.3", "doctrine/lexer": "^1.0", "doctrine/persistence": "^2.2", "psr/cache": "^1 || ^2 || ^3", - "symfony/console": "^3.0|^4.0|^5.0|^6.0" + "symfony/console": "^3.0 || ^4.0 || ^5.0 || ^6.0" }, "require-dev": { "doctrine/coding-standard": "^9.0", - "phpstan/phpstan": "^0.12.83", - "phpunit/phpunit": "^7.5|^8.5|^9.4", + "phpbench/phpbench": "^0.16.10 || ^1.0", + "phpstan/phpstan": "0.12.94", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4", "squizlabs/php_codesniffer": "3.6.0", - "symfony/cache": "^4.4|^5.2", - "symfony/yaml": "^3.4|^4.0|^5.0|^6.0", + "symfony/cache": "^4.4 || ^5.2", + "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0", "vimeo/psalm": "4.7.0" }, "suggest": { @@ -52,6 +54,7 @@ "autoload-dev": { "psr-4": { "Doctrine\\Tests\\": "tests/Doctrine/Tests", + "Doctrine\\StaticAnalysis\\": "tests/Doctrine/StaticAnalysis", "Doctrine\\Performance\\": "tests/Doctrine/Performance" } }, diff --git a/php-doctrine-orm.spec b/php-doctrine-orm.spec index ff6aaf6..2572d4c 100644 --- a/php-doctrine-orm.spec +++ b/php-doctrine-orm.spec @@ -12,19 +12,19 @@ %global github_owner doctrine %global github_name orm -%global github_version 2.9.3 -%global github_commit 82e77cf5089a1303733f75f0f0ed01be3ab9ec22 +%global github_version 2.9.4 +%global github_commit b19a13f4edfaa5806109cd899f5912a7df1547b5 %global composer_vendor doctrine %global composer_project orm -# "php": "^7.1|^8.0" +# "php": "^7.1 || ^8.0" %global php_min_ver 7.1 # "doctrine/annotations": "^1.13", %global annotations_min_ver 1.13 %global annotations_max_ver 2 -# "doctrine/cache": "^1.11.3|^2.0.3" -%global cache_min_ver 1.11.3 +# "doctrine/cache": "^1.12.1 || ^2.1.1" +%global cache_min_ver 1.12.1 %global cache_max_ver 3 # "doctrine/collections": "^1.5" %global collections_min_ver 1.5 @@ -38,7 +38,7 @@ # "doctrine/deprecations": "^0.5.3" %global deprecations_min_ver 0.5.3 %global deprecations_max_ver 1 -# "doctrine/inflector": "^1.4|^2.0" +# "doctrine/inflector": "^1.4 || ^2.0" %global inflector_min_ver 1.4 %global inflector_max_ver 3 # "doctrine/instantiator": "^1.3" @@ -53,11 +53,11 @@ # "doctrine/event-manager": "^1.1" %global event_min_ver 1.1 %global event_max_ver 2 -# "symfony/console": "^3.0|^4.0|^5.0|^6.0" -# "symfony/yaml": "~^3.4|^4.0|^5.0|^6.0" +# "symfony/console": "^3.0 || ^4.0 || ^5.0 || ^6.0" +# "symfony/yaml": "^3.4 || ^4.0 || ^5.0 || ^6.0" %global symfony_min_ver 3.4 %global symfony_max_ver 7 -# "symfony/cache": "^4.4|^5.2", +# "symfony/cache": "^4.4 || ^5.2", %global sym_cache_min_ver 4.4 %global sym_cache_max_ver 6 # "psr/cache": "^1 || ^2 || ^3", @@ -71,7 +71,7 @@ Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} -Release: 2%{?dist} +Release: 1%{?dist} Summary: Doctrine Object-Relational-Mapper (ORM) License: MIT @@ -317,6 +317,10 @@ exit $RETURN_CODE %changelog +* Thu Aug 12 2021 Remi Collet - 2.9.4-1 +- update to 2.9.4 +- raise dependency on doctrine/cache 1.12.1 + * Fri Jul 30 2021 Remi Collet - 2.9.3-2 - skip 1 test, fix FTBFS #1987811 diff --git a/sources b/sources index 17fbc35..5d6aa3f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-doctrine-orm-2.9.3-82e77cf5089a1303733f75f0f0ed01be3ab9ec22.tar.gz) = 08747b816ee4e1b2bc3acad63583bf4ea05655b41918f7dca9e5b0c6644ee757428cd8bc0f496a0cb6629bde056634713bba402c54316beb2094ef095651606f +SHA512 (php-doctrine-orm-2.9.4-b19a13f4edfaa5806109cd899f5912a7df1547b5.tar.gz) = 372165f5bb5d59d41b5b4f0a2486392da53e53f61ec0585ec321904bcb5db614702c841ad604824bb920cd698f94d8610908f25ad454e03323385f86c4d46c90