From 1f0e649a3d43fb930522e1c7243cda4ee0b81b8e Mon Sep 17 00:00:00 2001 From: minff <16268924+minff@users.noreply.github.com> Date: Wed, 21 Jul 2021 11:10:14 +0200 Subject: [PATCH] bump version 1.8.7 Signed-off-by: minff <16268924+minff@users.noreply.github.com> --- CHANGELOG.md | 11 +++++++++++ RELEASENOTE.md | 6 ++++++ XYZHubConnector/__init__.py | 2 +- XYZHubConnector/metadata.txt | 8 ++++---- XYZHubConnector/xyz_qgis/__init__.py | 2 +- 5 files changed, 23 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a0a463..020612d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## Version 1.8.7 (2021-07-22) + +#### Bug Fixes + +* Ensure xyz_id uniqueness via sqlite trigger instead of 'on replace conflict' constraint +* Ensure fields to be consistent with provider fields to prevent data corruption, especially after editing +* Ensure the paired order of fields-vector layer after a layer is removed (set fields to empty for deleted layer) +* Handle virtual fields (expression fields) in data loading +* Update test for parser and render +* Disconnect signal silently to avoid exception + ## Version 1.8.6 (2021-07-14) #### Bug Fixes diff --git a/RELEASENOTE.md b/RELEASENOTE.md index 518e816..7428f39 100644 --- a/RELEASENOTE.md +++ b/RELEASENOTE.md @@ -1,5 +1,11 @@ # Release Notes +## Version 1.8.7 (2021-07-22) + +🐛 FIXES 🐛 +* Ensure fields to be consistent to prevent data corruption +* Handle virtual fields (expression fields) in data loading + ## Version 1.8.6 (2021-07-14) 🐛 FIXES 🐛 diff --git a/XYZHubConnector/__init__.py b/XYZHubConnector/__init__.py index aac1032..78969bf 100644 --- a/XYZHubConnector/__init__.py +++ b/XYZHubConnector/__init__.py @@ -12,7 +12,7 @@ __copyright__ = "Copyright 2019, HERE Europe B.V." __license__ = "MIT" -__version__ = "1.8.6" +__version__ = "1.8.7" __maintainer__ = "Minh Nguyen" __email__ = "huyminh.nguyen@here.com" __status__ = "Development" diff --git a/XYZHubConnector/metadata.txt b/XYZHubConnector/metadata.txt index 9ac6d3a..407f992 100644 --- a/XYZHubConnector/metadata.txt +++ b/XYZHubConnector/metadata.txt @@ -11,7 +11,7 @@ name=XYZ Hub Connector qgisMinimumVersion=3.0 description=Connect QGIS to your personal space on HERE Data Hub and to your Interactive Map Layer on HERE Platform (experimental) -version=1.8.6 +version=1.8.7 author=HERE Europe B.V. email=huyminh.nguyen@here.com @@ -42,10 +42,10 @@ experimental=True # deprecated flag (applies to the whole plugin, not just a single version) deprecated=False -changelog=Version 1.8.6 (2021-07-14) +changelog=Version 1.8.7 (2021-07-22) 🐛 FIXES 🐛 - * Fixes compatibility with QGIS 3.20 - * Stability improvements + * Ensure fields to be consistent to prevent data corruption + * Handle virtual fields (expression fields) in data loading * .. more details on Github repos \ No newline at end of file diff --git a/XYZHubConnector/xyz_qgis/__init__.py b/XYZHubConnector/xyz_qgis/__init__.py index 779b1c0..b9f61d6 100644 --- a/XYZHubConnector/xyz_qgis/__init__.py +++ b/XYZHubConnector/xyz_qgis/__init__.py @@ -12,7 +12,7 @@ __copyright__ = "Copyright 2019, HERE Europe B.V." __license__ = "MIT" -__version__ = "1.8.6" +__version__ = "1.8.7" __maintainer__ = "Minh Nguyen" __email__ = "huyminh.nguyen@here.com" __status__ = "Development"