Releases: geostyler/geostyler-mapfile-parser
Releases · geostyler/geostyler-mapfile-parser
v4.0.1
Release v4.0.0
- fix: update np e4bbffb
- ci: update workflows 067d49d
- Merge pull request #251 from geostyler/renovate/configure aa62330
- Merge pull request #253 from geostyler/next 2b2e498
- feat: use/produce esm build 2bdb17c
- Add renovate.json 07c8037
- Merge pull request #250 from geostyler/adjust-nodejs-versions 0e82c09
- ci: use Node.js versions 18.x and 20.x 57fa7ec
- Merge pull request #249 from geostyler/add-funding-to-package-json d2067a9
- chore: add funding field to package.json 8afee99
- Merge pull request #248 from geostyler/funding-information 7c76803
- docs: add funding information 6212d45
Version 3.0.0
What's Changed
- Fix missing source file warnings by @juburr in #138
- Bump webpack from 5.58.2 to 5.73.0 by @dependabot in #197
- Bump minimist from 1.2.5 to 1.2.6 by @dependabot in #187
- Bump url-parse from 1.5.3 to 1.5.10 by @dependabot in #181
- Bump @typescript-eslint/parser from 4.31.0 to 4.33.0 by @dependabot in #117
- Update to geostyler-style v7 by @KaiVolland in #246
❗ BREAKING CHANGE:
Version 3.x will produce a geostyler-style in version 7.x
New Contributors
Full Changelog: v2.0.0...v3.0.0
Version 2.0.0
Breaking
- update geostyler-style to v5 1150fec
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 mapfileParser.readStyle(someMapfile);
// readMulti
const geostylerStyles = await mapfileParser.readMultiStyles(someMapfile);
// write
const mapfileStyle = await mapfileParser.writeStyle(geostylerStyle);
Version >=2:
// read
const { output: geostylerStyle } = await mapfileParser.readStyle(someMapfile);
// readMulti
const { output: geostylerStyles } = await mapfileParser.readMultiStyles(someMapfile);
// write
const { output: mapfileStyle } = await mapfileParser.writeStyle(geostylerStyle);
Minor changes
Version 1.0.0
Initial major release.
pre-release 0.0.2
Prepare initial release