Docker Library Bot
1bc63c1ce4
Update 7.4 to 7.4.16
2021-03-04 19:46:26 +00:00
Tianon Gravi
57143cba91
Update to 8.0.2
...
This applies the same workaround upstream applied in https://bugs.php.net/bug.php?id=80711#1612456954 for a minor publishing issue they're having. 😬
2021-02-04 10:15:53 -08:00
Docker Library Bot
1ad18817e5
Update 7.4 to 7.4.15
2021-02-04 15:16:58 +00:00
Docker Library Bot
29b7e57a15
Update 7.3 to 7.3.27
2021-02-04 13:46:17 +00:00
yosifkit
480de801db
Merge pull request #1123 from infosiftr/fix-enable
...
Adjust "docker-php-ext-enable" to use "grep -Fx"
2021-01-20 16:33:00 -08:00
Tianon Gravi
74175669f4
Adjust "docker-php-ext-enable" to use "grep -Fx"
...
Also, test both versions (with `.so` and without).
This helps avoid false positives due to lines like `extension=apc` matching `extension=apcu`.
2021-01-20 10:44:08 -08:00
GreyXor
c70a901d7f
Add Alpine 3.13 ( #1117 )
...
This also removes Alpine 3.11, per the support policy in this repository.
2021-01-15 08:53:26 -08:00
Docker Library Bot
24ccf968d7
Update 8.0 to 8.0.1
2021-01-07 16:52:13 +00:00
Docker Library Bot
4d752fa012
Update 7.4 to 7.4.14
2021-01-07 15:06:37 +00:00
Docker Library Bot
a310c86d0b
Update 7.3 to 7.3.26
2021-01-07 13:46:27 +00:00
yosifkit
3db7191559
Merge pull request #1104 from infosiftr/debian-cli-sapi
...
Add "--enable-embed" to Debian-based CLI variants
2020-12-17 14:50:09 -08:00
Tianon Gravi
73ccb45f47
Add "--enable-embed" to Debian-based CLI variants
...
This is used for things like NGINX Unit to embed PHP (similar to `mod_php` in Apache, but a more general interface).
2020-12-17 14:32:31 -08:00
Tianon Gravi
4908ef2763
Remove 7.2 (EOL)
2020-12-17 10:36:51 -08:00
yosifkit
20ebff40bb
Merge pull request #1089 from q0rban/add-contributing-md
...
Add a CONTRIBUTING.md file for n00bs like me
2020-11-30 11:45:39 -08:00
Tianon Gravi
f936910d8f
Merge pull request #1096 from infosiftr/pear-8.0
...
Keep "pecl update-channels" for 8.0 also
2020-11-30 18:31:24 +00:00
Tianon Gravi
deb4a80b40
Keep "pecl update-channels" for 8.0 also
2020-11-30 10:04:30 -08:00
yosifkit
6944008738
Merge pull request #1090 from infosiftr/8-ga
...
Update to 8.0.0 (GA)
2020-11-30 09:58:28 -08:00
James Sansbury
70a11f3d78
Update CONTRIBUTING.md
...
Co-authored-by: Tim Düsterhus <timwolla@googlemail.com>
2020-11-30 10:28:42 -05:00
Tianon Gravi
8dfb458a79
Update to 8.0.0 (GA)
2020-11-26 08:55:18 -08:00
Docker Library Bot
26e65d3c2a
Update 7.3 to 7.3.25
2020-11-26 13:46:21 +00:00
Docker Library Bot
0274f58b8d
Update 7.4 to 7.4.13
2020-11-26 01:46:30 +00:00
James Sansbury
0b6b7e63cf
Address peer review requests
2020-11-24 14:18:55 -05:00
Tianon Gravi
cf3943ec27
Merge pull request #1088 from q0rban/1087-8.0-pear
...
Configure PHP with pear/pecl installers for PHP 8.0
2020-11-24 18:37:34 +00:00
Tianon Gravi
470ab97adf
Update put-shared link/badge
2020-11-24 08:51:43 -08:00
James Sansbury
2031882159
Add a CONTRIBUTING.md file for n00bs like me
2020-11-24 09:48:57 -05:00
James Sansbury
03a9fae331
Update templates.
2020-11-24 09:31:47 -05:00
James Sansbury
0fdd2f0fc4
Configure PHP with pear/pecl installers for PHP 8.0 #1087
2020-11-24 08:37:56 -05:00
James Sansbury
fa268447c6
Remove messages about pear being removed in PHP 8+.
2020-11-24 08:35:02 -05:00
Docker Library Bot
0180511974
Update 8.0-rc to 8.0.0RC5
2020-11-19 13:46:25 +00:00
Docker Library Bot
ea189aef88
Update 8.0-rc to 8.0.0RC4
2020-11-12 13:46:26 +00:00
yosifkit
16c3e237e0
Merge pull request #1081 from infosiftr/with-pic
...
Add "--with-pic" to configure flags (specifically to fix i386)
2020-11-05 09:27:54 -08:00
Tianon Gravi
3dc9a6988d
Add "--with-pic" to configure flags (specifically to fix i386)
...
After looking/comparing at the output of `./configure` for our i386 and amd64 builds against that of Debian's i386 build, our i386 build was the only one of the three to include `checking whether to force non-PIC code in shared modules... yes` (the other two were `no`).
Debian includes `--with-pic`, and we do not.
Looking at the upstream PHP code for this configure check (313a56add0/configure.ac (L241-L256)
), this makes total sense, and explains why i386 is the only architecture we see this issue on:
```m4
dnl Disable PIC mode by default where it is known to be safe to do so, to avoid
dnl the performance hit from the lost register.
AC_MSG_CHECKING([whether to force non-PIC code in shared modules])
case $host_alias in
i?86-*-linux*|i?86-*-freebsd*)
if test "${with_pic+set}" != "set" || test "$with_pic" = "no"; then
with_pic=no
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
;;
*)
AC_MSG_RESULT(no)
;;
esac
```
This was probably already implied by our `CFLAGS` (and the compiler) on Alpine, but I figured it doesn't hurt to be explicit / consistent.
2020-11-04 17:22:43 -08:00
Tianon Gravi
f9c87657f5
Merge pull request #1078 from infosiftr/no-md5
...
Drop md5 checksums
2020-11-03 22:27:56 +00:00
Joe Ferguson
e12d4c5d46
Drop md5 checksums
2020-10-29 13:51:51 -07:00
Docker Library Bot
5dd0da6ee3
Update 7.4 to 7.4.12
2020-10-29 18:46:34 +00:00
Docker Library Bot
0f0ddeac8b
Update 8.0-rc to 8.0.0RC3
2020-10-29 14:09:57 +00:00
Docker Library Bot
4c5cb612e6
Update 7.3 to 7.3.24
2020-10-29 12:46:23 +00:00
Tianon Gravi
7631b8f26c
Revert "Add back 8-zts-alpine"
...
This reverts commit 32bc79fb18
.
2020-10-26 16:10:41 -07:00
yosifkit
b170def028
Merge pull request #1075 from infosiftr/8-zts-alpine
...
Add back 8-zts-alpine
2020-10-26 15:12:43 -07:00
Tianon Gravi
32bc79fb18
Add back 8-zts-alpine
2020-10-26 12:06:33 -07:00
Tianon Gravi
8723b80dba
Merge pull request #1071 from infosiftr/no-so
...
Drop `.so` from "extension=" in docker-php-ext-enable generated ini files
2020-10-23 12:50:03 -07:00
Joe Ferguson
a940d67380
Drop .so
from "extension=" in docker-php-ext-enable generated ini files
2020-10-23 12:34:00 -07:00
Tianon Gravi
38ac479fe9
Fix .gitattributes specificity
2020-10-16 16:27:26 -07:00
Docker Library Bot
13c031bd1d
Update 8.0-rc to 8.0.0RC2
2020-10-16 12:46:26 +00:00
Docker Library Bot
7ef129842e
Update 8.0-rc to 8.0.0rc1
2020-10-01 21:57:50 +00:00
Tianon Gravi
02a9bf3ec9
Fix version-id bug, drop unused code, check that URL exists before allowing "versions.sh" to continue
2020-10-01 12:22:48 -07:00
Docker Library Bot
c257144e4b
Update 7.4 to 7.4.11
2020-10-01 16:44:33 +00:00
Docker Library Bot
4c91c82a42
Update 7.3 to 7.3.23
2020-10-01 15:33:48 +00:00
Docker Library Bot
fbba7966bc
Update 7.2 to 7.2.34
2020-10-01 14:15:57 +00:00
Docker Library Bot
d2553ca1e6
Update 8.0-rc to 8.0.0beta4
2020-09-17 18:46:24 +00:00