Skip to content

Commit

Permalink
Update module ids
Browse files Browse the repository at this point in the history
  • Loading branch information
johnman committed Aug 29, 2024
1 parent acfb48d commit 5c39d6a
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 16 deletions.
5 changes: 3 additions & 2 deletions how-to/workspace-platform-starter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down Expand Up @@ -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": [
"*"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down Expand Up @@ -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": [
"*"
]
Expand Down
8 changes: 4 additions & 4 deletions how-to/workspace-platform-starter/public/manifest.fin.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down Expand Up @@ -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.",
Expand Down Expand Up @@ -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": ["*"]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down
8 changes: 4 additions & 4 deletions how-to/workspace-platform-starter/public/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down Expand Up @@ -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.",
Expand Down Expand Up @@ -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": ["*"]
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down

0 comments on commit 5c39d6a

Please sign in to comment.