From 29548e7df12de275b0995bb8f02647dc5cf58e93 Mon Sep 17 00:00:00 2001 From: "Juergen E. Fischer" Date: Fri, 21 Jul 2017 14:00:06 +0200 Subject: [PATCH] Release of 2.18.11 --- CMakeLists.txt | 2 +- ChangeLog | 313 +++++++++++++++++++++++++++++++++++++++++++++++ debian/changelog | 10 +- 3 files changed, 322 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e50005e7c9ad..263b9b38f389 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ SET(CPACK_PACKAGE_VERSION_MAJOR "2") SET(CPACK_PACKAGE_VERSION_MINOR "18") -SET(CPACK_PACKAGE_VERSION_PATCH "10") +SET(CPACK_PACKAGE_VERSION_PATCH "11") SET(COMPLETE_VERSION ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}) SET(RELEASE_NAME "Las Palmas") IF (POLICY CMP0048) # in CMake 3.0.0+ diff --git a/ChangeLog b/ChangeLog index 86decdcddf24..ea214adfe7bd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,316 @@ +Nyall Dawson 2017-07-21 + + Correctly create raster for heatmap output + + Incorrect creation of geo transform was leading to invalid raster + outputs and many "creating warped vrt" log messages + + (cherry-picked from 5241c74c) + +Nyall Dawson 2017-07-21 + + Fix QgsFieldComboBox::setField sets incorrect field when filter is present + + (cherry-picked from 6e49403) + +Merge: 7138f639ad f2e221d50d +Alexander Bruy 2017-07-20 + + Merge pull request #4897 from NaturalGIS/fix_qgis_import_in_postgis + + [processing] fix QGIS import in PostGIS optional parameter (fix #16871) + +Merge: 63250dcc1b 6126a4b79e +Alexander Bruy 2017-07-20 + + Merge pull request #4895 from NaturalGIS/fix_saga_ltr_catchaments_area + + [processing] fix SAGA LTR Catchment Area tools + +Giovanni Manghi 2017-07-20 + + fix QGIS import in PostGIS optional parameter. Fixes #16871 + +Giovanni Manghi 2017-07-20 + + fix SAGA LTR Catchement Area tools + +Merge: 3120068bf1 08d0476048 +Alexander Bruy 2017-07-20 + + Merge pull request #4887 from NaturalGIS/grass_218_voronoi_skeleton + + port GRASS7 v.voroni.skeleton to 2_18 + +Sandro Santilli 2017-07-19 + + Do not assume input SQL is ASCII + + Fixes #16833 + +Sandro Santilli 2017-07-19 + + Add test for #16833 + +Giovanni Manghi 2017-07-19 + + port GRASS7 v.voroni.skeleton to 2_18 + +Sandro Santilli 2017-07-19 + + [travis] Force using precise + +Merge: b036b0bab1 7b424e62f9 +Jürgen Fischer 2017-07-19 + + Merge pull request #4883 from 3nids/copy_datum_218 + + consider datum transformation when pasting features (fixes #16846) + +Denis Rouzaud 2017-07-19 + + consider datum transformation when pasting features + + proper fix in master bae6d563 could not be cherry-picked easily, this is not a perfect solution but it does solve the issue + +David 2017-07-17 + + Codestyle + +David 2017-07-17 + + Fix in attributetable - unable to update column + + Fix #16746 + +David 2017-07-17 + + Fix crash in attributetable when removing more than one column + + References #16746 + +Juergen E. Fischer 2017-07-17 + + update translations of bad string (followup a0f9837) + +Nyall Dawson 2017-07-17 + + Fix bad string + +Matthias Kuhn 2017-07-13 + + Return invalid fid instead of null fid + + The default comparison code for two QVariants does a really crappy job + when it comes to NULL values. + I.e. it will return true for `QVariant( 0 ) == QVariant( QVariant::Int )` + We work around this issue here by returning an invalid QVariant instead, + which - and luckily also Qt is aware of this - also is different from 0. + + Fix #16745 + +Nyall Dawson 2017-07-14 + + Fix crash when using line pattern fills + + Line pattern fill was not calling stopRender on the line symbol! + + (cherry-picked from 6067d514) + +Nyall Dawson 2017-07-14 + + Port grass followup to area calculation fix + + https://trac.osgeo.org/grass/changeset/71259 + + refs discussion at + + https://trac.osgeo.org/grass/ticket/3369 + + (cherry-pick from 773b2e) + +Merge: eec19de2ed 0a13019cef +Nyall Dawson 2017-07-11 + + Merge pull request #4833 from pblottiere/bugfix_relationquote_218 + + [bugfix] Fixes relation widget reference when filter value contains a quote #16399 (backport) + +Blottiere Paul 2017-07-10 + + Add tests + +Merge: ff5181c2e9 7db483d604 +Nyall Dawson 2017-07-11 + + Merge pull request #4830 from nyalldawson/fix_categorised_render_crash + + Fix categorised render crash + +Nyall Dawson 2017-07-11 + + Use windows path format for project_path/project_folder variables on windows + + (cherry-picked from 2745797) + +Nyall Dawson 2017-07-10 + + Partially revert "categorized renderer: also setup symbol render context for hashed symbols" + + This partially reverts commit c7c52442f71a6a17ea1ad97e741b2b4b6d51f698. + + Causes a race condition which results in random crashes while + using the categorised symbol renderer. + + The intent behind the original commit is unknown + +Nyall Dawson 2017-07-10 + + Add an assert to protect multiple calls to QgsSymbolV2::startRender() + while rendering has already been started for a particular symbol instance + + Relates to a random but frequent crash which occurs when using the + categorised symbol renderer - tracked down to a race condition + in which multiple concurrent calls to startRender() are performed + on a single symbol instance. + +Blottiere Paul 2017-07-10 + + [bugfix] Fixes relation widget reference when filter value contains a quote #16399 + +Merge: fda97b22bd a0d6412954 +Nyall Dawson 2017-07-10 + + Merge pull request #4829 from nyalldawson/fix_16820_218 + + Fix incorrect area calculation in corner cases (fix #16820) + +Nyall Dawson 2017-07-10 + + Fix incorrect area calculation in corner cases (fix #16820) + + In certain circumstances very proximal nodes could cause instability + in the ellipsoidal area calculation. + + Port (slightly tweaked) fix from grass changeset 71167 for same issue, + and add a unit test + + (cherry-picked from d850393) + +Even Rouault 2017-07-08 + + [OGR] Use OGR_F_SetFieldNull() with GDAL >= 2.2 to avoid GeoJSON fields to be unset (fixes #16812) + +Matthias Kuhn 2017-07-07 + + Support for PyQt5 + +Blottiere Paul 2017-07-04 + + [bugfix] Fixes relation widget when switching between layer styles #16100 + +Blottiere Paul 2017-07-06 + + Add unit tests + +Merge: eb1a1d5b35 4886b36bce +Alexander Bruy 2017-07-07 + + Merge pull request #4800 from radosuav/release-2_18 + + [processing] fixes for zonal statistics algorithm + +rldhont 2017-07-06 + + [Server] Update test masks + +Nathan Woodrow 2017-07-06 + + Don't duplicate layer tree node when alt is held + + Looks like it duplicates the layer but it really just copies the node + meaning QGIS can get confused + + Backport of e49aaed + +rldhont 2017-07-05 + + Fix GML2 after Port GML3 improvements to 2.18 branch + +Juergen E. Fischer 2017-07-05 + + Only convert geometries to provider type when provider does strict type checking (ie. not for shapes; fixes #16593, #16784, #16792, #16770, followup 53d90b547) + +Nathan Woodrow 2017-07-05 + + [MSSQL] Fix string length when using nchar, nvarchar, ntext + +rldhont 2017-07-04 + + [Geometry] Simplify QgsCurvePolygonV2::asGML3 + + Get back to simple code + +volaya 2017-07-04 + + [processing] Correctly call TYPE_RASTER constant + + Fixes #16786 + +Juergen E. Fischer 2017-07-04 + + debian packaging: drop explicit libopenscenegraph-dev build dependency + +Nathan Woodrow 2017-07-04 + + [MSSQL] Fix connection string issue for browser + +Even Rouault 2017-07-03 + + Fix build with older QT 4 (CentOS 7) + +Even Rouault 2017-07-02 + + [WFS provider] Do not be confuse by elements that have ref attribute when parsing DescribeFeatureType response; and fix support of (deprecated) ref='gml:XXXXProperty' attributes + +radosuav 2017-06-30 + + [Processing] Fixes for zonal statistics algorithm: + + 1. Mask NaN values instead of converting them to 0. + 2. Handle rasters for which raster value offset and scale have not been + set. + +rldhont 2017-06-28 + + [BUGFIX] QgsCurvePolygonV2::asGML, add interior ring only if one exists + +Juergen E. Fischer 2017-06-30 + + fix 20197c2fa (refs #13520) + + (cherry picked from commit 6dfcf402278ea271cbbe960758937c9b98616db9) + +Alexander Bruy 2016-11-03 + + [processing] add missed description files for OTB 5.4.0 + + (cherry picked from commit 8b3c39a22043a923cae33f0111a8a2010c72c42e) + +Even Rouault 2017-06-26 + + "[GDAL provider] Set VRT_SHARED_SOURCE=NO configuration option by default (#16507) + + This will avoid crashes with VRT datasets in multi-threaded use. + +Marco Hugentobler 2017-06-26 + + Fix crash in QgsMultiLineStringV2::asGML2 + +Juergen E. Fischer 2017-06-23 + + Release of 2.18.10 + Nathan Woodrow 2017-06-23 [MSSQL] Don't MakeValid on geometries diff --git a/debian/changelog b/debian/changelog index ba7e002ceb45..0a1cfab1a895 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,14 @@ -qgis (2.18.10) UNRELEASED; urgency=medium +qgis (2.18.11) UNRELEASED; urgency=medium + + * Release of 2.18.11 + + -- Jürgen E. Fischer Fri, 21 Jul 2017 14:00:06 +0200 + +qgis (2.18.10) unstable; urgency=medium * Release of 2.18.10 - -- Jürgen E. Fischer Fri, 23 Jun 2017 14:00:07 +0200 + -- Jürgen E. Fischer Fri, 21 Jul 2017 14:00:06 +0200 qgis (2.18.9) unstable; urgency=medium