Skip to content

Commit

Permalink
Release of 3.22.15
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Jan 27, 2023
1 parent 026ef9c commit ef17ad1
Show file tree
Hide file tree
Showing 4 changed files with 176 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set(CMAKE_LINK_DEPENDS_NO_SHARED ON)
# Project and version
set(CPACK_PACKAGE_VERSION_MAJOR "3")
set(CPACK_PACKAGE_VERSION_MINOR "22")
set(CPACK_PACKAGE_VERSION_PATCH "14")
set(CPACK_PACKAGE_VERSION_PATCH "15")
set(COMPLETE_VERSION ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH})
set(RELEASE_NAME "Białowieża")
project(qgis VERSION ${COMPLETE_VERSION})
Expand Down
166 changes: 166 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,169 @@
Jürgen E. Fischer <jef@norbit.de> 2023-01-27

translation update for 3.22.15 from transifex

Nyall Dawson <nyall.dawson@gmail.com> 2022-12-14

Make iteration of features from vector layers with joins actually thread safe

Nyall Dawson <nyall.dawson@gmail.com> 2022-12-14

Fix thread safety of DEM height map generator

Nyall Dawson <nyall.dawson@gmail.com> 2022-12-15

Remove unused provider argument

Nyall Dawson <nyall.dawson@gmail.com> 2022-12-15

Remove unused enum

Nyall Dawson <nyall.dawson@gmail.com> 2022-12-15

Fix thread unsafe progress reporting from GDAL operations

Nyall Dawson <nyall.dawson@gmail.com> 2022-12-15

Update test

Nyall Dawson <nyall.dawson@gmail.com> 2022-12-14

Remove very old workaround for a closed GDAL ticket preventing
use of existing GDAL raster band statistics

Nyall Dawson <nyall.dawson@gmail.com> 2022-12-05

Ensure that dataChanged signal is raised for DisplayRole in
QgsAttributeTableModel when a feature attribute is changed

Otherwise the attribute table will show the outdated value
until it is repainted

(cherry picked from commit 98afd4be598b22dfbe1d7ac4c71c7d564ffc24af)

Nyall Dawson <nyall.dawson@gmail.com> 2022-12-12

Copy mFeedback argument in copy/assign constructors

Even Rouault <even.rouault@spatialys.com> 2022-12-11

[OGR provider] Fix opening /vsizip//path/to/my.zip/my.gpkg files

This actually works around an issue in current GDAL versions where the
NOLOCK=YES open option does not work with /vsizip/ files

Nyall Dawson <nyall.dawson@gmail.com> 2022-12-07

Fix clang warning

(cherry picked from commit 9e5cd1f79a5d384e4d7ab8d6169f1f35a6fb3d2c)

Nyall Dawson <nyall.dawson@gmail.com> 2022-12-07

Make raster paletted renderer classify function thread safe

In addition to making this correctly thread safe, also avoids a
temporary UI hang during the classification if the layer rendering
is triggered before the classification finishes.

(cherry picked from commit 1f10b8144a6a6b72943e2136f739ae96fd1105a8)

Nyall Dawson <nyall.dawson@gmail.com> 2022-12-01

Skip layers with 'rendering/noPreviewJobs' custom property set in prefetch preview jobs

Nyall Dawson <nyall.dawson@gmail.com> 2022-12-07

More responsive cancelation in raster layer unique stats algorithm

Nyall Dawson <nyall.dawson@gmail.com> 2022-12-01

Ensure qgis_process commands using project paths are correctly cleaned

Fixes #50623

(cherry picked from commit 9a39f24c5c72ce31a527bbef1b10f1a35daa77c5)

Nyall Dawson <nyall.dawson@gmail.com> 2022-11-24

Fix source select dialog does not add new pages for providers registered
after QGIS startup (eg when enabling a new plugin), and also ensure
pages are correctly removed when providers are removed

(cherry picked from commit ba9c669b4986603df5a2aadd99c4968a41bd7829)

Nyall Dawson <nyall.dawson@gmail.com> 2022-11-18

Fix missing actions menu when only internal actions are present

Follow up bcf0e4838

Loïc Bartoletti <lbartoletti@users.noreply.github.com> 2022-09-26

Add a coment to GRASS logic

nicogodet <nicolas.godet@outlook.fr> 2022-09-22

More robust output process

Co-Authored-By: Andrea Giudiceandrea <16253859+agiudiceandrea@users.noreply.github.com>

nicogodet <nicolas.godet@outlook.fr> 2022-09-20

typo & flake8

nicogodet <nicolas.godet@outlook.fr> 2022-09-20

Fix output process of r.horizon

Even Rouault <even.rouault@spatialys.com> 2022-09-19

[WFS provider] Include namespace prefix and URI in FILTER ...

computed from setSubsetString() when a namespace is declared on <<wfs:FeatureType> in GetCapabilities response

Fixes #49121

Follow-up to #43957 / PR #45043

Even Rouault <even.rouault@spatialys.com> 2022-09-21

[WFS provider] Use QgsOgcCrsUtils::parseCrsName() to be able to handle OGC HTTP URIs (fixes #29391)

Even Rouault <even.rouault@spatialys.com> 2022-09-21

QgsCoordinateReferenceSystem::createFromOgcWmsCrs(): use QgsOgcCrsUtils::parseCrsName()

Even Rouault <even.rouault@spatialys.com> 2022-09-21

QgsGmlStreamingParser::readEpsgFromAttribute(): use QgsOgcCrsUtils::parseCrsName()

Even Rouault <even.rouault@spatialys.com> 2022-09-21

Add a QgsOgcCrsUtils::parseCrsName() function to parse the different styles of OGC CRS names (fixes #29391)

Recognizes the following flavors:
```
//! CRS flavor
enum class CRSFlavor
{
UNKNOWN, //! unknown/unhandled flavor
AUTH_CODE, //! e.g EPSG:4326
HTTP_EPSG_DOT_XML, //! e.g. http://www.opengis.net/gml/srs/epsg.xml#4326 (called "OGC HTTP URL" in GeoServer WFS configuration panel)
OGC_URN, //! e.g. urn:ogc:def:crs:EPSG::4326
X_OGC_URN, //! e.g. urn:x-ogc:def:crs:EPSG::4326
OGC_HTTP_URI, //! e.g. http://www.opengis.net/def/crs/EPSG/0/4326
};
```

Julien Cabieces <julien.cabieces@oslandia.com> 2022-09-28

Fixes #33755 Fix legend icon geom generator is involved

Jürgen E. Fischer <jef@norbit.de> 2022-12-16

Release of 3.22.14

Jürgen E. Fischer <jef@norbit.de> 2022-12-16

translation update for 3.22.14 from transifex
Expand Down
10 changes: 8 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
qgis (3.22.14) UNRELEASED; urgency=medium
qgis (3.22.15) UNRELEASED; urgency=medium

* Release of 3.22.15

-- Jürgen E. Fischer <jef@norbit.de> Fri, 27 Jan 2023 13:04:18 +0100

qgis (3.22.14) unstable; urgency=medium

* Release of 3.22.14

-- Jürgen E. Fischer <jef@norbit.de> Fri, 16 Dec 2022 13:04:32 +0100
-- Jürgen E. Fischer <jef@norbit.de> Fri, 27 Jan 2023 13:04:18 +0100

qgis (3.22.13) unstable; urgency=medium

Expand Down
1 change: 1 addition & 0 deletions linux/org.qgis.qgis.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

<project_group>QGIS</project_group>
<releases>
<release version="3.22.15" date="2023-01-27" />
<release version="3.22.14" date="2022-12-16" />
<release version="3.22.13" date="2022-11-18" />
<release version="3.22.12" date="2022-10-21" />
Expand Down

0 comments on commit ef17ad1

Please sign in to comment.