Skip to content

Commit

Permalink
Release of 3.38.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Sep 13, 2024
1 parent 899aa3c commit 37f9e6e
Show file tree
Hide file tree
Showing 4 changed files with 257 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
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 "38")
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 "Grenoble")
project(qgis VERSION ${COMPLETE_VERSION})
Expand Down
247 changes: 247 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,250 @@
Jürgen E. Fischer <[email protected]> 2024-09-13

translation update for 3.38.3 from transifex

Merge: 5e049f96dfc e4d9f91191e
D'Hont René-Luc <[email protected]> 2024-09-13

Merge pull request #58530 from qgis/backport-58073-to-release-3_38

[Backport release-3_38] Fix WMS layer access control check

Mathieu Pellerin <[email protected]> 2024-09-13

[themes] Fix bad styling of scrollbars in the plugin manager dialog

qgis-bot <[email protected]> 2024-09-13

auto sipify 🍺

Mathieu Pellerin <[email protected]> 2024-09-12

[ui] Fix addition of geometryless feature not working after first click on add record toolbar action

Raymond Nijssen <[email protected]> 2024-09-12

Fix for error when installing plugin from zip and path contains a single quote

D'Hont René-Luc <[email protected]> 2024-09-13

const allowed

Co-authored-by: Alessandro Pasotti <[email protected]>

Denis Rouzaud <[email protected]> 2024-09-12

fix layout

Pascal Giguère <[email protected]> 2024-09-11

Use utf-8 for Authorization header strings

Pascal Giguère <[email protected]> 2024-09-11

Refactor - Switch to QString::arg for S3 Authorization header

Pascal Giguère <[email protected]> 2024-09-11

Fix malformed S3 `Authorization` header. Fixes #58643.

qgis-bot <[email protected]> 2024-09-12

[Backport release-3_38] Fix inconsistent field name line edit focus behaviour when creating new vector layers (#58678)

* Fix inconsistent behaviour in create new layer dialogues by returning focus to
the field name line edits in the mAddAttributeButton_clicked slot methods of the
new layer dialogues.

Fixes #58482

* Remove Qt::MouseFocusReason argument from setFocus() calls so that the default
Qt::OtherFocusReason is used.

---------

Co-authored-by: Ben <[email protected]>

qgis-bot <[email protected]> 2024-09-12

Fix Geometry Generator expression button's icon (#58671)

Co-authored-by: Andrea Giudiceandrea <[email protected]>

Even Rouault <[email protected]> 2024-09-10

[GDAL provider] Use base dataset to display metadata in HTML output

Fix #58489

Andrea Giudiceandrea <[email protected]> 2024-09-10

[processing] Fix native:extractbinary output folder

Mathieu Pellerin <[email protected]> 2024-09-09

[processing] Fix points to path algorithm's handling of text folder output's temporary destination

Mathieu Pellerin <[email protected]> 2024-09-09

[processing] Add the text directory output for points to path alg. when user sets one

Mathieu Pellerin <[email protected]> 2024-09-09

[ui] Fix unreadable text in the 'Font Install Failed' dialog under night mapping theme

Mathieu Pellerin <[email protected]> 2024-09-08

[ogr] Fix quoted identifier logic for sqlite-based drivers

Mathieu Pellerin <[email protected]> 2024-09-08

[temporal] Fix temporal animation export (inc. decorations) on high DPI screens

Denis Rouzaud <[email protected]> 2024-09-08

add comment

Denis Rouzaud <[email protected]> 2024-09-08

create a copy of the list to delete children

Denis Rouzaud <[email protected]> 2024-09-08

add test for settings unregistration

David Marteau <[email protected]> 2024-09-05

Fix 'unused parameter' error

Fix 'unused parameter' error when compiling without
HAVE_SERVER_PYTHON_PLUGINS defined

Merge: f7f1af2622f 0cdf2e708a1
Alexander Bruy <[email protected]> 2024-09-05

Merge pull request #58582 from qgis/backport-58576-to-release-3_38

[Backport release-3_38] [metasearch] Fix missing import

Björn <[email protected]> 2024-09-04

[metasearch] Fix missing import

fix https://github.com/qgis/QGIS/issues/47823

Mathieu Pellerin <[email protected]> 2024-09-03

Fix errenous expected image

Mathieu Pellerin <[email protected]> 2024-08-30

[rasters] Fix layout map item preview rendering of XYZ layers with known tile DPI

Nyall Dawson <[email protected]> 2024-09-03

Fix CRS flagged as invalid from standalone code

Correctly handle the situation where multiple
QgsCoordinateReferenceSystemRegistry objects are created. This can
happen when something tries to create a CRS before the
QgsApplication is properly constructed.

In this situation the std::once calls were incorrectly causing
the member cached objects to only be populated for the FIRST
registry created.

Move to static objects were possible, and use a local mutex
to protect other create-once, registry specific caches.

Fixes #55161

David Marteau <[email protected]> 2024-07-11

Fix WMS layer access control check

Harrissou Sant-anna <[email protected]> 2024-08-27

Modeler - Show group in the algorithm dialog title

Jürgen E. Fischer <[email protected]> 2024-08-28

debian packaging: include pdal support for noble-ubuntugis (fixes #58485)

(cherry picked from commit 4a1540ed37f8df716cf1b7422608825c455eccc5)

Mathieu Pellerin <[email protected]> 2024-08-26

[expression] Fix eval_template() not working with field caltulator and virtual fields

qgis-bot <[email protected]> 2024-08-27

auto sipify 🍺

Nyall Dawson <[email protected]> 2024-08-23

Fix bug with inverted polygon renderer vs OTF simplification

The simplification MUST be applied prior to transforming geometries,
or the precalculated simplification tolerance will no be correct
and may be excessive (eg when the simplification tolerance
was calculated for a map in meters, yet the rendered layer is
in degrees -- in this case we would simplify the inverted geometry
with a tolerance of ~1 degree!)

Ensure that we apply the simplification FIRST, then transform,
and disable further simplification when rendering the calculated
inverted feature. This is also a performance boost, because we
are simplifying geometries prior to transforming + calculating
the inversion, so usually end up with a lot less vertices
to handle in those operations...

Merge: 59a40789c3d f0376b62efb
Even Rouault <[email protected]> 2024-08-25

Merge pull request #58478 from qgis/backport-58384-to-release-3_38

[Backport release-3_38] [ServerWFS] Remove version from OGC urn

Julien Cabieces <[email protected]> 2024-08-14

fix(ServerWFS): Remove version from OGC urn

in order to stay consistent with the whole application (GeoJSON export
for instance) where version is not set. Version is optionnal (see
https://www.ogc.org/about-ogc/policies/ogc-urn-policy/).

bdm-oslandia <[email protected]> 2024-08-20

fix(qgshttpheaders): add backward compatibility in setFromUrlQuery

qgis-bot <[email protected]> 2024-08-17

auto sipify 🍺

Mathieu Pellerin <[email protected]> 2024-08-17

Address review

Mathieu Pellerin <[email protected]> 2024-08-16

[processing] Fix script editor dialog flagging opened files as immediately modified

Mathieu Pellerin <[email protected]> 2024-08-16

[code editor] Do not reset current line when refreshing content due to external edit

Mathieu Pellerin <[email protected]> 2024-08-16

[processing] Fix script editor dialog wrongly jumping back to line 1 and setting changed to true after saving file

Mathieu Pellerin <[email protected]> 2024-08-16

[gui][code editor] Fix lack of styling for python lexer's unclosed strings and f-strings causing issues with dark themes

Jürgen E. Fischer <[email protected]> 2024-08-16

Release of 3.38.2

Jürgen E. Fischer <[email protected]> 2024-08-16

translation update for 3.38.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.38.2) UNRELEASED; urgency=medium
qgis (3.38.3) UNRELEASED; urgency=medium

* Release of 3.38.3

-- Jürgen E. Fischer <[email protected]> Fri, 13 Sep 2024 14:01:14 +0200

qgis (3.38.2) unstable; urgency=medium

* Release of 3.38.2

-- Jürgen E. Fischer <[email protected]> Fri, 16 Aug 2024 14:14:32 +0200
-- Jürgen E. Fischer <[email protected]> Fri, 13 Sep 2024 14:01:14 +0200

qgis (3.38.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.38.3" date="2024-09-13" />
<release version="3.38.2" date="2024-08-16" />
<release version="3.38.1" date="2024-07-19" />
<release version="3.38.0" date="2024-06-21" />
Expand Down

0 comments on commit 37f9e6e

Please sign in to comment.