Skip to content

Commit 8a47921

Browse files
committed
Release of 2.8.7
1 parent a8d4a0b commit 8a47921

File tree

3 files changed

+139
-3
lines changed

3 files changed

+139
-3
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SET(CPACK_PACKAGE_VERSION_MAJOR "2")
22
SET(CPACK_PACKAGE_VERSION_MINOR "8")
3-
SET(CPACK_PACKAGE_VERSION_PATCH "6")
3+
SET(CPACK_PACKAGE_VERSION_PATCH "7")
44
SET(COMPLETE_VERSION ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH})
55
SET(RELEASE_NAME "Wien")
66
IF (POLICY CMP0048) # in CMake 3.0.0+

ChangeLog

+130
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,133 @@
1+
Juergen E. Fischer <jef@norbit.de> 2016-02-26
2+
3+
german translation update
4+
5+
rldhont <rldhont@gmail.com> 2016-02-25
6+
7+
[BUGFIX][Processing] Reset SAGA InverseDistanceWeighted algorithm
8+
9+
Reset 2 parameters :
10+
* SEARCH_POINTS_ALL
11+
* SEARCH_POINTS_MAX
12+
13+
These parameters was defined in 2.1.2 but are available in the next version :
14+
http://www.saga-gis.org/saga_module_doc/2.1.3/grid_gridding_1.html
15+
16+
rldhont <rldhont@gmail.com> 2016-02-24
17+
18+
[BUGFIX][QGIS Server] Add charset for application/vnd.ogc.gml GetFeatureInfo
19+
20+
rldhont <rldhont@gmail.com> 2016-02-24
21+
22+
[BUGFIX] Extend WFS field type description (time)
23+
24+
Continue commit 2ad32f1635d39fd90bdf0c10fc98f467f6b4f5d3
25+
26+
rldhont <rldhont@gmail.com> 2016-02-23
27+
28+
[BUGFIX] Extend field type description
29+
30+
Nyall Dawson <nyall.dawson@gmail.com> 2016-02-23
31+
32+
Use QgsFields::fieldNameIndex when preparing column refs in expressions
33+
34+
Fixes handling of duplicate field names with different case in
35+
expressions
36+
37+
(cherry-picked from 0a84fbd6b5bf2a67c5e8407bf86a14ec40a526bf)
38+
39+
Nyall Dawson <nyall.dawson@gmail.com> 2016-02-23
40+
41+
Remove unused help button from style manager (fix #14055)
42+
43+
(cherry-picked from 17ed9d15fa00aeb305ef0dbee48896665d38b01c)
44+
45+
Nyall Dawson <nyall.dawson@gmail.com> 2016-02-23
46+
47+
Fix raster layers not rendering on Windows 8
48+
49+
The copy constructor for QgsContrastEnhancement was using
50+
an uninitialized value for the mContrastEnhancementAlgorithm
51+
member, resulting in no contrast function being set in
52+
certain occasions.
53+
54+
Refs #13155
55+
56+
(cherry-picked from cc505424cec9d5cf2a01663371d44d0fbd4a636a)
57+
58+
Nyall Dawson <nyall.dawson@gmail.com> 2016-02-23
59+
60+
Fix categorised renderer does not store changes to the source symbol
61+
62+
Avoids the frustrating situation where changes to a symbol in the
63+
categorised renderer are lost when the layer properties window
64+
is reopened
65+
66+
Also fix a leak in the Python bindings
67+
68+
(cherry-picked from 3744ac2fc4c65dd42fa78cfbc6f4df46a6d72722)
69+
70+
Nyall Dawson <nyall.dawson@gmail.com> 2016-02-23
71+
72+
Fix adding fields to mssql layers always resulted in error (fix #13340)
73+
74+
(cherry-picked from d827076637ac14fea68472a0d943745345d20d0c)
75+
76+
Nyall Dawson <nyall.dawson@gmail.com> 2016-02-23
77+
78+
Fix dropping geometryless tables to postgres browser items
79+
80+
(cherry-picked from 4a3d3db2d21862152c31a51a71ee4264ee77bb91)
81+
82+
Nyall Dawson <nyall.dawson@gmail.com> 2016-02-23
83+
84+
Fix dropping geometryless tables to spatialite browser items
85+
86+
(cherry-picked from 89815646fb8f7e97a230d6eb35b9207d1659f5ab)
87+
88+
Nyall Dawson <nyall.dawson@gmail.com> 2016-02-23
89+
90+
Increase maximum size of diagram spinbox (fix #14282)
91+
92+
(cherry-picked from 087e1489e3bdf2de96be4b0ba7286fb0168460ac)
93+
94+
Nyall Dawson <nyall.dawson@gmail.com> 2016-02-23
95+
96+
Correctly set parent for select by expression dialog in main window
97+
98+
(cherry-picked from ac2cd476b15a7f02df7eece887c842a6b7c58d09)
99+
100+
rldhont <rldhont@gmail.com> 2016-02-09
101+
102+
[BUGFIX][QGIS Server] WFS Service Capability OnlineResource
103+
104+
WFS Service Capability OnlineResource is not the same as in WMS.
105+
106+
Juergen E. Fischer <jef@norbit.de> 2015-03-09
107+
108+
fix arm build
109+
110+
(cherry picked from commit 1aff7335d004bc410eb61e1436ee7648716f9319)
111+
112+
Juergen E. Fischer <jef@norbit.de> 2016-01-21
113+
114+
merge debian downstream patches
115+
116+
Michael Douchin <mdouchin@3liz.com> 2016-01-19
117+
118+
[bugfix][DbManager] 14110 - Error fetching layer indexes with recent sqlite version
119+
120+
Fixes #14110
121+
122+
The method `getTableIndexes`, situated in line 371 of the file `db_manager/db_plugins/spatialite/connector.py`,
123+
expected to get 3 fields from the sqlite method `PRAGMA index_list` .
124+
In recent versions of SQLite, since 3.8.9, though, this method now returns 5 fields.
125+
This commit fixes this issue by checking the length of columns returned by the method.
126+
127+
Juergen E. Fischer <jef@norbit.de> 2016-01-15
128+
129+
Release of 2.8.6
130+
1131
Sebastian Dietrich <SebDieBln@users.noreply.github.com> 2015-12-30
2132

3133
read source from provider before saving memory layer (fixes #8997)

debian/changelog

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
qgis (2.8.6) UNRELEASED; urgency=medium
1+
qgis (2.8.7) UNRELEASED; urgency=medium
2+
3+
* Release of 2.8.7
4+
5+
-- Jürgen E. Fischer <jef@norbit.de> Fri, 26 Feb 2016 13:00:10 +0100
6+
7+
qgis (2.8.6) unstable; urgency=medium
28

39
* Release of 2.8.6
410

5-
-- Jürgen E. Fischer <jef@norbit.de> Fri, 15 Jan 2016 13:00:09 +0100
11+
-- Jürgen E. Fischer <jef@norbit.de> Fri, 26 Feb 2016 13:00:09 +0100
612

713
qgis (2.8.5) unstable; urgency=medium
814

0 commit comments

Comments
 (0)