Releases: geostyler/geostyler-qgis-parser
Releases · geostyler/geostyler-qgis-parser
v3.0.0
v2.1.0
v2.1.0-next.3
v2.1.0-next.2
v2.0.1
2.0.1 (2024-06-18)
Bug Fixes
- deps: update dependency @types/lodash to v4.14.197 (3a25799)
- deps: update dependency @xmldom/xmldom to v0.8.10 (0854cef)
- deps: update dependency core-js to v3.37.1 (3a6dfb5)
- deps: update dependency geostyler-cql-parser to v3.0.2 (56464a9)
- deps: update dependency xml2js to ^0.5.0 [security] (55a0888)
- deps: update dependency xml2js to ^0.6.0 (52e6bad)
Version 2.0.0
Breaking
The qgis-parser now expects an input style in the format of the geostyler-style v7 when reading. The write output is also in the format of geostyler-style v7.
What's Changed
- Fix missing source file warnings by @juburr in #271
- Bump terser from 4.8.0 to 4.8.1 by @dependabot in #342
- Revert "Bump terser from 4.8.0 to 4.8.1" by @KaiVolland in #346
- Fixes for windows and CI/DEV enhanncements by @KaiVolland in #345
- Bump @types/node from 14.17.27 to 18.6.3 by @dependabot in #347
- Bump minimist from 1.2.5 to 1.2.6 by @dependabot in #306
- Ignore fill color property when style = no by @slafayIGN in #365
- Bump eslint from 8.20.0 to 8.28.0 by @dependabot in #397
- Bump json-schema and jsprim by @dependabot in #399
- Updates all dependencies including geostlyer-style v7 by @KaiVolland in #401
New Contributors
- @juburr made their first contribution in #271
- @slafayIGN made their first contribution in #365
Full Changelog: v1.0.0...v2.0.0
Version 1.0.0
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
Version 0.3.0
- Update geostyler-style to v4 70eb5e8
- Change comparison operator 980ff73
- Refine qml output for labels with no symbolizer rules 057d1c2
- Distinction between outline and fill opacity 74c4566
- Additional buffer props for label styles 2872293
- Uses outline and opacity defaults for polygon fill 1c12b4b
- Modifies the test for line width unit f032d26
- Adds line width unit pixel 1b09ed8
- Adds a new test for text-buffer fbaf2ea
- Fixes an error when writing additional text rules 132b755
- Several dependecy updates