]> git.openstreetmap.org Git - nominatim.git/blob - src/nominatim_db/version.py
Merge pull request #3519 from lonvia/api-error-handling
[nominatim.git] / src / nominatim_db / version.py
1 # SPDX-License-Identifier: GPL-3.0-or-later
2 #
3 # This file is part of Nominatim. (https://nominatim.org)
4 #
5 # Copyright (C) 2024 by the Nominatim developer community.
6 # For a full list of authors see the git log.
7 """
8 Version information for Nominatim.
9 """
10 from typing import NamedTuple, Optional
11
12 # See also https://github.com/PyCQA/pylint/issues/6006
13 # pylint: disable=useless-import-alias,unused-import
14
15 class NominatimVersion(NamedTuple):
16     """ Version information for Nominatim. We follow semantic versioning.
17
18         Major, minor and patch_level refer to the last released version.
19         The database patch level tracks important changes between releases
20         and must always be increased when there is a change to the database or code
21         that requires a migration.
22
23         When adding a migration on the development branch, raise the patch level
24         to 99 to make sure that the migration is applied when updating from a
25         patch release to the next minor version. Patch releases usually shouldn't
26         have migrations in them. When they are needed, then make sure that the
27         migration can be reapplied and set the migration version to the appropriate
28         patch level when cherry-picking the commit with the migration.
29     """
30
31     major: int
32     minor: int
33     patch_level: int
34     db_patch_level: int
35
36     def __str__(self) -> str:
37         if self.db_patch_level is None:
38             return f"{self.major}.{self.minor}.{self.patch_level}"
39
40         return f"{self.major}.{self.minor}.{self.patch_level}-{self.db_patch_level}"
41
42     def release_version(self) -> str:
43         """ Return the release version in semantic versioning format.
44
45             The release version does not include the database patch version.
46         """
47         return f"{self.major}.{self.minor}.{self.patch_level}"
48
49
50
51 def parse_version(version: str) -> NominatimVersion:
52     """ Parse a version string into a version consisting of a tuple of
53         four ints: major, minor, patch level, database patch level
54
55         This is the reverse operation of `version_str()`.
56     """
57     parts = version.split('.')
58     return NominatimVersion(*[int(x) for x in parts[:2] + parts[2].split('-')])
59
60
61 NOMINATIM_VERSION = parse_version('4.4.99-1')
62
63 POSTGRESQL_REQUIRED_VERSION = (9, 6)
64 POSTGIS_REQUIRED_VERSION = (2, 2)
65 OSM2PGSQL_REQUIRED_VERSION = (1, 8)
66
67 # Cmake sets a variable @GIT_HASH@ by executing 'git --log'. It is not run
68 # on every execution of 'make'.
69 # cmake/tool-installed.tmpl is used to build the binary 'nominatim'. Inside
70 # there is a call to set the variable value below.
71 GIT_COMMIT_HASH : Optional[str] = None