Releases: geostyler/geostyler-mapbox-parser
Releases · geostyler/geostyler-mapbox-parser
v6.0.0
6.0.0 (2024-06-25)
⚠ BREAKING CHANGES
- Switches to esm build and to vite. Users possibly
need to adapt their imports and their bundler.
Features
Bug Fixes
v6.0.0-next.2
v6.0.0-next.1
v5.0.1
v5.0.0
5.0.0 (2023-12-04)
⚠ BREAKING CHANGES
- use geostyler-style Sprite instead of string syntax
- This changes the typing of the MbStyle by making
the property 'source' required. Through this, we actually follow
the MapBox Style Specification. MbStyles that previously omitted the
'source' property, will now have to add it.
Features
- add sprite support (9d883be)
- add spriteCache (9043e10)
- keep track of mapbox sources and source layers in layers (a8f5d7c)
- parse placement of TextSymbolizer (#292) (9acb43f)
Bug Fixes
v4.0.0
What's Changed
- feat: add support for expression parsing 4d71bb7
- feat: introduces metadata to mapboxstyle 7d0621f
- docs: add funding information a51ec37
- Add renovate.json 8df5239
New Contributors
- @marcjansen made their first contribution in #229
Full Changelog: v3.1.1...v4.0.0
Version 3.1.1
What's Changed
- Circle MarkSymbolizer: support explicitly only fillOpacity and update unsupportedProperties by @ocruze in #138
New Contributors
Full Changelog: v3.1.0...v3.1.1
Version 3.1.0
Version 3.0.0
What's Changed
- Update README to match geostyler-style v5 by @jansule in #51
- Fix missing source file warnings by @juburr in #66
- Bump @types/lodash from 4.14.175 to 4.14.182 by @dependabot in #125
- Bump webpack from 5.58.2 to 5.72.0 by @dependabot in #121
- Bump minimist from 1.2.5 to 1.2.6 by @dependabot in #131
- Update geostyler-style to v7 by @KaiVolland in #162
New Contributors
Full Changelog: v2.0.0...v3.0.0
Version 2.0.0
Breaking
- update parser to comply geostyler-style v5 b9eefdb
Migration-Guide:
The output of the readStyle
and writeStyle
methods has changed from the pure style to the ReadStyleResult
/WriteStyleResult
.
Version <2:
// read
const geostylerStyle = await mapboxParser.readStyle(someMapboxStyle);
// write
const mapboxStyle = await mapboxParser.writeStyle(geostylerStyle);
Version >=2:
// read
const { output: geostylerStyle } = await mapboxParser.readStyle(someMapboxStyle);
// write
const { output: mapboxStyle } = await mapboxParser.writeStyle(geostylerStyle);