Skip to content

Commit f1e7543

Browse files
committed
bump deps, WP to 6.1.1
1 parent a03ae7a commit f1e7543

File tree

6 files changed

+19
-17
lines changed

6 files changed

+19
-17
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This version is automatically updated by the wordpress:bump script
44
# but can also be manually updated for tagged betas and release candidates
55
# Manual updates also must change wp-version.json
6-
FROM wordpress:6.5.5-php8.2-apache
6+
FROM wordpress:6.6.1-php8.2-apache
77

88
LABEL version="1.6.5"
99

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.6.5
5-
<!-- WPVERSION -->- WordPress 6.5.5
5+
<!-- WPVERSION -->- WordPress 6.6.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.6.5
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.5.5](https://hub.docker.com/_/wordpress)**
17+
The project builds on the official WordPress docker image, currently **[v6.6.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.5.5 init
26+
docker run --rm -it -v ${PWD}:/usr/src/site ideasonpurpose/wordpress:6.6.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.5.5 init
40+
docker run --rm -it -v %cd%:/usr/src/site ideasonpurpose/wordpress:6.6.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/docker-compose.yml

Lines changed: 2 additions & 2 deletions
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.5.5
26+
image: &wp_img ideasonpurpose/wordpress:6.6.1
2727
restart: always
2828
volumes:
2929
- wp_data:/var/www/html
@@ -69,7 +69,7 @@ services:
6969
# Image from: https://hub.docker.com/r/ideasonpurpose/docker-build
7070
tools:
7171
# image: ideasonpurpose/docker-build:dev
72-
image: ideasonpurpose/docker-build:0.17.0
72+
image: ideasonpurpose/docker-build:0.17.1
7373
user: "${UID:-1000}:${GID:-1000}"
7474
depends_on:
7575
- wordpress

package-lock.json

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

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,18 @@
1010
"Joe Maller <joe@ideasonpurpose.com>"
1111
],
1212
"scripts": {
13+
"path": "echo $PATH",
1314
"bump": "npm run wordpress:bump",
1415
"shfmt": "docker compose run --rm shfmt",
1516
"version": "version-everything && auto-changelog && git add -u",
16-
"wordpress:bump": "docker-compose run --rm bump-wp"
17+
"wordpress:bump": "docker compose run --rm bump-wp"
1718
},
1819
"prettier": "@ideasonpurpose/prettier-config",
1920
"devDependencies": {
2021
"@ideasonpurpose/prettier-config": "^0.0.6",
2122
"@prettier/plugin-php": "^0.22.2",
2223
"auto-changelog": "^2.4.0",
23-
"prettier": "^3.3.2",
24+
"prettier": "^3.3.3",
2425
"version-everything": "^0.11.3"
2526
},
2627
"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.5.5"
2+
"wordpress": "6.6.1"
33
}

0 commit comments

Comments
 (0)