[postgis-tickets] [SCM] PostGIS branch stable-2.3 updated. 2d13f51d9bb288f52c12f7595f802efd5719c80b
git at osgeo.org
git at osgeo.org
Mon May 25 22:57:44 PDT 2020
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".
The branch, stable-2.3 has been updated
via 2d13f51d9bb288f52c12f7595f802efd5719c80b (commit)
from 2da103a6bffa6ae956b8929bd23b02aa158536f8 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 2d13f51d9bb288f52c12f7595f802efd5719c80b
Author: Regina Obe <lr at pcorp.us>
Date: Tue May 26 01:57:39 2020 -0400
Prepping for release and insure .git folder is removed in packaging. References #4633 for PostGIS 2.3.11
diff --git a/NEWS b/NEWS
index b83c1bc..03f7aac 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,5 @@
PostGIS 2.3.11
-XXXX/XX/XX
+2020/05/XX -- Final release
* Bug Fixes and Enhancements *
diff --git a/doc/release_notes.xml b/doc/release_notes.xml
index 698c6b6..7f0d384 100644
--- a/doc/release_notes.xml
+++ b/doc/release_notes.xml
@@ -3,6 +3,32 @@
<title>Appendix</title>
<subtitle>Release Notes</subtitle>
<sect1>
+ <title>Release 2.3.11</title>
+ <para>Release date: 2020/05/xx</para>
+ <para>This is the final release for 2.3 series.
+ This is a bug fix and performance improvement release.</para>
+ <simplesect>
+ <title>Bug Fixes and Enhancements</title>
+ <para>#4475, Avoid reading into empty ptarray (Paul Ramsey)</para>
+ <para>#4518, Fix geometry_columns and raster views
+ to not use pg_constraints.consrc which was removed in PG 12 (Regina Obe)</para>
+ <para>#4492, Fix ST_Simplify ignoring the value of the 3rd parameter (Raúl Marín)</para>
+ <para>#4494, Fix ST_Simplify output having an outdated bbox (Raúl Marín)</para>
+ <para>#4493, Fix ST_RemoveRepeatedPoints output having an outdated bbox (Raúl Marín)</para>
+ <para>#4495, Fix ST_SnapToGrid output having an outdated bbox (Raúl Marín)</para>
+ <para>#4498, Restrict build for PgSQL < 9.6</para>
+ <para>#4519, Fix getSRIDbySRS crash (Raúl Marín)</para>
+ <para>#4534, Fix leak in lwcurvepoly_from_wkb_state (Raúl Marín)</para>
+ <para>#4536, Fix leak in lwcollection_from_wkb_state (Raúl Marín)</para>
+ <para>#4537, Fix leak in WKT collection parser (Raúl Marín)</para>
+ <para>#4547, Fix AddRasterConstraints handling of empty tables (Sandro Santilli)</para>
+ <para>#4549, Fix schema qualification of internal types (Raúl Marín)</para>
+ <para>#4546, Fix PLPGSQL functions missing the schema qualification (Raúl Marín)</para>
+ <para>#4621, Prevent stack overflow when parsing WKB (Raúl Marín)</para>
+ <para>#4652, Fix several memory related bugs in ST_GeomFromGML (Raúl Marín)</para>
+ </simplesect>
+ </sect1>
+ <sect1>
<title>Release 2.3.10</title>
<para>Release date: 2019/08/11</para>
<para>This is a bug fix and performance improvement release.</para>
diff --git a/make_dist.sh b/make_dist.sh
index 91f1ccb..38acbe9 100755
--- a/make_dist.sh
+++ b/make_dist.sh
@@ -49,7 +49,7 @@ if [ -n "$1" ]; then
if [ "$1" = "-b" ]; then
shift
if [ "$git" = "yes" ]; then
- tag=svn-$1
+ tag=stable-$1
else
tag="$1"
[ "$tag" != "trunk" ] && tag="branches/$tag"
@@ -69,19 +69,7 @@ if [ -d "$outdir" ]; then
exit 1
fi
-if [ "$git" = "no" ]; then
- echo "Exporting tag $tag"
- svnurl="http://svn.osgeo.org/postgis/$tag"
- svn export $svnurl "$outdir"
- if [ $? -gt 0 ]; then
- exit 1
- fi
-else
- git clone -b $tag . $outdir || exit 1
- #cd $outdir
- #git checkout $tag || exit 1
- #cd -
-fi
+git clone -b $tag . $outdir || exit 1
echo "Removing make_dist.sh and HOWTO_RELEASE"
rm -fv "$outdir"/make_dist.sh "$outdir"/HOWTO_RELEASE
@@ -116,10 +104,9 @@ echo "Running make distclean"
owd="$PWD"
cd "$outdir"
${MAKE} distclean
-if [ "$git" = "yes" ]; then
- echo "Removing .git dir"
- rm -rf .git
-fi
+echo "Removing .git dir"
+rm -rf .git
+
cd "$owd"
# Find a better version name when fetching
-----------------------------------------------------------------------
Summary of changes:
NEWS | 2 +-
doc/release_notes.xml | 26 ++++++++++++++++++++++++++
make_dist.sh | 23 +++++------------------
3 files changed, 32 insertions(+), 19 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list