Skip to content

Version 1.0.0

Compare
Choose a tag to compare
@jansule jansule released this 19 Oct 12:07

Breaking

  • update geostyler-style to v5 1bb1dbe

Migration-Guide:
The output of the readStyle and writeStyle methods has changed from the pure style to the ReadStyleResult/WriteStyleResult.

Version <1:

// read
const geostylerStyle = await qgisParser.readStyle(someQml);
// write
const qmlStyle = await qgisParser.writeStyle(geostylerStyle);

Version >=1:

// read
const { output: geostylerStyle } = await qgisParser.readStyle(someQml);
// write
const { output: qmlStyle }  = await qgisParser.writeStyle(geostylerStyle);

Dependency updates

  • Merge pull request #264 from jansule/geostyler-v5 71edcfd
  • Merge pull request #237 from geostyler/dependabot/npm_and_yarn/tar-6.1.11 3aad3de
  • Bump tar from 6.1.4 to 6.1.11 22c747d
  • Merge pull request #223 from geostyler/dependabot/npm_and_yarn/tar-6.1.4 6e8dfb0
  • Merge pull request #227 from geostyler/dependabot/npm_and_yarn/path-parse-1.0.7 4e11175
  • Bump path-parse from 1.0.6 to 1.0.7 7540c34
  • Bump tar from 6.0.2 to 6.1.4 fe1d1c1
  • Merge pull request #202 from geostyler/dependabot/npm_and_yarn/trim-newlines-3.0.1 cc2070c
  • Merge pull request #203 from geostyler/dependabot/npm_and_yarn/normalize-url-4.5.1 0d44ac3
  • Bump normalize-url from 4.5.0 to 4.5.1 11ec813
  • Bump trim-newlines from 3.0.0 to 3.0.1 b937836
  • 0.3.0 a75b2c3
  • Merge branch 'master' of github.com:geostyler/geostyler-qgis-parser 2d1ec68
  • 0.2.4 1d959d7

v0.3.0...v1.0.0