Skip to content

Release 7.0.0-1

Pre-release
Pre-release
Compare
Choose a tag to compare
@d-koppenhagen d-koppenhagen released this 12 Apr 18:32
· 139 commits to main since this release

7.0.0-1 (2024-04-12)

chore

  • set minimum peerDependency of OpenLayers to version 9.1.0 (8ae195c)
  • set minimum peerDependency of vue to version 3.4.15 (158f00e)

Code Refactoring

  • ol-animation-feature: remove unused exported component ol-animation-feature (90f082a)

Performance Improvements

  • prevent watching reactive props continously (45f9326)

BREAKING CHANGES

  • ol-animation-feature: The component ol-animation-feature was simply exposing the map, vectorLayer and it's passed properties. There was no need to use this component at all and therefore it has been removed. However, when the component was used in the past, make sure to remove it from your template and move the ref's for map and the layer to the correct components.
  • The minimum version of Vue is now 3.4.15 (npm i vue@^3.4.15)
  • The minimum version of OpenLayers is now 9.1.0 (npm i ol@^9.1.0)
  • the composable usePropsAsObjectProperties which is used as foundation in all components has been refactored.
    Props were watched always deeply and for lot's of components this was done multiple times since the components implement watchers by themselves.
    However, even if not expected, this may cause some side effects with reactive changes which must be applied for individual components when not implemented and therefore considered as a breaking change.
    Please check your app carefully when updating to the new major version.