Releases: geostyler/geostyler-openlayers-parser
Releases · geostyler/geostyler-openlayers-parser
v4.0.0
Breaking
- Updates openlayers to v7 and geostyler-style to v7 by @KaiVolland in #595
Full Changelog: v3.2.0...v4.0.0
Version 3.2.0
Updates the geostyler style version to 6.0.0 to handle expression aware style objects.
PRs
- Merge pull request #582 from geostyler/expressions 6455253
- Fix tests 7845bcb
- Update to geostyler-style 6.0.0 57d1284
- Merge pull request #560 from geostyler/dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-tslint-5.29.0 9cd3790
- Merge pull request #561 from geostyler/dependabot/npm_and_yarn/typescript-eslint/parser-5.29.0 8c4d9c6
- Merge pull request #563 from LukasLohoff/named-colors-follow-up d17ce07
- docs: fix getHexCode docs cf1c61d
- Bump @typescript-eslint/eslint-plugin-tslint from 5.28.0 to 5.29.0 a58c06e
- Bump @typescript-eslint/parser from 5.28.0 to 5.29.0 e643fab
Version 3.1.0
Version 3.0.2
Version 3.0.1
- Fix missing source file warnings #450
Version 3.0.0
Breaking
- Update to
geostyler-style v5#435
Migration-Guide:
The output of the readStyle and writeStyle methods has changed from the pure style to the ReadStyleResult/WriteStyleResult.
Version <3:
// read
const geostylerStyle = await olParser.readStyle(someOlStyle);
// write
const olStyle = await olParser.writeStyle(geostylerStyle);Version >=3:
// read
const { output: geostylerStyle } = await olParser.readStyle(someOlStyle);
// write
const { output: olStyle } = await olParser.writeStyle(geostylerStyle);Version 2.5.0
Version 2.4.0
Version 2.3.1
- make browser build es5 compatible 04c4021
Version 2.3.0
- Updates geostyler-style and ol 2654085
- Updates several other dependencies