From afbd878508f8ddba49525265f9cb0e279113a4c5 Mon Sep 17 00:00:00 2001 From: Sebastian Thulin Date: Mon, 27 Nov 2023 11:33:12 +0100 Subject: [PATCH 1/3] Include sentry configuration, with __DIR__ constant. This enables running wpcli in sub directories. --- wp-config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-config.php b/wp-config.php index 16857a4..7781cca 100644 --- a/wp-config.php +++ b/wp-config.php @@ -90,7 +90,7 @@ * Sentry configuration for error reporting. */ if (file_exists(__DIR__ . '/config/sentry.php')) { - require_once 'config/sentry.php'; + require_once __DIR__ . 'config/sentry.php'; } /** From 9b6bce229a976e76169d4cc3ffb201374eb7ea3d Mon Sep 17 00:00:00 2001 From: Sebastian Thulin Date: Mon, 27 Nov 2023 14:17:12 +0100 Subject: [PATCH 2/3] Fix sentry configuration mishap --- wp-config.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/wp-config.php b/wp-config.php index 7781cca..7935b30 100644 --- a/wp-config.php +++ b/wp-config.php @@ -84,15 +84,6 @@ require_once __DIR__ . '/config/multisite.php'; } -/** - * Sentry settings - * - * Sentry configuration for error reporting. - */ -if (file_exists(__DIR__ . '/config/sentry.php')) { - require_once __DIR__ . 'config/sentry.php'; -} - /** * Developer settings * From ce011fc5ad08918f8d877674d3777930c1934994 Mon Sep 17 00:00:00 2001 From: Sebastian Thulin Date: Tue, 28 Nov 2023 09:54:35 +0100 Subject: [PATCH 3/3] Modularity 5.17.1 This introduces the Manual Input Module. Transfers data from Posts module. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 4f4bc40..2ddb027 100644 --- a/composer.json +++ b/composer.json @@ -66,7 +66,7 @@ "helsingborg-stad/lix-calculator": "~4.0.2", "helsingborg-stad/media-usage": "~3.0.4", "helsingborg-stad/mod-my-pages": "~1.0.3", - "helsingborg-stad/modularity": "5.15.2", + "helsingborg-stad/modularity": "~5.17.1", "helsingborg-stad/modularity-contact-banner": "~3.1.0", "helsingborg-stad/modularity-entryscape": "~3.0.3", "helsingborg-stad/modularity-form-builder": "~3.0.4",