Releases: geostyler/geostyler-openlayers-parser
Releases · geostyler/geostyler-openlayers-parser
Release 4.1.2
- Merge pull request #682 from geostyler/parsefontstring 339093f
- address review comments b6bdd70
- add declaration file 4a948dc
- Fix parsing of css font strings 08389c7
- Merge pull request #660 from geostyler/dependabot/npm_and_yarn/babel/plugin-proposal-object-rest-spread-7.20.7 53b20b1
- Merge pull request #665 from geostyler/dependabot/npm_and_yarn/types/jest-29.2.6 47382c9
- Merge pull request #666 from geostyler/dependabot/npm_and_yarn/http-cache-semantics-4.1.1 3b7ae76
- Merge pull request #678 from geostyler/dependabot/npm_and_yarn/babel/core-7.21.3 a6e03be
- Merge pull request #679 from geostyler/dependabot/npm_and_yarn/types/node-18.15.3 5440923
- Merge pull request #680 from geostyler/dependabot/npm_and_yarn/webpack-5.76.2 ce03768
- Bump webpack from 5.75.0 to 5.76.2 eea8eae
- Bump @types/node from 18.11.17 to 18.15.3 0c4959d
- Bump @babel/core from 7.20.5 to 7.21.3 51cafd7
- Bump http-cache-semantics from 4.1.0 to 4.1.1 7510b45
- Bump @types/jest from 29.2.4 to 29.2.6 073b77d
- Bump @babel/plugin-proposal-object-rest-spread from 7.20.2 to 7.20.7 0faa43e
Release 4.1.1
Version 4.1.0
What's Changed
- Updates openlayers to v7 and geostyler-style to v7 by @KaiVolland in #595
- fontWeight and fontStyle from textSymbolizer by @pragmaeuge in #615
- Update geostyler-style by @hwbllmnn in #647
- fillOpacity support for the markSymbolizer geostyler object by @pragmaeuge in #621
- Drop support for IconSymbolizer.size by @KaiVolland in #648
- Remove
graphicFill
from unsupportedProperties by @KaiVolland in #656 - Updates dependencies (ol to v7.2) and readd size parsing by @KaiVolland in #657
New Contributors
- @pragmaeuge made their first contribution in #615
Full Changelog: v3.2.0...v4.1.0
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);