]> git.openstreetmap.org Git - nominatim.git/commitdiff
prepare release 5.1.0
authorSarah Hoffmann <lonvia@denofr.de>
Tue, 1 Apr 2025 08:16:35 +0000 (10:16 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Tue, 1 Apr 2025 08:16:35 +0000 (10:16 +0200)
ChangeLog
SECURITY.md
src/nominatim_api/version.py
src/nominatim_db/version.py

index 9ffe4038db40471187ab6dacf40594d023bec87a..dff198eb25be97c61772ef3de8daa40d0446f819 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,22 @@
+5.1.0
+ * replace datrie with simple internal trie implementation
+ * add pattern-based postcode parser for queries,
+   postcodes no longer need to be present in OSM to be found
+ * take variants into account when computing token similarity
+ * add extratags output to geocodejson format
+ * fix default layer setting used for structured queries
+ * update abbreviation lists for Russian and English
+   (thanks @shoorick, @IvanShift, @mhsrn21)
+ * fix variant generation for Norwegian
+ * fix normalization around space-like characters
+ * improve postcode search and handling of postcodes in queries
+ * reorganise internal query structure and get rid of slow enums
+ * enable code linting for tests
+ * various code moderinsations in test code (thanks @eumiro)
+ * remove setting osm2pgsql location via config.lib_dir
+ * make SQL functions parallel save as far as possible (thanks @otbutz)
+ * various fixes and improvements to documentation (thanks @TuringVerified)
+
 5.0.0
  * increase required versions for PostgreSQL (12+), PostGIS (3.0+)
  * remove installation via cmake and debundle osm2pgsql
index e3660bcd2e72a0d528d1a0dc539c0ed6463fe70e..98295e1f70ef64060d12b652a061fb859c4622ea 100644 (file)
@@ -9,7 +9,8 @@ versions.
 
 | Version | End of support for security updates |
 | ------- | ----------------------------------- |
-| 5.0.x   | 2027-02-06
+| 5.1.x   | 2027-04-01                          |
+| 5.0.x   | 2027-02-06                          |
 | 4.5.x   | 2026-09-12                          |
 | 4.4.x   | 2026-03-07                          |
 | 4.3.x   | 2025-09-07                          |
index fc401248717f9591636bccedd1587a1b30e21b58..3c98435d0b3eb7e9fa29d2f0b26fc7879f5beff2 100644 (file)
@@ -8,4 +8,4 @@
 Version information for the Nominatim API.
 """
 
-NOMINATIM_API_VERSION = '5.0.0'
+NOMINATIM_API_VERSION = '5.1.0'
index 268564980cc2cd274b1b5db7d5e4eb6e3071dcce..070417e305764769b683e515963f31935f48f230 100644 (file)
@@ -55,7 +55,7 @@ def parse_version(version: str) -> NominatimVersion:
     return NominatimVersion(*[int(x) for x in parts[:2] + parts[2].split('-')])
 
 
-NOMINATIM_VERSION = parse_version('5.0.0-0')
+NOMINATIM_VERSION = parse_version('5.1.0-0')
 
 POSTGRESQL_REQUIRED_VERSION = (12, 0)
 POSTGIS_REQUIRED_VERSION = (3, 0)