diff --git a/how-to/workspace-platform-starter/CHANGELOG.md b/how-to/workspace-platform-starter/CHANGELOG.md index f14f6186d8..d9d87ba157 100644 --- a/how-to/workspace-platform-starter/CHANGELOG.md +++ b/how-to/workspace-platform-starter/CHANGELOG.md @@ -2,7 +2,8 @@ ## v19.1.0 -- Breaking Change (if you do not update your manifest): Added modules as an option for platformProvider settings and made the workspace platform starter platform override a module (so you can decide to load it, chain it with other overrides or exclude it). Please see the new document [how to customize your platform override](./docs/how-to-customize-your-platform-override.md). If you want the default platform override to check endpoints to for saving/fetching workspaces and pages then you need to add the wps-platform-override module id to the endpoint clients array in the endpointProvider (see the manifest.fin.json as an example). +- Breaking Change (if you do not update your manifest): Added modules as an option for platformProvider settings and made the workspace platform starter platform override a module (so you can decide to load it, chain it with other overrides or exclude it). Please see the new document [how to customize your platform override](./docs/how-to-customize-your-platform-override.md). If you want the default platform override to check endpoints to for saving/fetching workspaces and pages then you need to add the default-wps-platform module id to the endpoint clients array in the endpointProvider (see the manifest.fin.json as an example). +- Updated module ids for default interop override to reflect new naming of modules for platform override: default-wps-interop instead of wps-interop-override. ## v19.0.0 @@ -32,7 +33,7 @@ - Updated: modules/composite/default-workspace/lifecycle logic to listen out for the new `apply` action. - Improved performance of switching schemes - Improved performance of computing dock configuration, especially on theme changes. -- Breaking Change (if you do not update your manifest): Added modules as an option for platformProvider.interop settings and made the workspace platform starter interop override a module (so you can decide to load it, chain it with other overrides or exclude it). Please see the new document [how to customize your interop broker](./docs/how-to-customize-your-interop-broker.md). If you want the default interop broker to check endpoints to see if a context type should be enriched through an endpoint then you need to add the wps-interop-override module id to the endpoint clients array in the endpointProvider (see the manifest.fin.json as an example). +- Breaking Change (if you do not update your manifest): Added modules as an option for platformProvider.interop settings and made the workspace platform starter interop override a module (so you can decide to load it, chain it with other overrides or exclude it). Please see the new document [how to customize your interop broker](./docs/how-to-customize-your-interop-broker.md). If you want the default interop broker to check endpoints to see if a context type should be enriched through an endpoint then you need to add the default-wps-interop module id to the endpoint clients array in the endpointProvider (see the manifest.fin.json as an example). - Added support for a title to be specified in the browserProvider that will be used as the platform name in the browser Quit menu option and the confirmation dialog. ## v17.2.0 diff --git a/how-to/workspace-platform-starter/docs/how-to-customize-your-interop-broker.md b/how-to/workspace-platform-starter/docs/how-to-customize-your-interop-broker.md index 9b6bebe5fc..817921e291 100644 --- a/how-to/workspace-platform-starter/docs/how-to-customize-your-interop-broker.md +++ b/how-to/workspace-platform-starter/docs/how-to-customize-your-interop-broker.md @@ -32,7 +32,7 @@ These are interop modules that provide custom interop broker logic. If there are "interop": { "modules": [ { - "id": "wps-interop-override", + "id": "default-wps-interop", "icon": "http://localhost:8080/favicon.ico", "title": "Workspace Platform Starter Interop Broker", "description": "This is the implementation included in workspace platform starter but it is now exposed as a module to allow for easy replacement.", @@ -62,7 +62,7 @@ In order for the wps interop override module to be able to use endpoints (just l "clientOptions": [ { "enabled": true, - "id": "wps-interop-override", + "id": "default-wps-interop", "endpointIds": [ "*" ] diff --git a/how-to/workspace-platform-starter/docs/how-to-customize-your-platform-override.md b/how-to/workspace-platform-starter/docs/how-to-customize-your-platform-override.md index dd817c83cd..ede58be2b8 100644 --- a/how-to/workspace-platform-starter/docs/how-to-customize-your-platform-override.md +++ b/how-to/workspace-platform-starter/docs/how-to-customize-your-platform-override.md @@ -31,7 +31,7 @@ These are platform modules that provide custom platform logic. If there are more ... "modules": [ { - "id": "wps-platform-override", + "id": "default-wps-platform", "icon": "http://localhost:8080/favicon.ico", "title": "Workspace Platform Starter Platform Override", "description": "This is the implementation included in workspace platform starter but it is now exposed as a module to allow for easy replacement.", @@ -60,7 +60,7 @@ In order for the wps platform override module to be able to use endpoints (just "clientOptions": [ { "enabled": true, - "id": "wps-platform-override", + "id": "default-wps-platform", "endpointIds": [ "*" ] diff --git a/how-to/workspace-platform-starter/public/manifest.fin.json b/how-to/workspace-platform-starter/public/manifest.fin.json index dc009384ae..6696f12978 100644 --- a/how-to/workspace-platform-starter/public/manifest.fin.json +++ b/how-to/workspace-platform-starter/public/manifest.fin.json @@ -101,7 +101,7 @@ }, "modules": [ { - "id": "wps-platform-override", + "id": "default-wps-platform", "icon": "http://localhost:8080/favicon.ico", "title": "Workspace Platform Starter Platform Override", "description": "This is the implementation included in workspace platform starter but it is now exposed as a module to allow for easy replacement.", @@ -188,7 +188,7 @@ }, "modules": [ { - "id": "wps-interop-override", + "id": "default-wps-interop", "icon": "http://localhost:8080/favicon.ico", "title": "Workspace Platform Starter Interop Broker", "description": "This is the implementation included in workspace platform starter but it is now exposed as a module to allow for easy replacement.", @@ -421,12 +421,12 @@ }, { "enabled": true, - "id": "wps-interop-override", + "id": "default-wps-interop", "endpointIds": ["*"] }, { "enabled": true, - "id": "wps-platform-override", + "id": "default-wps-platform", "endpointIds": ["*"] }, { diff --git a/how-to/workspace-platform-starter/public/pack.manifest.fin.json b/how-to/workspace-platform-starter/public/pack.manifest.fin.json index ed62f2d05c..bd644286e6 100644 --- a/how-to/workspace-platform-starter/public/pack.manifest.fin.json +++ b/how-to/workspace-platform-starter/public/pack.manifest.fin.json @@ -168,7 +168,7 @@ }, "modules": [ { - "id": "wps-interop-override", + "id": "default-wps-interop", "icon": "http://localhost:8080/favicon.ico", "title": "Workspace Platform Starter Interop Broker", "description": "This is the implementation included in workspace platform starter but it is now exposed as a module to allow for easy replacement.", diff --git a/how-to/workspace-platform-starter/public/settings.json b/how-to/workspace-platform-starter/public/settings.json index 1de1ae0ab3..460fa6c148 100644 --- a/how-to/workspace-platform-starter/public/settings.json +++ b/how-to/workspace-platform-starter/public/settings.json @@ -29,7 +29,7 @@ "rootUrl": "http://localhost:8080", "modules": [ { - "id": "wps-platform-override", + "id": "default-wps-platform", "icon": "http://localhost:8080/favicon.ico", "title": "Workspace Platform Starter Platform Override", "description": "This is the implementation included in workspace platform starter but it is now exposed as a module to allow for easy replacement.", @@ -115,7 +115,7 @@ }, "modules": [ { - "id": "wps-interop-override", + "id": "default-wps-interop", "icon": "http://localhost:8080/favicon.ico", "title": "Workspace Platform Starter Interop Broker", "description": "This is the implementation included in workspace platform starter but it is now exposed as a module to allow for easy replacement.", @@ -342,12 +342,12 @@ }, { "enabled": true, - "id": "wps-interop-override", + "id": "default-wps-interop", "endpointIds": ["*"] }, { "enabled": true, - "id": "wps-platform-override", + "id": "default-wps-platform", "endpointIds": ["*"] } ] diff --git a/how-to/workspace-platform-starter/public/third.manifest.fin.json b/how-to/workspace-platform-starter/public/third.manifest.fin.json index e9fdac8fbf..27992a5c06 100644 --- a/how-to/workspace-platform-starter/public/third.manifest.fin.json +++ b/how-to/workspace-platform-starter/public/third.manifest.fin.json @@ -161,7 +161,7 @@ }, "modules": [ { - "id": "wps-interop-override", + "id": "default-wps-interop", "icon": "http://localhost:8080/favicon.ico", "title": "Workspace Platform Starter Interop Broker", "description": "This is the implementation included in workspace platform starter but it is now exposed as a module to allow for easy replacement.",