Skip to content

Releases: geostyler/geostyler-mapfile-parser

Release v4.0.0

08 Jul 07:26
Compare
Choose a tag to compare
  • 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

v3.0.0...v4.0.0

Version 3.0.0

26 Apr 13:49
17c74e1
Compare
Choose a tag to compare

What's Changed

❗ 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

19 Oct 12:27
Compare
Choose a tag to compare

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

  • Merge pull request #125 from geostyler/jansule-patch-1 739b1fa
  • fix typo 907d4f3
  • Update README to match geostyler-style v5 3fe2e7e
  • Merge pull request #122 from jansule/geostyler-v5 1e7ef58

v1.0.0...v2.0.0

Version 1.0.0

13 Sep 12:54
Compare
Choose a tag to compare

pre-release 0.0.2

05 Jun 08:24
Compare
Choose a tag to compare
pre-release 0.0.2 Pre-release
Pre-release

Prepare initial release