Skip to content

Commit

Permalink
Release of 3.34.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Jan 19, 2024
1 parent 3f59d25 commit 4737323
Show file tree
Hide file tree
Showing 4 changed files with 171 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 "34")
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 "Prizren")
project(qgis VERSION ${COMPLETE_VERSION})
Expand Down
161 changes: 161 additions & 0 deletions ChangeLog
@@ -1,3 +1,164 @@
Jürgen E. Fischer <jef@norbit.de> 2024-01-19

translation update for 3.34.3 from transifex

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

Check that plugins can be loaded before enabling them in qgis_process

And add tests for plugin enable/disable commands

Fixes #54915

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

Fix lengthy hang when restoring projects with temporal layers
from remote sources

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

Allow constructing wmts layers without prior knowledge of
crs and format

WHen the crs or image format is not specified, just use the
first available ones we determine from the capabilities

This avoids a client having to manually retrieve and parse
the capabilities in order to determine these values upfront.

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

Move test to categorized renderer tests, simplify

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

Fix some issues with categorized renderer exports to SLD

- Correctly handle merged categories
- Correctly handle already quoted field names
- Correctly handle expressions

Fixes #55792

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

Loosen check for uris by not checking whether they actually exist as files

Its better to defer this to that data provider, as the uri may
not need to correspond to an actual on disk file for some providers.
Eg ogr provider can load remote http sources

Fixes #54264

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

Rely more on provider metadata

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

If we know the data provider, then refine the possible layer types
using those which are actually supported by the provider

Avoids unnecessary attempts to use non-compatible layer types
to load a dataset from the provider

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

Use better name extraction logic by using parsed uri parts

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

Don't use hardcoded list of providers which support disk based files,
instead correctly use provider metadata

Merge: 6e5e95821b1 70dd2a8e303
Even Rouault <even.rouault@spatialys.com> 2024-01-15

Merge pull request #55842 from qgis/backport-55838-to-release-3_34

[Backport release-3_34] [wfs] Use a more tolerant approach to matching the desired WFS layer name to those available from the get capabilities

Nyall Dawson <nyall.dawson@gmail.com> 2023-11-14

[wfs] Use a more tolerant approach to matching the desired WFS
layer name to those available from the get capabilities

Nyall Dawson <nyall.dawson@gmail.com> 2024-01-13

Update masks

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

Add test masks

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

Fix raster provider capabilities retrieved from wrong call

Harrissou Sant-anna <delazj@gmail.com> 2023-11-05

Add vertical scrollbar to raster calculator dialog

CodeBardian <codebardian@gmail.com> 2023-12-30

Add `editorWidgetSetup` to the copy constructor of `QgsFieldPrivate`

CodeBardian <codebardian@gmail.com> 2023-12-30

add failing test reproducing #52288

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

Update src/app/3d/qgspoint3dsymbolwidget.cpp

Co-authored-by: Martin Dobias <wonder.sk@gmail.com>

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

Fix 3d billboard symbol height is ignored

Followup 0218ece

Alessandro Pasotti <elpaso@itopen.it> 2024-01-08

RAT: fix save to DBF

Fix #55711

Giovanni Manghi <giovanni.manghi@naturalgis.pt> 2023-12-31

Fix case

Giovanni Manghi <giovanni.manghi@naturalgis.pt> 2023-12-30

Better wording for metadata dialog

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

[tiledscene] Catch type error exception when parsing tilesetVersion

Even Rouault <even.rouault@spatialys.com> 2024-01-02

[OAPIF] Fix bad performance on servers with large /api response documents (fixes #55740)

pathmapper <pathmapper@posteo.de> 2023-11-02

Use node 18 to fix build

pathmapper <pathmapper@posteo.de> 2023-11-02

Update install node in docker image

ref https://github.com/qgis/QGIS/pull/55116

Blottiere Paul <blottiere.paul@gmail.com> 2023-12-23

Use pyogctest 1.1.1

Jürgen E. Fischer <jef@norbit.de> 2023-12-22

Release of 3.34.2

Jürgen E. Fischer <jef@norbit.de> 2023-12-22

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

* Release of 3.34.3

-- Jürgen E. Fischer <jef@norbit.de> Fri, 19 Jan 2024 13:02:19 +0100

qgis (3.34.2) unstable; urgency=medium

* Release of 3.34.2

-- Jürgen E. Fischer <jef@norbit.de> Fri, 22 Dec 2023 13:04:08 +0100
-- Jürgen E. Fischer <jef@norbit.de> Fri, 19 Jan 2024 13:02:19 +0100

qgis (3.34.1) 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.34.3" date="2024-01-19" />
<release version="3.34.2" date="2023-12-22" />
<release version="3.34.1" date="2023-11-24" />
<release version="3.34.0" date="2023-10-27" />
Expand Down

0 comments on commit 4737323

Please sign in to comment.