Skip to content

Commit e087ed3

Browse files
authored
Merge pull request #205 from devilbox/release-0.125
Release 0.125
2 parents 25e0e12 + 2ac845a commit e087ed3

18 files changed

Lines changed: 49 additions & 17 deletions

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- '8.1'
4141
refs:
4242
- 'master'
43-
- '0.124'
43+
- '0.125'
4444
steps:
4545

4646
# ------------------------------------------------------------

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44
## Unreleased
55

66

7+
## Release 0.125
8+
9+
#### Changed
10+
- Re-added `opcache` for PHP 8.1
11+
- Pin `ansible` version for all work images
12+
- Pin `wp-cli` version for PHP 5.4 and 5.5
13+
14+
715
## Release 0.124
816

917
#### Fixed

Dockerfiles/mods/Dockerfile-8.1

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,17 @@ RUN set -eux \
312312
&& true
313313

314314

315+
# -------------------- Installing PHP Extension: opcache --------------------
316+
RUN set -eux \
317+
# Version specific pre-command
318+
&& curl -sS https://raw.githubusercontent.com/php/php-src/php-8.0.6/ext/opcache/Optimizer/zend_dfg.h > /usr/local/include/php/Zend/Optimizer/zend_dfg.h \
319+
# Installation: Version specific
320+
# Type: Built-in extension
321+
# Installation
322+
&& docker-php-ext-install -j$(getconf _NPROCESSORS_ONLN) opcache \
323+
&& true
324+
325+
315326
# -------------------- Installing PHP Extension: pcntl --------------------
316327
RUN set -eux \
317328
# Installation: Generic
@@ -749,6 +760,8 @@ RUN set -eux \
749760
&& php-fpm -m | grep -oiE '^oauth$' \
750761
&& php -m | grep -oiE '^oci8$' \
751762
&& php-fpm -m | grep -oiE '^oci8$' \
763+
&& php -m | grep -oiE '^Zend Opcache$' \
764+
&& php-fpm -m | grep -oiE '^Zend Opcache$' \
752765
&& php -m | grep -oiE '^openssl$' \
753766
&& php-fpm -m | grep -oiE '^openssl$' \
754767
&& php -m | grep -oiE '^pcntl$' \

Dockerfiles/work/Dockerfile-5.2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ RUN set -eux \
391391
###
392392
RUN set -eux \
393393
# -------------------- ansible --------------------
394-
&& pip install --no-cache-dir --force-reinstall ansible || true \
394+
&& pip install --no-cache-dir --force-reinstall ansible==3.4.0 || true \
395395
\
396396
# -------------------- yamllint --------------------
397397
&& pip install --no-cache-dir --force-reinstall yamllint || true \

Dockerfiles/work/Dockerfile-5.3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ RUN set -eux \
452452
###
453453
RUN set -eux \
454454
# -------------------- ansible --------------------
455-
&& pip install --no-cache-dir --force-reinstall ansible || true \
455+
&& pip install --no-cache-dir --force-reinstall ansible==3.4.0 || true \
456456
\
457457
# -------------------- yamllint --------------------
458458
&& pip install --no-cache-dir --force-reinstall yamllint || true \

Dockerfiles/work/Dockerfile-5.4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ RUN set -eux \
334334
\
335335
\
336336
# -------------------- wpcli --------------------
337-
&& curl -sS -L --fail https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar -L -o /usr/local/bin/wp \
337+
&& curl -sS -L --fail https://github.com/wp-cli/wp-cli/releases/download/v2.4.0/wp-cli-2.4.0.phar -L -o /usr/local/bin/wp \
338338
&& chmod +x /usr/local/bin/wp \
339339
\
340340
# -------------------- cleanup --------------------
@@ -486,7 +486,7 @@ RUN set -eux \
486486
###
487487
RUN set -eux \
488488
# -------------------- ansible --------------------
489-
&& pip install --no-cache-dir --force-reinstall ansible || true \
489+
&& pip install --no-cache-dir --force-reinstall ansible==3.4.0 || true \
490490
\
491491
# -------------------- yamllint --------------------
492492
&& pip install --no-cache-dir --force-reinstall yamllint || true \

Dockerfiles/work/Dockerfile-5.5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ RUN set -eux \
340340
\
341341
\
342342
# -------------------- wpcli --------------------
343-
&& curl -sS -L --fail https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar -L -o /usr/local/bin/wp \
343+
&& curl -sS -L --fail https://github.com/wp-cli/wp-cli/releases/download/v2.4.0/wp-cli-2.4.0.phar -L -o /usr/local/bin/wp \
344344
&& chmod +x /usr/local/bin/wp \
345345
\
346346
# -------------------- cleanup --------------------
@@ -504,7 +504,7 @@ RUN set -eux \
504504
###
505505
RUN set -eux \
506506
# -------------------- ansible --------------------
507-
&& pip install --no-cache-dir --force-reinstall ansible || true \
507+
&& pip install --no-cache-dir --force-reinstall ansible==3.4.0 || true \
508508
\
509509
# -------------------- yamllint --------------------
510510
&& pip install --no-cache-dir --force-reinstall yamllint || true \

Dockerfiles/work/Dockerfile-5.6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ RUN set -eux \
516516
###
517517
RUN set -eux \
518518
# -------------------- ansible --------------------
519-
&& pip install --no-cache-dir --force-reinstall ansible || true \
519+
&& pip install --no-cache-dir --force-reinstall ansible==3.4.0 || true \
520520
\
521521
# -------------------- yamllint --------------------
522522
&& pip install --no-cache-dir --force-reinstall yamllint || true \

Dockerfiles/work/Dockerfile-7.0

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ RUN set -eux \
497497
###
498498
RUN set -eux \
499499
# -------------------- ansible --------------------
500-
&& pip install --no-cache-dir --force-reinstall ansible || true \
500+
&& pip install --no-cache-dir --force-reinstall ansible==3.4.0 || true \
501501
\
502502
# -------------------- yamllint --------------------
503503
&& pip install --no-cache-dir --force-reinstall yamllint || true \

Dockerfiles/work/Dockerfile-7.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ RUN set -eux \
496496
###
497497
RUN set -eux \
498498
# -------------------- ansible --------------------
499-
&& pip install --no-cache-dir --force-reinstall ansible || true \
499+
&& pip install --no-cache-dir --force-reinstall ansible==3.4.0 || true \
500500
\
501501
# -------------------- yamllint --------------------
502502
&& pip install --no-cache-dir --force-reinstall yamllint || true \

0 commit comments

Comments
 (0)