|
| 1 | +# GDAL/OGR 3.8.4 Release Notes |
| 2 | + |
| 3 | +GDAL 3.8.4 is a bugfix release. |
| 4 | + |
| 5 | +## Build |
| 6 | + |
| 7 | +* FindECW.cmake: make it work for Windows 32-bit builds (#9106) |
| 8 | +* Restore use of gmtime_r and localtime_r; extend to ctime_r; use Windows |
| 9 | + variants too |
| 10 | +* FindSQLite3.cmake: improve detection of static libsqlite3.a (#9096) |
| 11 | +* bash_completion installation: Allow the project_binary_dir to contain a |
| 12 | + whitespace |
| 13 | + |
| 14 | +## Docker build recipes |
| 15 | + |
| 16 | +* docker/ubuntu-full/Dockerfile: update to Arrow 15.0.0 |
| 17 | +* docker/ubuntu-full/Dockerfile: pin libarrow-acero-dev version (#9183) |
| 18 | +* docker/ubuntu-full/Dockerfile: disable AVX2 when building TileDB |
| 19 | + |
| 20 | +## GDAL 3.8.4 |
| 21 | + |
| 22 | +### Port |
| 23 | + |
| 24 | +* /vsisparse/: fix Stat() on files larger than 4 GB on 32-bit builds |
| 25 | +* CPLAtof()/CPLStrtod(): recognize again INF and -INF |
| 26 | +* /vsicurl/: fix potential multithreaded crash when downloading the same region |
| 27 | + in parallel and that the download fails |
| 28 | + |
| 29 | +### Core |
| 30 | + |
| 31 | +* PAM: only unset GPF_DIRTY flag |
| 32 | +* GDALOverviewDataset: avoid setting SetEnableOverviews(false) during lifetime |
| 33 | + of object. Just do it transiently |
| 34 | + |
| 35 | +### Utilities |
| 36 | + |
| 37 | +* gdalinfo: do not emit errors if corner coordinate reprojection fails |
| 38 | +* gdalwarp: do not enable blank line detection when -tap and -te are specified |
| 39 | + (#9059) |
| 40 | + |
| 41 | +### Raster drivers |
| 42 | + |
| 43 | +BMP driver: |
| 44 | + * fix reading images larger than 4GB (3.4.0 regression) |
| 45 | + |
| 46 | +EEDA/EEDAI driver: |
| 47 | + * use 'crsWkt' element |
| 48 | + |
| 49 | +GRIB driver: |
| 50 | + * degrib: use gmtime_r() or gmtime_s() when possible |
| 51 | + |
| 52 | +netCDF driver: |
| 53 | + * use VSILocalTime() |
| 54 | + |
| 55 | +PCIDSK driver: |
| 56 | + * PCIDSK SDK: use ctime_r() or ctime_s() when possible |
| 57 | + |
| 58 | +PDF driver: |
| 59 | + * correctly initialize PAM when opening a subdataset (specific page for |
| 60 | + example) |
| 61 | + |
| 62 | +VRT driver: |
| 63 | + * VRTPansharpenedRasterBand::GetOverviewCount(): robustify against potential |
| 64 | + failure of GDALCreateOverviewDataset() |
| 65 | + |
| 66 | +WMS driver: |
| 67 | + * fix nullptr dereference on invalid document (ossfuzz #65772) |
| 68 | + |
| 69 | +## OGR 3.8.4 |
| 70 | + |
| 71 | +### Core |
| 72 | + |
| 73 | +* ExecuteSQL(dialect=SQLite): support 'SELECT\n' for example (#9093) |
| 74 | +* OGRGeometryFactory::createGeometry(): do not assert on wkbUnknown input |
| 75 | + |
| 76 | +### Utilities |
| 77 | + |
| 78 | +* ogr2ogr: Arrow code path: take into account -limit parameter for |
| 79 | + MAX_FEATURES_IN_BATCH |
| 80 | + |
| 81 | +### Vector drivers |
| 82 | + |
| 83 | +GeoRSS, GPX, JML, KML, LVBAG, SVG, XLSX drivers: |
| 84 | + * harmonize on a 8192 byte large parsing buffer on all platforms |
| 85 | + |
| 86 | +Arrow/Parquet driver: |
| 87 | + * add (minimum) support for libarrow 15.0 |
| 88 | + * MapArrowTypeToOGR(): make the code robust to potentially new entries in the |
| 89 | + arrow::Type enumeration |
| 90 | + |
| 91 | +CAD driver: |
| 92 | + * Internal libopencad: use localtime_r() or localtime_s() when possible |
| 93 | + |
| 94 | +CSV driver: |
| 95 | + * do not quote numeric fields even if STRING_QUOTING=ALWAYS (3.8.1 regression) |
| 96 | + (#55808) |
| 97 | + |
| 98 | +GMLAS driver: |
| 99 | + * recognize GeometricPrimitivePropertyType |
| 100 | + |
| 101 | +LIBKML driver: |
| 102 | + * fix crash on a gx:Track without when subelements (qgis/qgis#55963) |
| 103 | + |
| 104 | +MSSQLSpatial driver: |
| 105 | + * Fix BCP performance problem (#9112) |
| 106 | + |
| 107 | +MySQL driver: |
| 108 | + * fix/workaround server-side spatial filtering when SRS is geographic with |
| 109 | + MySQL >= 8 (qgis/QGIS#55463) |
| 110 | + |
| 111 | +ODS driver: |
| 112 | + * fix parsing of large cells on Windows (at least with mingw64) with recent |
| 113 | + expat 2.6.0 release |
| 114 | + |
| 115 | +PDF driver: |
| 116 | + * vector stream parser: correctly parse structures like "[3 3.5] 0 d" |
| 117 | + |
| 118 | +PDS driver: |
| 119 | + * fix compilation with Emscripten version 3.1.7 |
| 120 | + |
| 121 | +SQLite driver: |
| 122 | + * OGR2SQLITE_Setup(): robustify against potential crashing scenario |
| 123 | + |
| 124 | +### Python bindings |
| 125 | + |
| 126 | +* remove run of 'python -m lib2to3' that is a no-op, given that lib2to3 is |
| 127 | + removed in python 3.13 (#9173) |
| 128 | + |
1 | 129 | # GDAL/OGR 3.8.3 Release Notes
|
2 | 130 |
|
3 | 131 | GDAL 3.8.3 is a bugfix release.
|
@@ -41,7 +169,7 @@ VRT driver:
|
41 | 169 | Affects ogr2ogr from GPKG/FlatGeoBuf to something else) (#8998)
|
42 | 170 |
|
43 | 171 | GPKG driver:
|
44 |
| - * Fix error message that sometimes occured with multi-threaded ArrowArray |
| 172 | + * Fix error message that sometimes occurred with multi-threaded ArrowArray |
45 | 173 | interface, and add OGR_GPKG_NUM_THREADS config option. (#9018, 9030)
|
46 | 174 |
|
47 | 175 | GeoJSON driver:
|
|
0 commit comments