Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion geonode_mapstore_client/client/MapStore2
Submodule MapStore2 updated 49 files
+11 −2 .github/workflows/CI.yml
+1 −0 binary/pom.xml
+1 −1 pom.xml
+48 −2 web/client/api/GeoStoreDAO.js
+73 −0 web/client/components/manager/ipmanager/IPActions.jsx
+111 −0 web/client/components/manager/ipmanager/IPDialog.jsx
+107 −0 web/client/components/manager/ipmanager/__tests__/IPDialog-test.jsx
+1 −1 web/client/components/manager/rulesmanager/rulesgrid/enhancers/rulesgrid.js
+85 −5 web/client/components/map/cesium/__tests__/Layer-test.jsx
+3 −1 web/client/components/map/cesium/plugins/ThreeDTilesLayer.js
+1 −0 web/client/configs/localConfig.json
+33 −1 web/client/plugins/Isochrone/components/GeoSearchPicker.jsx
+12 −8 web/client/plugins/Isochrone/components/GraphHopperProvider.jsx
+99 −1 web/client/plugins/Isochrone/components/__tests__/GeoSearchPicker-test.jsx
+54 −4 web/client/plugins/Isochrone/components/__tests__/GraphHopperProvider-test.jsx
+245 −11 web/client/plugins/Isochrone/epics/__tests__/isochrone-test.js
+55 −11 web/client/plugins/Isochrone/epics/isochrone.js
+85 −1 web/client/plugins/Isochrone/reducers/__tests__/isochrone-test.js
+6 −0 web/client/plugins/Isochrone/reducers/isochrone.js
+9 −1 web/client/plugins/Itinerary/components/GraphHopperProvider.jsx
+12 −1 web/client/plugins/Itinerary/components/geosearchpicker/GeoSearchPicker.jsx
+382 −0 web/client/plugins/Itinerary/components/geosearchpicker/__tests__/GeoSearchPicker-test.jsx
+1 −4 web/client/plugins/Itinerary/containers/Itinerary.jsx
+93 −6 web/client/plugins/Itinerary/epics/__tests__/itinerary-test.js
+20 −4 web/client/plugins/Itinerary/epics/itinerary.js
+3 −0 web/client/plugins/Itinerary/utils/ItineraryUtils.js
+7 −0 web/client/plugins/Login.jsx
+297 −0 web/client/plugins/ResourcesCatalog/IPManager.jsx
+1 −1 web/client/plugins/ResourcesCatalog/ResourceDetails.jsx
+10 −2 web/client/plugins/ResourcesCatalog/components/PermissionsRow.jsx
+46 −2 web/client/plugins/ResourcesCatalog/containers/ResourcePermissions.jsx
+97 −0 web/client/plugins/ResourcesCatalog/hooks/__tests__/useIPRanges-test.js
+129 −0 web/client/plugins/ResourcesCatalog/hooks/useIPRanges.js
+9 −3 web/client/plugins/StreetView/components/CyclomediaView/Credentials.jsx
+7 −1 web/client/plugins/StreetView/components/CyclomediaView/CyclomediaView.js
+26 −0 web/client/plugins/StreetView/components/CyclomediaView/__tests__/Credentials-test.jsx
+31 −0 web/client/plugins/StreetView/components/CyclomediaView/__tests__/CyclomediaView-test.jsx
+2 −2 web/client/plugins/__tests__/Login-test.js
+92 −0 web/client/plugins/__tests__/RulesDataGrid-test.jsx
+2 −1 web/client/plugins/manager/EditorEnhancer.js
+2 −1 web/client/product/plugins.js
+5 −0 web/client/themes/default/less/resources-catalog/_permissions.less
+44 −1 web/client/translations/data.de-DE.json
+44 −1 web/client/translations/data.en-US.json
+44 −1 web/client/translations/data.es-ES.json
+44 −1 web/client/translations/data.fr-FR.json
+44 −1 web/client/translations/data.it-IT.json
+60 −0 web/client/utils/IPValidationUtils.js
+100 −0 web/client/utils/__tests__/IPValidationUtils-test.js
2 changes: 1 addition & 1 deletion geonode_mapstore_client/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"author": "GeoSolutions",
"license": "BSD-2-Clause",
"devDependencies": {
"@mapstore/project": "git+https://github.com/geosolutions-it/mapstore-project.git#master",
"@mapstore/project": "git+https://github.com/geosolutions-it/mapstore-project.git#geonode-5.0.x",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For improved build reproducibility, it is recommended to pin this dependency to a specific commit hash instead of a branch name. While using the geonode-5.0.x branch is an improvement over master, the branch can still receive further updates. This could lead to inconsistencies if npm install is run at different times, making builds non-reproducible. Pinning to a commit hash ensures that every build uses the exact same version of the dependency, which is a practice already followed for the MapStore2 submodule in this same PR.

"dotenv": "10.0.0",
"jsdoc": "4.0.0"
},
Expand Down