Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions .github/workflows/pr-docs-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,14 @@ jobs:
steps:
# Install deps and cache
- name: Checkout code
uses: actions/checkout@v4
- name: Cache version builds
uses: actions/cache@v4
uses: actions/checkout@v6
- name: Restore version builds cache
uses: actions/cache/restore@v5
with:
key: lando-mvb-docs
path: docs/.vitepress/cache/@lando/mvb
save-always: true
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
Expand All @@ -37,3 +36,11 @@ jobs:
run: npm run docs:mvb
- name: Test build
run: npm run docs:build

# Save cache
- name: Save version builds cache
uses: actions/cache/save@v5
if: always()
with:
key: lando-mvb-docs
path: docs/.vitepress/cache/@lando/mvb
4 changes: 2 additions & 2 deletions .github/workflows/pr-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
steps:
# Install deps and cache
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
steps:
# Install deps and cache
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-wordpress-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:
steps:

- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Publish to NPM
on:
release:
types:
- created
- published

jobs:
deploy:
Expand All @@ -19,9 +19,9 @@ jobs:
steps:
# Install deps and cache
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,4 @@ config.*.timestamp-*-*.*

# YARN
yarn.lock
*.sync-conflict-*
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})

## v1.10.0 - [Unreleased](https://github.com/lando/wordpress/releases/tag/v1.10.0)

* Updated to [@lando/php@1.10.0](https://github.com/lando/php/releases/tag/v1.10.0)
* Fixed release workflow trigger to fire on `published` instead of `created`
* Updated CI actions (`actions/checkout` to v6, `actions/setup-node` to v6, `actions/cache` to v5)
* Updated README with PHP 8.5+ support and added maintainer
* Removed Syncthing conflict files and added pattern to `.gitignore`
* Pending dependabot bumps for `@lando/mariadb`, `@lando/postgres`, and `@lando/argv`

## v1.9.0 - [September 2, 2025](https://github.com/lando/wordpress/releases/tag/v1.9.0)

* Switched images to [bitnamilegacy](https://github.com/bitnami/containers/issues/83267) namespace
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This is the _official_ [Lando](https://lando.dev) plugin for [WordPress](https://wordpress.org/). When installed it...

* Allows users to run `wordpress` cms
* Allows users to configure `php` version from `5.3` all the way to `8.4`
* Allows users to configure `php` version from `5.3` all the way to `8.5+`
* Allows users to configure `webroot`
* Allows users to configure web server to (`apache` or `nginx`)
* Allows users to configure database backend to (`mariadb`, `mysql`, or `postgres`)
Expand Down Expand Up @@ -45,6 +45,7 @@ We try to log all changes big and small in both [THE CHANGELOG](https://github.c

* [@pirog](https://github.com/pirog)
* [@reynoldsalec](https://github.com/reynoldsalec)
* [@AaronFeledy](https://github.com/AaronFeledy)

## Contributors

Expand Down
18 changes: 4 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"@lando/mssql": "^1.4.3",
"@lando/mysql": "^1.6.0",
"@lando/nginx": "^1.5.0",
"@lando/php": "^1.8.0",
"@lando/php": "^1.10.0",
"@lando/postgres": "^1.5.0",
"lodash": "^4.17.21"
},
Expand Down
Loading