From cbc83e9de81f0954c63e8d580b1e4d3ff7ad38ba Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Tue, 13 Aug 2024 15:01:54 -0600 Subject: [PATCH] Resolves an issue causing some WordPress core resources to 404 on single site installs. This update fixes a bug that was causing some core CSS, JS files and other assets to be not found due to improper URL construction. It has been tested across single site, subdirectory and subdomain multisite installs. For more information, see https://docs.pantheon.io/release-notes/2024/08/wordpress-composer-managed-1-32-1 --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8eacedc2..1be81a8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### v1.32.1 (2024-08-16) +* Refactors core resource URL filtering and multisite handling. ([#157](https://github.com/pantheon-systems/wordpress-composer-managed/pull/157)) This resolves an issue where some WordPress core resources were 404ing on single site installs. + ### v1.32.0 (2024-08-06) * This update primarily fixes consistency issues between the development repository ([`pantheon-systems/wordpress-composer-managed`](https://github.com/pantheon-systems/wordpress-composer-managed)) and the upstream repository ([`pantheon-upstreams/wordpress-composer-managed`](https://github.com/pantheon-upstreams/wordpress-composer-managed)). Most notably, this update removes decoupled packages that were erroneously being added to the non-decoupled upstream (and are not included in this repository). * Fixes issues with subdomain multisite testing ([#148](https://github.com/pantheon-systems/wordpress-composer-managed/pull/148))