diff --git a/CHANGELOG.md b/CHANGELOG.md index c1533858e8..fc5605ccaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 4.11.1 (2024-12-18) + +### Fixes + +* Corrected a unit test that relies on the sitemap module, as it now makes explicit that the project level `baseUrl` must be set for a successful experience, and the module level `baseUrl` was set earlier. No other changes. + ## 4.11.0 (2024-12-18) ### Adds diff --git a/package.json b/package.json index 630b12fbb0..a6147676c9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "apostrophe", - "version": "4.11.0", + "version": "4.11.1", "description": "The Apostrophe Content Management System.", "main": "index.js", "scripts": { @@ -149,4 +149,4 @@ "browserslist": [ "ie >= 10" ] -} \ No newline at end of file +} diff --git a/test/esm-project/app.js b/test/esm-project/app.js index 0a0962c34b..2a796a8007 100644 --- a/test/esm-project/app.js +++ b/test/esm-project/app.js @@ -1,16 +1,13 @@ export default { root: import.meta, shortName: 'esm-project', + baseUrl: 'http://localhost:3000', modules: { '@apostrophecms/express': { options: { address: '127.0.0.1' } }, - '@apostrophecms/sitemap': { - options: { - baseUrl: 'http://localhost:3000' - } - } + '@apostrophecms/sitemap': {} } }; diff --git a/test/workspaces-project/app.js b/test/workspaces-project/app.js index 1574c016fe..72a8e10b8e 100644 --- a/test/workspaces-project/app.js +++ b/test/workspaces-project/app.js @@ -1,16 +1,13 @@ module.exports = { root: module, shortName: 'workspaces-project', + baseUrl: 'http://localhost:3000', modules: { '@apostrophecms/express': { options: { address: '127.0.0.1' } }, - '@apostrophecms/sitemap': { - options: { - baseUrl: 'http://localhost:3000' - } - } + '@apostrophecms/sitemap': {} } };