From 13a9ebc9f2fdbfbb90454d378051ecf30da10730 Mon Sep 17 00:00:00 2001 From: Roric van Schalkwijk Date: Tue, 2 Jun 2026 13:46:27 +0200 Subject: [PATCH 1/2] chore: update cmb2 and move to wp-packages --- CHANGELOG.md | 4 ++++ composer.json | 10 +++------- composer.lock | 21 +++++++++++++++++---- 3 files changed, 24 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffdbfa6..22dbe81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v3.8.4 + +- Chore: update cmb2, move to wp-packages over wp-packagist + ## v3.8.3 - Chore: Revert to wp-packagist version of 10up/elasticpress due to psr/container conflicts diff --git a/composer.json b/composer.json index c6ee255..59f0c58 100644 --- a/composer.json +++ b/composer.json @@ -22,20 +22,16 @@ ], "repositories": [ { - "name": "wpackagist", + "name": "wp-packages", "type": "composer", - "url": "https://wpackagist.org", - "only": [ - "wpackagist-plugin/*", - "wpackagist-theme/*" - ] + "url": "https://repo.wp-packages.org" } ], "require": { "php": ">=7.4", "johnbillion/extended-cpts": "^5.0", "cmb2/cmb2": "^2.11", - "wpackagist-plugin/elasticpress": "^5.0 | ^4.0", + "wp-plugin/elasticpress": "^5.0 | ^4.0", "yahnis-elsts/plugin-update-checker": "^5.0" }, "require-dev": { diff --git a/composer.lock b/composer.lock index d784493..d47d6a2 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "9e8d1a562395000c57c5cc5b8a4552cf", + "content-hash": "b0dba1e9711c55a95fcd1b8917e527e8", "packages": [ { "name": "cmb2/cmb2", @@ -602,7 +602,7 @@ "time": "2025-06-18T21:18:03+00:00" }, { - "name": "wpackagist-plugin/elasticpress", + "name": "wp-plugin/elasticpress", "version": "5.3.3", "source": { "type": "svn", @@ -614,10 +614,23 @@ "url": "https://downloads.wordpress.org/plugin/elasticpress.5.3.3.zip" }, "require": { - "composer/installers": "^1.0 || ^2.0" + "composer/installers": "~1.0|~2.0" }, "type": "wordpress-plugin", - "homepage": "https://wordpress.org/plugins/elasticpress/" + "notification-url": "https://wp-packages.org/downloads", + "authors": [ + { + "name": "10up" + } + ], + "description": "A fast and flexible search and query engine for WordPress.", + "homepage": "https://github.com/10up/ElasticPress", + "support": { + "changelog": "https://wordpress.org/plugins/elasticpress/#developers", + "issues": "https://wordpress.org/support/plugin/elasticpress", + "source": "https://plugins.svn.wordpress.org/elasticpress" + }, + "time": "2026-05-07T18:21:34+00:00" }, { "name": "yahnis-elsts/plugin-update-checker", From b43a5cd1abf8307b1bc1c392ccfbf16c4828163b Mon Sep 17 00:00:00 2001 From: Roric van Schalkwijk Date: Tue, 2 Jun 2026 13:47:11 +0200 Subject: [PATCH 2/2] release: v3.8.4 --- openpub-base.php | 2 +- src/Base/Foundation/Plugin.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/openpub-base.php b/openpub-base.php index 5e983ea..1406dcf 100644 --- a/openpub-base.php +++ b/openpub-base.php @@ -4,7 +4,7 @@ * Plugin Name: Yard | OpenPub Base * Plugin URI: https://www.openwebconcept.nl/ * Description: Acts as foundation for other OpenPub related content plugins. This plugin implements actions to allow for other plugins to add and/or change Custom Posttypes, Metaboxes, Taxonomies, en Posts 2 posts relations. - * Version: 3.8.3 + * Version: 3.8.4 * Author: Yard | Digital Agency * Author URI: https://www.yard.nl/ * License: GPL-3.0 diff --git a/src/Base/Foundation/Plugin.php b/src/Base/Foundation/Plugin.php index c779b44..622cebe 100644 --- a/src/Base/Foundation/Plugin.php +++ b/src/Base/Foundation/Plugin.php @@ -8,7 +8,7 @@ class Plugin { public const NAME = 'openpub-base'; - public const VERSION = '3.8.3'; + public const VERSION = '3.8.4'; protected string $rootPath; public Config $config;