Skip to content

Commit

Permalink
Release of 3.36.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Apr 19, 2024
1 parent 3f2a5c1 commit 6d25052
Show file tree
Hide file tree
Showing 4 changed files with 166 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -23,7 +23,7 @@ set(CMAKE_LINK_DEPENDS_NO_SHARED ON)
# Project and version
set(CPACK_PACKAGE_VERSION_MAJOR "3")
set(CPACK_PACKAGE_VERSION_MINOR "36")
set(CPACK_PACKAGE_VERSION_PATCH "1")
set(CPACK_PACKAGE_VERSION_PATCH "2")
set(COMPLETE_VERSION ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH})
set(RELEASE_NAME "Maidenhead")
project(qgis VERSION ${COMPLETE_VERSION})
Expand Down
156 changes: 156 additions & 0 deletions ChangeLog
@@ -1,3 +1,159 @@
Jürgen E. Fischer <jef@norbit.de> 2024-04-19

translation update for 3.36.2 from transifex

Harrissou Sant-anna <delazj@gmail.com> 2024-04-18

Fix casting of symbol layer densityArea property

Nyall Dawson <nyall.dawson@gmail.com> 2024-04-18

Better reporting for invalid field names for some algorithms

CodeBardian <codebardian@gmail.com> 2024-03-25

access column header from source model

D'Hont René-Luc <rldhont@gmail.com> 2024-04-14

[processing] Fix Output Variant availability

With #54358 [processing] Add a new 'Calculate expression' algorithm for use in models, a processing output type for variant values has been introduced.
This output Should be used when the output is a flexible type and may represent any QVariant value, like QgsPoint, and must be available for use as inputs for most parameter types.

In ba7bdec, `QgsProcessingOutputVariant::typeName()` is sometimes added in widget wrapper `compatibleParameterTypes` instead of `compatibleOutputTypes`.
For example, the `QgsProcessingOutputVariant::typeName()` is in `QgsProcessingPointWidgetWrapper::compatibleParameterTypes()` instead of `QgsProcessingPointWidgetWrapper::compatibleOutputTypes()`, so `QgsPoint` output in a variant could not be used as an input parameter.

Nyall Dawson <nyall.dawson@gmail.com> 2024-04-11

Temporarily skip test

Nyall Dawson <nyall.dawson@gmail.com> 2024-04-11

Temporarily disable google font downloads

This isn't available since Google removed the static downloads,
we'll need another approach to handle this

Refs https://github.com/google/fonts/issues/7481
Refs https://github.com/qgis/QGIS/issues/57070

Maxence Laurent <maxence.laurent@gmail.com> 2024-04-05

SERVER: fix legend of cascaded WMS layers #42063

The legend was fetched asychronously from upstream WMS server and was not
awaited. Thus response sent to the client could never contain any data from
upstream.
Setting the `synchronous` `QgsWmsLegendNode::getLegendGraphic` parameter to
`true` fixed this. This setting is now set in the `QgsWmsParameters`
constructor using the `QgsLegendSettings::setSynchronousLegendRequests` method.
Fixes QGIS/qgis#42063

مهدي شينون (Mehdi Chinoune) <mehdi.chinoune@hotmail.com> 2024-04-02

Replace `docker-compose` by `docker compose`

مهدي شينون (Mehdi Chinoune) <mehdi.chinoune@hotmail.com> 2024-04-02

Fix check for Qwt>=6.2.0 for QWT_POLAR

Also set QWT_POLAR_VERSION=0x060200

Denis Rouzaud <denis.rouzaud@gmail.com> 2024-04-11

Update qgsvectorlayer.h

Denis Rouzaud <denis.rouzaud@gmail.com> 2024-04-11

Update sipify.pl

Denis Rouzaud <denis.rouzaud@gmail.com> 2024-04-11

[sipify] support different since versions in C++ bs PyQGIS

Nyall Dawson <nyall.dawson@gmail.com> 2024-04-10

Optimise by avoiding unnecessary linestring cloning

Nyall Dawson <nyall.dawson@gmail.com> 2024-04-10

Fix crash when calculating variable width buffer on multi curve

Nyall Dawson <nyall.dawson@gmail.com> 2024-04-09

Ensure Refresh action is shown for Geopackage connection items

Fixes #51523

Mathieu Pellerin <nirvn.asia@gmail.com> 2024-04-07

[ui] Fix floating dock panels hidden when toggling reduced view

Nyall Dawson <nyall.dawson@gmail.com> 2024-03-26

[sensorthings] Observation phenomenonTime can be a time instant

According to the specifications, an Observation phenomenonTime can
either be a period OR a time instant. Correctly handle instants
instead of returning null for the phenomenonTime

Mathieu Pellerin <nirvn.asia@gmail.com> 2024-04-05

Fix temporal unit conversion factor for milliseconds to weeks/months/years/decades/centuries

Germán Carrillo <gcarrillo@linuxmail.org> 2024-03-26

[dxf] Make sure selected attribute index is respected when resetting fieldsComboBox index

Andrea Giudiceandrea <andreaerdna@libero.it> 2024-03-27

[OGR] Fix GeoPackage layer metadata reading

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

[temporal] Fix first canvas rendering on project not respecting cumulative state

Andrea Giudiceandrea <andreaerdna@libero.it> 2024-04-03

[GDAL] Fix deleting styles

Andrea Giudiceandrea <andreaerdna@libero.it> 2024-04-03

[OGR] Fix deleting styles

Andrea Giudiceandrea <andreaerdna@libero.it> 2024-04-01

[db manager] Fix field property editing

Even Rouault <even.rouault@spatialys.com> 2024-03-31

[OGR provider] Recognize "false"/"true" string as valid value for a boolean field in addFeature()/changeAttributeValues()"

Fixes #55517

Maxim Rylov <maxim.rylov@sap.com> 2024-04-04

HANA: Upgrade EULA agreement to version 3.2

Merge: 3e589453264 847c5c02795
Matthias Kuhn <matthias@opengis.ch> 2024-03-25

Merge pull request #56956 from t0b3/backport-pr56953

fix: build without qtserialport

t0b3 <thomas.bettler@gmail.com> 2024-03-24

fix: build without qtserialport

closes: https://github.com/qgis/QGIS/issues/56944
Signed-off-by: t0b3 <thomas.bettler@gmail.com>

Jürgen E. Fischer <jef@norbit.de> 2024-03-22

Release of 3.36.1

Jürgen E. Fischer <jef@norbit.de> 2024-03-22

translation update for 3.36.1 from transifex
Expand Down
10 changes: 8 additions & 2 deletions debian/changelog
@@ -1,8 +1,14 @@
qgis (3.36.1) UNRELEASED; urgency=medium
qgis (3.36.2) UNRELEASED; urgency=medium

* Release of 3.36.2

-- Jürgen E. Fischer <jef@norbit.de> Fri, 19 Apr 2024 14:01:22 +0200

qgis (3.36.1) unstable; urgency=medium

* Release of 3.36.1

-- Jürgen E. Fischer <jef@norbit.de> Fri, 22 Mar 2024 14:30:33 +0100
-- Jürgen E. Fischer <jef@norbit.de> Fri, 19 Apr 2024 14:01:22 +0200

qgis (3.36.0) unstable; urgency=medium

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

<project_group>QGIS</project_group>
<releases>
<release version="3.36.2" date="2024-04-19" />
<release version="3.36.1" date="2024-03-22" />
<release version="3.36.0" date="2024-02-23" />
<release version="3.34.0" date="2023-10-27" />
Expand Down

0 comments on commit 6d25052

Please sign in to comment.