Skip to content

Commit cbd7ade

Browse files
committed
Release of 2.18.25
1 parent daa650e commit cbd7ade

File tree

3 files changed

+227
-3
lines changed

3 files changed

+227
-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 "18")
3-
SET(CPACK_PACKAGE_VERSION_PATCH "24")
3+
SET(CPACK_PACKAGE_VERSION_PATCH "25")
44
SET(COMPLETE_VERSION ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH})
55
SET(RELEASE_NAME "Las Palmas")
66
IF (POLICY CMP0048) # in CMake 3.0.0+

ChangeLog

+218
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,221 @@
1+
Merge: 75a170dfb0 81f4bdbe88
2+
rldhont <rldhont@gmail.com> 2018-10-26
3+
4+
Merge pull request #8331 from rldhont/fix-server-wfs-force-multi-geom-gml-218
5+
6+
[Bugfix][Server][WFS] Segfault when converting geom to multi
7+
8+
rldhont <rldhont@gmail.com> 2018-10-25
9+
10+
[Bugfix][Server][WFS] Segfault when converting geom to multi
11+
12+
Following 55928c0, [Bugfix][Server][WFS] In GML geometry has all to be multi, in which to avoid memory leak, I don't use a pointer but convertToMuli segfaults in this case.
13+
14+
@nyalldawson has mentioned in the PR #8243 to ignore is comment about pointer, what I missed. So the code has segfaulting.
15+
16+
This commit fixed it by using point and delete it.
17+
18+
Merge: 607cd3e3aa 87fddaee59
19+
Matthias Kuhn <matthias@opengis.ch> 2018-10-25
20+
21+
Merge pull request #8303 from m-kuhn/doNotPersistEstimatedMetadata
22+
23+
Do not persist estimated metadata
24+
25+
Matthias Kuhn <matthias@opengis.ch> 2018-10-24
26+
27+
Do not persist estimated GDAL metadata
28+
29+
GDAL saves metadata like min and max values into a .aux.xml sidecar file next to raster files.
30+
It does this always, even when the calculated values are estimated. In subsequent runs of GDAL processing tools
31+
it will use these values as if they were reliable.
32+
33+
This patch takes care of deleting newly written .aux.xml files if there is a risk that they include estimated data.
34+
35+
Fix #19517 https://issues.qgis.org/issues/19517
36+
37+
Merge: 5f26d1b0f9 cefc8d6347
38+
Matthias Kuhn <matthias@opengis.ch> 2018-10-25
39+
40+
Merge pull request #8236 from nyalldawson/marker_fill
41+
42+
Fix svg marker doesn't render when size is very small
43+
44+
Merge: 8d12733fa0 5f26d1b0f9
45+
Nyall Dawson <nyall.dawson@gmail.com> 2018-10-25
46+
47+
Merge branch 'release-2_18' into marker_fill
48+
49+
Merge: 72a760611d 1cdac2c1ec
50+
rldhont <rldhont@gmail.com> 2018-10-24
51+
52+
Merge pull request #8143 from mdouchin/patch-1
53+
54+
Processing - Add GeoPackage support in alg qgis:convertformat
55+
56+
Merge: 781d0e1121 72a760611d
57+
rldhont <rldhont@gmail.com> 2018-10-24
58+
59+
Merge branch 'release-2_18' into patch-1
60+
61+
Merge: c23c3d2409 55928c0dcd
62+
rldhont <rldhont@gmail.com> 2018-10-24
63+
64+
Merge pull request #8243 from rldhont/server-wfs-force-multi-geom-gml-218
65+
66+
[Bugfix][Server][WFS] In GML geometry has all to be multi
67+
68+
rldhont <rldhont@gmail.com> 2018-10-23
69+
70+
Processing - Tests - Add Ogr2Ogr test with GeoPackage support
71+
72+
mdouchin <mdouchin@3liz.com> 2018-10-08
73+
74+
Processing - Add GeoPackage support in qgis:convertformat
75+
76+
This commit adds the support for GeoPackage format as output format in the qgis:convertformat python script.
77+
78+
Merge: e353bdb6ed c23c3d2409
79+
Nyall Dawson <nyall.dawson@gmail.com> 2018-10-23
80+
81+
Merge branch 'release-2_18' into marker_fill
82+
83+
rldhont <rldhont@gmail.com> 2018-10-19
84+
85+
[Bugfix][Server][WFS] In GML geometry has all to be multi
86+
87+
If in the layer level, the geometry is defined as multi, in the GML all the geometry has to be converted to multi.
88+
89+
Juergen E. Fischer <jef@norbit.de> 2018-10-19
90+
91+
fix build with GDAL1 (followup 4f76722a)
92+
93+
Nyall Dawson <nyall.dawson@gmail.com> 2018-10-16
94+
95+
Fix svg marker doesn't render when size is very small
96+
97+
(cherry picked from commit c6db18d)
98+
99+
Radoslaw Guzinski <radosuav@op.pl> 2018-10-15
100+
101+
[Processing] Allow reordering of items in the MultipleInputDialog.
102+
103+
Based on QGIS 3.2.
104+
105+
Nyall Dawson <nyall.dawson@gmail.com> 2018-10-13
106+
107+
Masks
108+
109+
Nyall Dawson <nyall.dawson@gmail.com> 2018-10-12
110+
111+
Fix line pattern fill symbol corruption with negative angles
112+
113+
(cherry picked from commit 0f056b500a5628bc76a30a4fe6de85f11cb5a9fb)
114+
115+
Nyall Dawson <nyall.dawson@gmail.com> 2018-10-12
116+
117+
Fix distorted line pattern fill when line offset is large compared
118+
with pattern distance
119+
120+
(cherry picked from commit e277b91087567aa95344d2c935ae4543feefec28)
121+
122+
Nyall Dawson <nyall.dawson@gmail.com> 2018-10-12
123+
124+
Fix line pattern fill offsets are always treated as positive,
125+
even when offset is negative
126+
127+
(cherry picked from commit 5b4ed16cf90a28e73d8c09bec5a36ae0fa9f2056)
128+
129+
Juergen E. Fischer <jef@norbit.de> 2018-10-13
130+
131+
osgeo4w: prepare for GDAL 2.3 update
132+
133+
Merge: 942a560b31 fde6d93e97
134+
rldhont <rldhont@gmail.com> 2018-10-12
135+
136+
Merge pull request #8159 from rldhont/server-wfs-enhance-describeFeatureType-218
137+
138+
[Bugfix][Server] WFS: enhancing the way DescribeFeatureType response is build
139+
140+
rldhont <rldhont@gmail.com> 2018-10-10
141+
142+
[Bugfix][Server] WFS: enhancing the way DescribeFeatureType response is build
143+
144+
Martin Dobias <wonder.sk@gmail.com> 2018-09-28
145+
146+
Fix loading style for non-spatial tables in Postgres+SpatiaLite (fixes #19589)
147+
148+
OGR is not affected by the bug.
149+
Oracle and MS SQL are most likely affected, but I don't have them here to test.
150+
151+
(cherry picked from commit bb0c62935562ebe28a0d862e4bdf985865bde595)
152+
153+
Merge: be9c11381e c3caa1efd9
154+
rldhont <rldhont@gmail.com> 2018-10-10
155+
156+
Merge pull request #8123 from qgis/fix-server-wms-sld-content
157+
158+
[Bugfix][Server] WMS: The SLD content loaded from URL is not percent encoded
159+
160+
rldhont <rldhont@gmail.com> 2018-10-05
161+
162+
[Bugfix][Server] WMS: The SLD content loaded from URL is not percent encoded
163+
164+
Merge: 9809c7be63 3183b307ce
165+
rldhont <rldhont@gmail.com> 2018-09-27
166+
167+
Merge pull request #7872 from rldhont/fix-dbmanager-sql-layer-set-unique-combo
168+
169+
[BUGFIX][DbManager] SQL Layer: fix unique combo setting
170+
171+
rldhont <rldhont@gmail.com> 2018-09-12
172+
173+
[BUGFIX][DbManager] SQL Layer: fix unique combo setting
174+
175+
Merge: 2289ce32ff 010fe8aade
176+
Matthias Kuhn <matthias@opengis.ch> 2018-09-25
177+
178+
Merge pull request #8009 from borysiasty/release-2_18
179+
180+
Polish translation update
181+
182+
Borys Jurgiel <info@borysjurgiel.pl> 2018-09-24
183+
184+
Polish translation update
185+
186+
Tom Kralidis <tomkralidis@gmail.com> 2018-09-23
187+
188+
[MetaSearch] update default CSW connections
189+
190+
Marco Hugentobler <marco.hugentobler@sourcepole.ch> 2018-09-18
191+
192+
Fix outline width in simple marker sld import
193+
194+
Merge: ff5bd09ab3 f427577a36
195+
rldhont <rldhont@gmail.com> 2018-09-18
196+
197+
Merge pull request #7870 from rldhont/server-wfs-format-field-218
198+
199+
[Bugfix][Server][WFS] correctly define field type and encode values
200+
201+
rldhont <rldhont@gmail.com> 2018-09-12
202+
203+
[Server][WFS] Define encodeValueToText to correctly format field values
204+
205+
rldhont <rldhont@gmail.com> 2018-06-22
206+
207+
[Server][WFS] Set correctly attribute type for number fields in XSD
208+
209+
Replace `double` by `decimal`
210+
211+
Use `int`, `unsignedInt`, `long` and `unsignedLong` for `QVariant::Int`, `QVariant::UInt`, `QVariant::LongLong` and `QVariant::ULongLong`
212+
213+
Define double with 0 precision to `integer`
214+
215+
Juergen E. Fischer <jef@norbit.de> 2018-09-14
216+
217+
Release of 2.18.24
218+
1219
Juergen E. Fischer <jef@norbit.de> 2018-09-03
2220

3221
workaround for moc issue with app tests

debian/changelog

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
qgis (2.18.24) UNRELEASED; urgency=medium
1+
qgis (2.18.25) UNRELEASED; urgency=medium
2+
3+
* Release of 2.18.25
4+
5+
-- Jürgen E. Fischer <jef@norbit.de> Fri, 26 Oct 2018 13:59:08 +0200
6+
7+
qgis (2.18.24) unstable; urgency=medium
28

39
* Release of 2.18.24
410

5-
-- Jürgen E. Fischer <jef@norbit.de> Fri, 14 Sep 2018 14:00:17 +0200
11+
-- Jürgen E. Fischer <jef@norbit.de> Fri, 26 Oct 2018 13:59:07 +0200
612

713
qgis (2.18.23) unstable; urgency=medium
814

0 commit comments

Comments
 (0)