Skip to content

Commit b0871e9

Browse files
committed
bump WordPress to v6.9.1, node to v24, always latest xdebug and update dependencies
1 parent cdc1897 commit b0871e9

File tree

7 files changed

+21
-19
lines changed

7 files changed

+21
-19
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# This version is automatically updated by the wordpress:bump script
88
# but can also be manually updated for tagged betas and release candidates
99
# Manual updates also must change wp-version.json
10-
FROM wordpress:6.9-php8.4-apache
10+
FROM wordpress:6.9.1-php8.4-apache
1111

1212
LABEL version="1.8.1"
1313

@@ -77,7 +77,7 @@ RUN rm /usr/src/php.tar.xz /usr/src/php.tar.xz.asc
7777
# Install XDebug, largly copied from:
7878
# https://github.com/andreccosta/wordpress-xdebug-dockerbuild
7979
# https://pecl.php.net/package/xdebug
80-
RUN pecl install xdebug-3.4.6 \
80+
RUN pecl install xdebug \
8181
&& docker-php-ext-enable xdebug \
8282
&& echo '[XDebug]' >> /usr/local/etc/php/conf.d/z_iop-xdebug.ini \
8383
&& echo 'zend_extension=xdebug' >> /usr/local/etc/php/conf.d/z_iop-xdebug.ini \
@@ -126,7 +126,7 @@ RUN curl https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.ph
126126
# https://github.com/nodesource/distributions#installation-instructions
127127
# https://github.com/nodejs/release#release-schedule
128128
# Also global install npm & sort-package-json so we can call them from the init script
129-
RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
129+
RUN curl -fsSL https://deb.nodesource.com/setup_24.x | bash - \
130130
&& apt-get update -yqq \
131131
&& apt-get install -yqq --no-install-recommends \
132132
nodejs \

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<h4>
44
Version 1.8.1
5-
<!-- WPVERSION -->- WordPress 6.9
5+
<!-- WPVERSION -->- WordPress 6.9.1
66
</h4>
77

88
<!-- [![dockeri.co](https://dockeri.co/image/ideasonpurpose/wordpress)](https://hub.docker.com/r/ideasonpurpose/wordpress)<br> -->
@@ -14,7 +14,7 @@ Version 1.8.1
1414

1515
This project provides local development environments for fast iteration of existing WordPress websites. This includes pre-configured Docker-based MySQL and PHP servers, our [Docker-Build toolchain][docker-build], [Xdebug](https://xdebug.org/), [ImageMagick](http://www.imagemagick.org/) and a number of helper scripts.
1616

17-
The project builds on the official WordPress docker image, currently **[v6.9](https://hub.docker.com/_/wordpress)**
17+
The project builds on the official WordPress docker image, currently **[v6.9.1](https://hub.docker.com/_/wordpress)**
1818

1919
## Getting Started
2020

@@ -23,7 +23,7 @@ To update an existing project or start a new one, run the following commands in
2323
##### macOS, Linux & Windows PowerShell
2424

2525
```
26-
docker run --rm -it -v ${PWD}:/usr/src/site ideasonpurpose/wordpress:6.9 init
26+
docker run --rm -it -v ${PWD}:/usr/src/site ideasonpurpose/wordpress:6.9.1 init
2727
```
2828

2929
Followed by:
@@ -37,7 +37,7 @@ _NOTE: If **~/.composer** doesn't exist, mounting the Docker volume will create
3737
##### Windows Command Prompt
3838

3939
```
40-
docker run --rm -it -v %cd%:/usr/src/site ideasonpurpose/wordpress:6.9 init
40+
docker run --rm -it -v %cd%:/usr/src/site ideasonpurpose/wordpress:6.9.1 init
4141
```
4242

4343
- `init` command copies all the necessary tooling files into place and sets up the default theme directory structure.

boilerplate-tooling/boilerplate-composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"ideasonpurpose/wp-google-analytics": "^1.1.0",
2929
"ideasonpurpose/wp-svg-lib": "^3.1.0",
3030
"ideasonpurpose/wp-theme-i18n": "dev-main",
31-
"ideasonpurpose/wp-theme-init": "^2.16.0"
31+
"ideasonpurpose/wp-theme-init": "^2.19.1"
3232
},
3333
"repositories": [
3434
{

boilerplate-tooling/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ services:
2323
depends_on:
2424
- db
2525
# image: &wp_img ideasonpurpose/wordpress:dev
26-
image: &wp_img ideasonpurpose/wordpress:6.9
26+
image: &wp_img ideasonpurpose/wordpress:6.9.1
2727
restart: always
2828
volumes:
2929
- wp_data:/var/www/html

package-lock.json

Lines changed: 10 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@ideasonpurpose/prettier-config": "^1.1.0",
2222
"@prettier/plugin-php": "^0.24.0",
2323
"auto-changelog": "^2.5.0",
24-
"prettier": "^3.7.4",
24+
"prettier": "^3.8.1",
2525
"version-everything": "^0.11.4"
2626
},
2727
"auto-changelog": {

wp-version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"wordpress": "6.9"
2+
"wordpress": "6.9.1"
33
}

0 commit comments

Comments
 (0)