* GEOSIntersection: Fix FE_INVALID exception on intersection of disjoint geometries (GH-791, Joris Van den Bossche & Dan Baston)

* Fix incorrect result from Envelope::disjoint (GH-791, Dan Baston)
  * Fix handling of odd cases in PolygonHoleJoiner (JTS-946, Paul Ramsey, Martin Davis)
  * Support gcc-13 (GH-743, Sergei Trofimovich)
  * Disallow Inf envelopes in Quadtree, avoid inf loop (Paul Ramsey)
  * GEOSUnaryUnion: Fix crash on collection containing empty point (GH-830, Dan Baston)
  * GEOSSTRtree_iterate: Do not return removed items (GH-833, Dan Baston)
  * IndexedFacetDistance: Fix crash with Inf coordinates (GH-821, Dan Baston)
  * HausdorffDistance: Fix crash on collection containing empty point (GH-840, Dan Baston)
  * MaximumInscribedCircle: Fix infinite loop with non-finite coordinates (GH-843, Dan Baston)
  * DistanceOp: Fix crash on collection containing empty point (GH-842, Dan Baston)
  * Guard against non-finite distances in Buffer/OffsetCurve (GH-661, Paul Ramsey)

OBS-URL: https://build.opensuse.org/package/show/Application:Geo/geos?expand=0&rev=52
This commit is contained in:
Martin Pluskal 2023-03-17 09:56:53 +00:00 committed by Git OBS Bridge
parent d49346dfbb
commit 479c174951

View File

@ -2,18 +2,18 @@
Fri Mar 17 09:49:05 UTC 2023 - Martin Pluskal <mpluskal@suse.com>
- Update to version 3.11.2:
* GEOSIntersection: Fix FE_INVALID exception on intersection of disjoint geometries (GH-791, Joris Van den Bossche & Dan Baston)
* Fix incorrect result from Envelope::disjoint (GH-791, Dan Baston)
* Fix handling of odd cases in PolygonHoleJoiner (JTS-946, Paul Ramsey, Martin Davis)
* Support gcc-13 (GH-743, Sergei Trofimovich)
* Disallow Inf envelopes in Quadtree, avoid inf loop (Paul Ramsey)
* GEOSUnaryUnion: Fix crash on collection containing empty point (GH-830, Dan Baston)
* GEOSSTRtree_iterate: Do not return removed items (GH-833, Dan Baston)
* IndexedFacetDistance: Fix crash with Inf coordinates (GH-821, Dan Baston)
* HausdorffDistance: Fix crash on collection containing empty point (GH-840, Dan Baston)
* MaximumInscribedCircle: Fix infinite loop with non-finite coordinates (GH-843, Dan Baston)
* DistanceOp: Fix crash on collection containing empty point (GH-842, Dan Baston)
* Guard against non-finite distances in Buffer/OffsetCurve (GH-661, Paul Ramsey)
* GEOSIntersection: Fix FE_INVALID exception on intersection of disjoint geometries (GH-791, Joris Van den Bossche & Dan Baston)
* Fix incorrect result from Envelope::disjoint (GH-791, Dan Baston)
* Fix handling of odd cases in PolygonHoleJoiner (JTS-946, Paul Ramsey, Martin Davis)
* Support gcc-13 (GH-743, Sergei Trofimovich)
* Disallow Inf envelopes in Quadtree, avoid inf loop (Paul Ramsey)
* GEOSUnaryUnion: Fix crash on collection containing empty point (GH-830, Dan Baston)
* GEOSSTRtree_iterate: Do not return removed items (GH-833, Dan Baston)
* IndexedFacetDistance: Fix crash with Inf coordinates (GH-821, Dan Baston)
* HausdorffDistance: Fix crash on collection containing empty point (GH-840, Dan Baston)
* MaximumInscribedCircle: Fix infinite loop with non-finite coordinates (GH-843, Dan Baston)
* DistanceOp: Fix crash on collection containing empty point (GH-842, Dan Baston)
* Guard against non-finite distances in Buffer/OffsetCurve (GH-661, Paul Ramsey)
-------------------------------------------------------------------
Mon Nov 28 08:26:52 UTC 2022 - Martin Pluskal <mpluskal@suse.com>