From 4f6b0d0f5b68da11bc6a3857db8dff60cb97d01c Mon Sep 17 00:00:00 2001 From: Eduardo Feo-Flushing Date: Mon, 3 Nov 2025 13:32:02 +0300 Subject: [PATCH 1/2] Update nodebb-theme-harmony version to 2.1.23 --- install/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/package.json b/install/package.json index 5c730fe8d8..49188349f3 100644 --- a/install/package.json +++ b/install/package.json @@ -106,7 +106,7 @@ "nodebb-plugin-spam-be-gone": "2.3.2", "nodebb-plugin-web-push": "0.7.4", "nodebb-rewards-essentials": "1.0.2", - "nodebb-theme-harmony": "file:vendor/nodebb-theme-harmony-2.1.15", + "nodebb-theme-harmony": "file:vendor/nodebb-theme-harmony-2.1.23", "nodebb-theme-lavender": "7.1.19", "nodebb-theme-peace": "2.2.43", "nodebb-theme-persona": "14.1.12", From 697106c824600693036f3820709112da4b9271a5 Mon Sep 17 00:00:00 2001 From: EduardoFF Date: Mon, 3 Nov 2025 13:39:12 +0300 Subject: [PATCH 2/2] fixing lint issues --- test/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/api.js b/test/api.js index 5d1964523a..972d26aa04 100644 --- a/test/api.js +++ b/test/api.js @@ -635,7 +635,7 @@ describe('API', async () => { // Compare the schema to the response required.forEach((prop) => { if (schema.hasOwnProperty(prop)) { - assert(response.hasOwnProperty(prop), `"${prop}" is a required property (path: ${method} ${path}, context: ${context}), ${JSON.stringify(response)}`); + assert(response.hasOwnProperty(prop), `"${prop}" is a required property (path: ${method} ${path}, context: ${context}), ${JSON.stringify(response)}`); // Don't proceed with type-check if the value could possibly be unset (nullable: true, in spec) if (response[prop] === null && schema[prop].nullable === true) {