Skip to content

Releases: geostyler/geostyler-openlayers-parser

Release 4.1.2

28 Mar 09:26
Compare
Choose a tag to compare
  • Merge pull request #682 from geostyler/parsefontstring 339093f
  • address review comments b6bdd70
  • add declaration file 4a948dc
  • Fix parsing of css font strings 08389c7
  • Merge pull request #660 from geostyler/dependabot/npm_and_yarn/babel/plugin-proposal-object-rest-spread-7.20.7 53b20b1
  • Merge pull request #665 from geostyler/dependabot/npm_and_yarn/types/jest-29.2.6 47382c9
  • Merge pull request #666 from geostyler/dependabot/npm_and_yarn/http-cache-semantics-4.1.1 3b7ae76
  • Merge pull request #678 from geostyler/dependabot/npm_and_yarn/babel/core-7.21.3 a6e03be
  • Merge pull request #679 from geostyler/dependabot/npm_and_yarn/types/node-18.15.3 5440923
  • Merge pull request #680 from geostyler/dependabot/npm_and_yarn/webpack-5.76.2 ce03768
  • Bump webpack from 5.75.0 to 5.76.2 eea8eae
  • Bump @types/node from 18.11.17 to 18.15.3 0c4959d
  • Bump @babel/core from 7.20.5 to 7.21.3 51cafd7
  • Bump http-cache-semantics from 4.1.0 to 4.1.1 7510b45
  • Bump @types/jest from 29.2.4 to 29.2.6 073b77d
  • Bump @babel/plugin-proposal-object-rest-spread from 7.20.2 to 7.20.7 0faa43e

v4.1.1...v4.1.2

Release 4.1.1

23 Mar 13:18
Compare
Choose a tag to compare
  • Merge pull request #681 from geostyler/fix-scale-check 9c6c281
  • Fix scale check 24624ad
  • Merge pull request #669 from buehner/fix-typo d8a9c2d
  • Fix typo d5d6edc
  • Merge pull request #667 from KaiVolland/marksymbolizer-opacity a7df833
  • fix: fixes opacity of ol mak symbolizer 651f670

v4.1.0...v4.1.1

Version 4.1.0

22 Dec 09:49
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.2.0...v4.1.0

v4.0.0

06 Sep 08:43
Compare
Choose a tag to compare

Breaking

  • Updates openlayers to v7 and geostyler-style to v7 by @KaiVolland in #595

Full Changelog: v3.2.0...v4.0.0

Version 3.2.0

05 Aug 11:54
Compare
Choose a tag to compare

Updates the geostyler style version to 6.0.0 to handle expression aware style objects.

PRs

  • Merge pull request #582 from geostyler/expressions 6455253
  • Fix tests 7845bcb
  • Update to geostyler-style 6.0.0 57d1284
  • Merge pull request #560 from geostyler/dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-tslint-5.29.0 9cd3790
  • Merge pull request #561 from geostyler/dependabot/npm_and_yarn/typescript-eslint/parser-5.29.0 8c4d9c6
  • Merge pull request #563 from LukasLohoff/named-colors-follow-up d17ce07
  • docs: fix getHexCode docs cf1c61d
  • Bump @typescript-eslint/eslint-plugin-tslint from 5.28.0 to 5.29.0 a58c06e
  • Bump @typescript-eslint/parser from 5.28.0 to 5.29.0 e643fab

v3.1.0...v3.2.0

Version 3.1.0

21 Jun 16:27
Compare
Choose a tag to compare

Features

  • adds unsupportedProperties to WriteStyleResult 663f450
  • feat: support parsing named colors bd89894

Bugfixes

  • fix parsing of simple fill styles d0ecfa0
  • fixes checkForUnsupportedProperties 3717014

Misc

  • Update browser example and add note 0435cbc
  • updates several packages c634e4b
  • update packages 0695e75
  • updates several dependencies
  • Update README.md 88546be

v3.0.2...v3.1.0

Version 3.0.2

17 Mar 13:53
fdfcdd7
Compare
Choose a tag to compare

Misc

v3.0.1...v3.0.2

Version 3.0.1

19 Jan 09:46
be5b02e
Compare
Choose a tag to compare
  • Fix missing source file warnings #450

v3.0.0...v3.0.1

Version 3.0.0

04 Oct 12:32
Compare
Choose a tag to compare

Breaking

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

Version <3:

// read
const geostylerStyle = await olParser.readStyle(someOlStyle);
// write
const olStyle = await olParser.writeStyle(geostylerStyle);

Version >=3:

// read
const { output: geostylerStyle } = await olParser.readStyle(someOlStyle);
// write
const { output: olStyle }  = await olParser.writeStyle(geostylerStyle);

v2.5.0...v3.0.0

Version 2.5.0

04 Oct 10:48
Compare
Choose a tag to compare

Features

  • Use ol typings and @terrestris/eslint-config-typescript #404
  • Add support for allowOverlap in TextSymbolizer #412
  • Add unsupportedProperties info object #420
  • Add support for offSet for IconSymbolizer and MarkSymbolizer #432
  • Write GraphicFill for PolygonSymbolizer #388

v2.4.0...v2.5.0