Skip to content
This repository was archived by the owner on Feb 18, 2022. It is now read-only.

Commit 5216fc1

Browse files
committed
v7.3.4RC1
1 parent 2430361 commit 5216fc1

File tree

4 files changed

+25
-39
lines changed

4 files changed

+25
-39
lines changed

php-openssl111.patch

-29
This file was deleted.

php.ini

+18-4
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,7 @@ serialize_precision = -1
305305
; open_basedir, if set, limits all file operations to the defined directory
306306
; and below. This directive makes most sense if used in a per-directory
307307
; or per-virtualhost web server configuration file.
308+
; Note: disables the realpath cache
308309
; http://php.net/open-basedir
309310
;open_basedir =
310311

@@ -337,6 +338,7 @@ disable_classes =
337338
; Determines the size of the realpath cache to be used by PHP. This value should
338339
; be increased on systems where PHP opens many files to reflect the quantity of
339340
; the file operations performed.
341+
; Note: if open_basedir is set, the cache is disabled
340342
; http://php.net/realpath-cache-size
341343
;realpath_cache_size = 4096k
342344

@@ -589,7 +591,7 @@ html_errors = On
589591
; to syslog. Only used when error_log is set to syslog.
590592
;syslog.ident = php
591593

592-
; The syslog facility is used to specify what type of program is logging
594+
; The syslog facility is used to specify what type of program is logging
593595
; the message. Only used when error_log is set to syslog.
594596
;syslog.facility = user
595597

@@ -598,9 +600,10 @@ html_errors = On
598600
; control characters. If your logger accepts everything, then no filtering
599601
; is needed at all.
600602
; Allowed values are:
601-
; ascii (only base ASCII characters)
602-
; no_ctrl (all characters except control characters)
603+
; ascii (all printable ASCII characters and NL)
604+
; no-ctrl (all characters except control characters)
603605
; all (all characters)
606+
; http://php.net/syslog.filter
604607
;syslog.filter = ascii
605608

606609
;windows.show_crt_warning
@@ -889,7 +892,7 @@ default_socket_timeout = 60
889892
; For example:
890893
;
891894
; extension=mysqli
892-
;
895+
;
893896
; When the extension library to load is not located in the default extension
894897
; directory, You may specify an absolute path to the library file:
895898
;
@@ -971,8 +974,19 @@ cli_server.color = On
971974
;intl.use_exceptions = 0
972975

973976
[sqlite3]
977+
; Directory pointing to SQLite3 extensions
978+
; http://php.net/sqlite3.extension-dir
974979
;sqlite3.extension_dir =
975980

981+
; SQLite defensive mode flag (only available from SQLite 3.26+)
982+
; When the defensive flag is enabled, language features that allow ordinary
983+
; SQL to deliberately corrupt the database file are disabled. This forbids
984+
; writing directly to the schema, shadow tables (eg. FTS data tables), or
985+
; the sqlite_dbpage virtual table.
986+
; https://www.sqlite.org/c3ref/c_dbconfig_defensive.html
987+
; (for older SQLite versions, this flag has no use)
988+
;sqlite3.defensive = 1
989+
976990
[Pcre]
977991
; PCRE library backtracking limit.
978992
; http://php.net/pcre.backtrack-limit

php.spec

+6-5
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@
5858
%global with_lmdb 0
5959
%endif
6060

61-
%global upver 7.3.3
62-
#global rcver RC1
61+
%global upver 7.3.4
62+
%global rcver RC1
6363

6464
Summary: PHP scripting language for creating dynamic web sites
6565
Name: php
6666
Version: %{upver}%{?rcver:~%{rcver}}
67-
Release: 2%{?dist}
67+
Release: 1%{?dist}
6868
# All files licensed under PHP version 3.01, except
6969
# Zend is licensed under Zend
7070
# TSRM is licensed under BSD
@@ -111,7 +111,6 @@ Patch46: php-7.2.4-fixheader.patch
111111
Patch47: php-5.6.3-phpinfo.patch
112112

113113
# Upstream fixes (100+)
114-
Patch100: php-openssl111.patch
115114

116115
# Security fixes (200+)
117116

@@ -713,7 +712,6 @@ low-level PHP extension for the libsodium cryptographic library.
713712
%patch47 -p1 -b .phpinfo
714713

715714
# upstream patches
716-
%patch100 -p1 -b .up
717715

718716
# security patches
719717

@@ -1558,6 +1556,9 @@ systemctl try-restart php-fpm.service >/dev/null 2>&1 || :
15581556

15591557

15601558
%changelog
1559+
* Tue Mar 19 2019 Remi Collet <[email protected]> - 7.3.4~RC1-1
1560+
- update to 7.3.4RC1
1561+
15611562
* Mon Mar 18 2019 Remi Collet <[email protected]> - 7.3.3-2
15621563
- rebuild for libargon2 new soname
15631564

sources

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SHA512 (php-7.3.3.tar.xz) = bad5fa35f5962fa23dbe01fe85f76ce80e431cf2f9719284c082bb1fa32af26407407a97d3bf999165a6158f83a9669e3dd641f6d70028ec644b74a414fb803d
1+
SHA512 (php-7.3.4RC1.tar.xz) = e3a4c978bb56ae7f64c43592e436cafee1f2ce595b6712c8e5f43f894bc4e8c3171248f808e0fd0b3eda9a232841aa0f2b63e19f70735d06b9e76df9b6c10ca7

0 commit comments

Comments
 (0)