Skip to content

Releases: georchestra/mapstore2-georchestra

2023.02.02-RC1-geOrchestra

29 May 10:13
Compare
Choose a tag to compare
Pre-release

What's Changed

This patch release contains the following change

  • #663 #684 Add new geOrchestra header
  • #677 Change favicon location to /
  • #693 Update docker hub documentation automaticly
  • #710 Remove CDN resources
  • #702 #703 add Unsupported browser page
  • #709 Allow default theme with css file without need to rebuild

Docker Image

Docker image

Full Changelog: 2023.02.01-geOrchestra...2023.02.02-RC1-geOrchestra

2023.02.01-geOrchestra

06 Mar 08:48
0e29a46
Compare
Choose a tag to compare

What's Changed

This patch release contains the following change

Docker Image

https://hub.docker.com/r/georchestra/mapstore2-georchestra/tags?page=1&name=2023.02.01-geOrchestra

Full Changelog
2023.02.00-geOrchestra...2023.02.01-geOrchestra

2023.02.00-geOrchestra

08 Feb 11:42
cb296d6
Compare
Choose a tag to compare

What's Changed

This release contains updates developed as part of

The MapStore git submodule revision has also been updated to point to the latest stable version of MapStore (2023.02), where the majority of the involved updates have been contributed.

Relevant fixes and enhancements

Read more

2023.02.00-RC4-geOrchestra

06 Dec 17:46
Compare
Choose a tag to compare
Pre-release

What's Changed

Full Changelog: 2023.02.00-RC3-geOrchestra...2023.02.00-RC4-geOrchestra

2023.02.00-RC3-geOrchestra

12 Oct 09:19
fc017e1
Compare
Choose a tag to compare
Pre-release

What's Changed

This Release Candidate contains updates developed as part of MOM MS4 - Phase III. The MapStore git sub-module revision has been also updated to point to the latest stable version of MapStore (2023.02.xx) where all the involved updates have been contributed and released as part of v2023.02.00.

Relevant fixes and enhancements

Documentation update

MapStore documentation

MapStore latest documentation to use as a reference:

Involved migration guidelines for this RC:

Docker Image

https://hub.docker.com/r/geosolutionsit/mapstore2-georchestra/tags?page=1&name=2023.02.00-RC3-geOrchestra

Configuration changes

new.json changes

To configure COG layer as background. A configuration similar to one shown below has to be added to new.json

{
...
"layers":{[
...
+ {
+   "type": "cog",
+   "title": "Cloud optimized geotiff",
+   "visibility": false,
+   "sources": [{
+     "url": "https://example.com/coglayer.tif"
+   }],
+   "group": "background"
+ }
...
]}

localConfig.json changes

  • To properly reproject the COG layer, the projectionDefs array must be updated with the projection configuration required for the COG layers
  • Also COG layer can be added as static background service to catalog under initialState.defaultState.catalog.default
{
...
"staticServices": {
  "default_map_backgrounds": {
    ...
    "backgrounds":[{
      ...
+      {
+       "type": "cog",
+       "title": "Cloud optimized geotiff",
+        "visibility": false,
+        "sources": [{
+        "url": "https://example.com/coglayer.tif"
+        }],
+        "group": "background"
+      }
      ...
    }]
  }
}

Full Changelog: 2023.02.00-RC2-geOrchestra...2023.02.00-RC3-geOrchestra

2023.02.00-RC2-geOrchestra

07 Aug 13:54
fc63fed
Compare
Choose a tag to compare
Pre-release

What's Changed

This Release Candidate contains updates developed as part of MOM MS4 - Phase II. The MapStore git sub-module revision has been also updated to point to the latest MapStore where the most part of involved updates has been contributed (the official release for all of them is expected for the next MapStore major release 2023.02.00).

  • #583 [Share plugin - Permalink] Add a permalink functionality by @dsuren1 in #634
  • #584 [Context Manager ] Ability to import/export an application context by @dsuren1 in #634
  • #415 Better handle of context access restriction by @dsuren1 in #634
  • #634: Update MS to latest version to include Phase II issues by @dsuren1 in #635

Relevant fixes and enhancements

Documentation update

MapStore documentation

MapStore latest documentation to use as a reference:

Involved migration guidelines for this RC:

Docker Image

https://hub.docker.com/r/geosolutionsit/mapstore2-georchestra/tags?page=1&name=2023.02.00-RC2-geOrchestra

Configuration changes

localConfig.json changes

If the localConfig.json has been customized:

  • To enable import and export on Context. Please add the following to context-creator
{
 "context-creator": {
     ...
+    "ContextImport",
+   "ContextExport"
     ...
}
  • To activate the permalink and support redirection functionality, you must add a new permalink section to plugins root object of localConfig.json, as shown below
{
"monitorState": [
...
+ {"name": "userrole", "path": "security.user.role"},
...
],
...
+    "permalink": [
+        "Permalink",
+        "FeedbackMask"
+    ]
...
}
  • To make Permalink tab visible on the Share panel, the following changes has to be made on the respective modes
{
    "desktop": [
        ...
+      "Permalink",
        ...
    ],
    "dashboard": [
        ...
+     "Permalink",
        ...
    ],
    "geostory": [
        ...
+     "Permalink",
        ...
    ]
}

pluginConfig.json changes

  • Add Permalink plugin configuration to the root and modify Share plugin as shown below to allow Permalink in context-creator plugin configuration
{
...
   {
      "name": "Share",
      "glyph": "share",
      "title": "plugins.Share.title",
      "description": "plugins.Share.description",
      "dependencies": [
        "SidebarMenu"
      ],
+    "children": [
+       "Permalink"
+     ],
+    "autoEnableChildren": [
+       "Permalink"
+     ]
    },
+   {
+      "name": "Permalink",
+      "glyph": "link",
+      "title": "plugins.Permalink.title",
+      "description": "plugins.Permalink.description"
+   }
...
}

app.jsx changes

  • The app pages must be updated with a new entry to allow permalink handling and redirection
+ import Permalink from '@mapstore/product/pages/Permalink';
const appConfig = {
    ...
    pages: [
        // my custom pages ...,
+        {
+           name: "permalink",
+           path: "/permalink/:pid",
+           component: Permalink
+       }
    ]
};

Database Update

Add new category PERMALINK to gs_category table. To update your database you need to apply this SQL scripts to your database

Note: If the category is missing, MapStore will attempt to create Permalink category when creating the first permalink on the application

PostgreSQL
-- New PERMALINK category
INSERT INTO geostore.gs_category(id, name) VALUES (nextval('geostore.hibernate_sequence'), 'PERMALINK') ON CONFLICT DO NOTHING;
H2
-- New PERMALINK category
INSERT INTO gs_category(name) VALUES ('PERMALINK');
Oracle
-- New PERMALINK category
INSERT INTO gs_category(id, name) VALUES (hibernate_sequence.nextval, ‘PERMALINK');

Full Changelog: 2023.02.00-RC1-geOrchestra...2023.02.00-RC2-geOrchestra

2023.02.00-RC1-geOrchestra

04 Jul 06:33
3825870
Compare
Choose a tag to compare
Pre-release

What's Changed

This Release Candidate contains updates developed as part of MOM MS4 - Phase I. The MapStore git sub-module revision has been also updated to point to the latest MapStore where the most part of involved updates has been contributed (the official release for all of them is expected for the next MapStore major release 2023.02.00).

Relevant fixes and enhancements

Documentation update

MapStore documentation

MapStore latest documentation to use as a reference:

Involved migration guidelines for this RC:

Read more

2022.02.02-geOrchestra

05 Jun 13:12
015b0c3
Compare
Choose a tag to compare

Release notes

This release includes new updates provided in the stable branch 2022.02.xx

Relevant fixes and enhancements

Docker Image
https://hub.docker.com/r/geosolutionsit/mapstore2-georchestra/tags?page=1&name=2022.02.02-geOrchestra

Full Changelog: 2022.02.01-geOrchestra...2022.02.02-geOrchestra

2022.02.01-geOrchestra

07 Mar 10:23
Compare
Choose a tag to compare

This release mainly fixes an issue with Jackson version appearing multiple times in the classpath.

Full Changelog: 2022.02.00-geOrchestra...2022.02.01-geOrchestra

2022.02.00-geOrchestra

11 Jan 11:49
Compare
Choose a tag to compare

What's Changed

This is the final release for MS#3 including all updates previously released within related RCs of the same series and new updates provided in the stable branch 2022.02.xx after the RC3.

Relevant fixes and enhancements

Documentation updates

Docker Image
https://hub.docker.com/r/geosolutionsit/mapstore2-georchestra/tags?page=1&name=2022.02.00-geOrchestra

MapStore documentation
https://docs.mapstore.geosolutionsgroup.com/en/2022.02.xx/

Full Changelog
22.0.4-georchestra...2022.02.00-geOrchestra

Related releases

Longitudinal Profile extension RC2: https://github.com/georchestra/mapstore2-longitudinal-profile/releases/tag/v1.0.0-RC2
MapStore Extensions: https://github.com/geosolutions-it/MapStoreExtension/releases/tag/v2022.02.03

Configuration steps