Skip to content

Commit

Permalink
Release of 3.24.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed May 13, 2022
1 parent 9301142 commit cf22b74
Show file tree
Hide file tree
Showing 4 changed files with 262 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 "24")
set(CPACK_PACKAGE_VERSION_PATCH "2")
set(CPACK_PACKAGE_VERSION_PATCH "3")
set(COMPLETE_VERSION ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH})
set(RELEASE_NAME "Tisler")
project(qgis VERSION ${COMPLETE_VERSION})
Expand Down
252 changes: 252 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,255 @@
Jürgen E. Fischer <jef@norbit.de> 2022-05-13

translation update for 3.24.3 from transifex

Merge: 65674c3952 8520da29d8
D'Hont René-Luc <rldhont@gmail.com> 2022-05-13

Merge pull request #48530 from qgis/backport-48511-to-release-3_24

[Backport release-3_24] [Oracle] Fix edit connection forced port value

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

Fix crash in geometry validator with MultiSurface geometries

Fixes #48501

D'Hont René-Luc <rldhont@gmail.com> 2022-05-11

[Oracle] Fix edit connection forced port value

User can set database without host and port, meaning he is using a service (tnsnames.ora)

The QGIS User Interface forced the port to not be empty even if the database is set and the host is empty.

It is an addition to https://github.com/qgis/QGIS/pull/39131 _[Oracle] Fix new connection greyed ok button_ to fix
https://github.com/qgis/QGIS/issues/38979 _Oracle - add/edit connection dialog forces hostname input - conflicts with Oracle Network Connection_

Merge: 4cf3b3ab7a 0b0c2fad97
Loïc Bartoletti <lbartoletti@users.noreply.github.com> 2022-05-12

Merge pull request #48474 from Djedouas/backport-48461-to-release-3_24

[Backport release-3_24] Use explain plan to estimate featureCount with filter

Jacky Volpes <jacky.volpes@oslandia.com> 2022-05-05

Use explain plan to estimate featureCount with filter (fixes #48446)

Mathieu Pellerin <nirvn.asia@gmail.com> 2022-05-10

Add tests

Mathieu Pellerin <nirvn.asia@gmail.com> 2022-05-10

Propagate marker symbol's size to marker-type geometry generator layers

Mathieu Pellerin <nirvn.asia@gmail.com> 2022-05-10

Propagate line symbol's width to line-type geometry generator layers

signedav <david@opengis.ch> 2022-05-09

set parent variable as static in aggregate expression functions

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

Add unit tests

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

Don't show -0 in axis labels

Fixes #48421

Andrea Giudiceandrea <andreaerdna@libero.it> 2022-05-06

[MetaSearch] avoid to send username/passwords if empty

Andrea Giudiceandrea <andreaerdna@libero.it> 2022-05-06

[MetaSearch] fix CSW search when user/passwords are empty

Andrea Giudiceandrea <andreaerdna@libero.it> 2022-05-06

[MetaSearch] Fix error navigating the search results

Fix the "Search error: list object has no attribute 'toXML'" that occurs navigating the search results after the second time the navigation buttons are pressed

Volker Enderlein <volker.enderlein@ifm-chemnitz.de> 2022-05-05

Fix wrongly connected slot in qgscameracontroller

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

Add tests for QgsNetworkAccessManager request preprocessors

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

Add mechanism for python clients to setup custom QNetworkReply
preprocessors

Since it's not possible to overwrite
QgsNetworkAccessManager::createRequest, the normal Qt approach for
adding custom handling for replies is not possible. This new API
adds a QgsNetworkAccessManager.setReplyPreprocessor() method
which allows clients to add a custom reply preprocessor for implementing
their own logic for replies.

For example:

def _on_ready_read(reply):
print(reply.peek(reply.bytesAvailable()))

def _my_preprocessor(request, reply):
if reply.operation() == QNetworkAccessManager.PutOperation:
reply.readyRead.connect(partial(_on_ready_read, reply))

QgsNetworkAccessManager.setReplyPreprocessor(_my_preprocessor)

Fixes #48169

Jürgen E. Fischer <jef@norbit.de> 2022-04-25

debian packaging: PDAL removed from debian sid

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

Test mask

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

Silence debug message

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

Mask updates

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

Refine initial z range for rule based renderer too

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

Also update parent bounding boxes after determining exact DEM terrain tile box

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

Fix missing features in 3d views

Instead of starting with a bounding box with an estimated z range
based on sampled vertex height only, we now start with a "maximal"
z range and refine this after actually determine the real z range
of the vector layer child nodes.

This allows us to correctly account for features which are at
large height offsets or with large extrusion, and avoids these
features being incorrectly culled from the 3d views when their
estimated bounding boxes are out of view.

Fixes #48295

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

Add method to update all parent bounding boxes to reflect the
actual bounds of their children

Mathieu Pellerin <nirvn.asia@gmail.com> 2022-04-26

Enable LZM compression when saving map as tiff image

Merge: ccd9efe9c2 321f3b873d
signedav <david@opengis.ch> 2022-04-28

Merge pull request #48372 from qgis/backport-48344-to-release-3_24

[Backport release-3_24] Fix crash of endless loop when having a recursive many-to-many relations in relationeditor

signedav <david@opengis.ch> 2022-04-25

fix crash because of endless loop when having a recursive many-to-many relation

Jacky Volpes <jacky.volpes@oslandia.com> 2022-04-22

Add support for no-geometry layer styles with Oracle provider

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

Fix actual z range for bbox is not set in simple 3d vector renderer

This was previously handled in the rule based 3d renderer, but not
the simple renderer

Refs #48295

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

Fix calculated tesselation z ranges incorrectly accounts for extrusion
height twice, resulting in bounds which always sit above features

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

Partially fix calculation of tesselation z ranges

Mathieu Pellerin <nirvn.asia@gmail.com> 2022-04-24

Fix serious crasher which occurs when manipulating layer tree with styling panel open

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

qt5-default is no more

Alessandro Pasotti <elpaso@itopen.it> 2022-04-21

Trim rule expression

Fixes #48305

Damiano Lombardi <damiano@opengis.ch> 2022-04-19

fix attribute table incorrect form for default values with geometry

Harrissou Sant-anna <delazj@gmail.com> 2022-04-19

Display correct shortcut for profiles-path in command line

Andrea Giudiceandrea <andreaerdna@libero.it> 2022-04-19

Add some missing PG connection configs

Add allowGeometrylessTables ("Also list tables with no geometry"), geometryColumnsOnly ("Only show layers in the layer registries") and publicOnly ("Only look in the 'public' schema") PG connection configurations in the save/load (to/from xml) mechanism.

Andrea Giudiceandrea <andreaerdna@libero.it> 2022-04-15

Save and load dontResolveType setting for PG connections

Mathieu Pellerin <nirvn.asia@gmail.com> 2022-04-18

[ui] Fix broken img within HTML labels when referring to qrc images

Mathieu Pellerin <nirvn.asia@gmail.com> 2022-04-08

[wmst/xyz] Use the tile download manager to fetch tiles

Andrea Giudiceandrea <andreaerdna@libero.it> 2022-04-15

Update src/gui/qgsinstallgridshiftdialog.cpp

Co-authored-by: Nyall Dawson <nyall.dawson@gmail.com>

Andrea Giudiceandrea <andreaerdna@libero.it> 2022-04-14

Fix installation of grid shift files

Jürgen E. Fischer <jef@norbit.de> 2022-04-14

fix #47921

Jürgen E. Fischer <jef@norbit.de> 2022-04-15

Release of 3.24.2

Jürgen E. Fischer <jef@norbit.de> 2022-04-15

translation update for 3.24.2 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.24.2) UNRELEASED; urgency=medium
qgis (3.24.3) UNRELEASED; urgency=medium

* Release of 3.24.3

-- Jürgen E. Fischer <jef@norbit.de> Fri, 13 May 2022 14:04:34 +0200

qgis (3.24.2) unstable; urgency=medium

* Release of 3.24.2

-- Jürgen E. Fischer <jef@norbit.de> Fri, 15 Apr 2022 14:06:47 +0200
-- Jürgen E. Fischer <jef@norbit.de> Fri, 13 May 2022 14:04:34 +0200

qgis (3.24.1) 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.24.3" date="2022-05-13" />
<release version="3.24.2" date="2022-04-15" />
<release version="3.24.1" date="2022-03-18" />
<release version="3.24.0" date="2022-02-18" />
Expand Down

0 comments on commit cf22b74

Please sign in to comment.