summaryrefslogtreecommitdiffstats
path: root/php72.spec
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2022-12-19 16:20:52 +0100
committerRemi Collet <remi@php.net>2022-12-19 16:20:52 +0100
commit48a4b061a154fe9577c56a1eff3e360c7e572091 (patch)
treea8ed5c9e3a482f77cce2d70009757d879aa46e2b /php72.spec
parent951dbf0af3a424edd8468f50570a709dc8b6db25 (diff)
pdo: fix #81740: PDO::quote() may return unquoted string
CVE-2022-31631 use oracle client library version 21.8
Diffstat (limited to 'php72.spec')
-rw-r--r--php72.spec13
1 files changed, 10 insertions, 3 deletions
diff --git a/php72.spec b/php72.spec
index b29a5de..be6c43b 100644
--- a/php72.spec
+++ b/php72.spec
@@ -25,7 +25,7 @@
%global mysql_sock %(mysql_config --socket 2>/dev/null || echo /var/lib/mysql/mysql.sock)
-%global oraclever 21.7
+%global oraclever 21.8
%global oraclelib 21.1
# Build for LiteSpeed Web Server (LSAPI)
@@ -110,7 +110,7 @@
Summary: PHP scripting language for creating dynamic web sites
Name: php
Version: %{upver}%{?rcver:~%{rcver}}
-Release: 14%{?dist}
+Release: 15%{?dist}
# All files licensed under PHP version 3.01, except
# Zend is licensed under Zend
# TSRM is licensed under BSD
@@ -190,6 +190,7 @@ Patch209: php-bug81720.patch
Patch210: php-bug81727.patch
Patch211: php-bug81726.patch
Patch212: php-bug81738.patch
+Patch213: php-bug81740.patch
# Fixes for tests (300+)
# Factory is droped from system tzdata
@@ -1135,6 +1136,7 @@ low-level PHP extension for the libsodium cryptographic library.
%patch210 -p1 -b .bug81727
%patch211 -p1 -b .bug81726
%patch212 -p1 -b .bug81738
+%patch213 -p1 -b .bug81740
# Fixes for tests
%if 0%{?fedora} >= 25 || 0%{?rhel} >= 6
@@ -2063,7 +2065,7 @@ cat << EOF
WARNING : PHP 7.2 have reached its "End of Life" in
November 2020. Even, if this package includes some of
- the important security fix, backported from 7.4, the
+ the important security fixes, backported from 8.0, the
UPGRADE to a maintained version is very strongly RECOMMENDED.
=====================================================================
@@ -2248,6 +2250,11 @@ EOF
%changelog
+* Mon Dec 19 2022 Remi Collet <remi@remirepo.net> - 7.2.34-15
+- pdo: fix #81740: PDO::quote() may return unquoted string
+ CVE-2022-31631
+- use oracle client library version 21.8
+
* Mon Oct 24 2022 Remi Collet <remi@remirepo.net> - 7.2.34-14
- hash: fix #81738: buffer overflow in hash_update() on long parameter.
CVE-2022-37454