Skip to content

Commit 2347e06

Browse files
committed
Release 1.18.1
- Updated version to 1.18.1 - Generated OpenAPI specifications 🤖 Generated with automated release script
1 parent 53975bc commit 2347e06

File tree

12 files changed

+18
-35
lines changed

12 files changed

+18
-35
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Note: Many settings can also be managed via the Admin Panel UI once you have an admin user
55

66
# The version of the app, frontend and backend should use the same version
7-
GEOPULSE_VERSION=1.18.0
7+
GEOPULSE_VERSION=1.18.1
88

99
# Frontend (UI) URLs - used in CORS policies (comma-separated for multiple access methods)
1010
# Local development: http://localhost:5555

backend/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.github.tess1o</groupId>
99
<artifactId>GeoPulse</artifactId>
10-
<version>1.18.0</version>
10+
<version>1.18.1</version>
1111
</parent>
1212
<artifactId>backend</artifactId>
1313

backend/src/main/resources/application.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ geocoding.provider.delay.ms=${GEOPULSE_GEOCODING_DELAY_MS:1000}
114114
# Provider availability flags
115115
geocoding.provider.nominatim.enabled=${GEOPULSE_GEOCODING_NOMINATIM_ENABLED:true}
116116
quarkus.rest-client.nominatim-api.url=${GEOPULSE_GEOCODING_NOMINATIM_URL:https://nominatim.openstreetmap.org}
117-
quarkus.rest-client.nominatim-api.user-agent=GeoPulse/1.18.0 (+https://github.com/tess1o/geopulse)
117+
quarkus.rest-client.nominatim-api.user-agent=GeoPulse/1.18.1 (+https://github.com/tess1o/geopulse)
118118
# Nominatim geocoding language preference (BCP 47 format: en-US, de, uk, ja, etc.)
119119
# If not set, no Accept-Language header will be sent (existing behavior)
120120
geocoding.nominatim.language=${GEOPULSE_GEOCODING_NOMINATIM_LANGUAGE:""}
@@ -369,7 +369,7 @@ geopulse.prometheus.memory.enabled=${GEOPULSE_PROMETHEUS_MEMORY_ENABLED:true}
369369

370370
mp.openapi.extensions.smallrye.openapi=3.0.4
371371
mp.openapi.extensions.smallrye.info.title=GeoPulse API
372-
mp.openapi.extensions.smallrye.info.version=1.18.0
372+
mp.openapi.extensions.smallrye.info.version=1.18.1
373373
mp.openapi.extensions.smallrye.info.description=GeoPulse backend REST API documentation.
374374
mp.openapi.extensions.smallrye.info.contact.name=tess1o
375375
mp.openapi.extensions.smallrye.info.contact.email=kerriden1@gmail.com

charts/index.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ entries:
2525
type: application
2626
urls:
2727
- https://tess1o.github.io/geopulse/charts/geopulse-1.8.0.tgz
28-
version: 1.18.0
28+
version: 1.18.1
2929
- apiVersion: v2
3030
appVersion: 1.3.0
3131
created: "2025-11-14T21:43:48.796398+02:00"

docs-website/docs/getting-started/deployment/manual-installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ Set your desired version (check [GitHub Releases](https://github.com/tess1o/geop
390390
:::
391391

392392
```bash
393-
VERSION=1.18.0
393+
VERSION=1.18.1
394394
```
395395

396396
Create a temporary download directory:
@@ -458,8 +458,8 @@ sha256sum -c SHA256SUMS --ignore-missing
458458

459459
You should see:
460460
```
461-
geopulse-frontend-1.18.0.tar.gz: OK
462-
geopulse-backend-native-amd64-1.18.0: OK
461+
geopulse-frontend-1.18.1.tar.gz: OK
462+
geopulse-backend-native-amd64-1.18.1: OK
463463
```
464464

465465
:::caution Checksum Verification
@@ -1169,7 +1169,7 @@ sudo nginx -t
11691169

11701170
```bash
11711171
# Set new version
1172-
NEW_VERSION=1.18.0
1172+
NEW_VERSION=1.18.1
11731173

11741174
# Create temporary directory
11751175
mkdir -p /tmp/geopulse-upgrade

docs/openapi/openapi.json

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1334,19 +1334,12 @@
13341334
"maxLength" : 255,
13351335
"type" : "string"
13361336
},
1337-
"customMapTileUrl" : {
1338-
"maxLength" : 1000,
1339-
"type" : "string"
1340-
},
13411337
"measureUnit" : {
13421338
"$ref" : "#/components/schemas/MeasureUnit"
13431339
},
13441340
"defaultRedirectUrl" : {
13451341
"maxLength" : 1000,
13461342
"type" : "string"
1347-
},
1348-
"userId" : {
1349-
"$ref" : "#/components/schemas/UUID"
13501343
}
13511344
}
13521345
},
@@ -1679,9 +1672,6 @@
16791672
"newPassword" : {
16801673
"pattern" : "\\S",
16811674
"type" : "string"
1682-
},
1683-
"userId" : {
1684-
"$ref" : "#/components/schemas/UUID"
16851675
}
16861676
}
16871677
},
@@ -8127,7 +8117,7 @@
81278117
},
81288118
"info" : {
81298119
"title" : "GeoPulse API",
8130-
"version" : "1.18.0",
8120+
"version" : "1.18.1",
81318121
"description" : "GeoPulse backend REST API documentation.",
81328122
"contact" : {
81338123
"name" : "tess1o",

docs/openapi/openapi.yaml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,16 +1009,11 @@ components:
10091009
timezone:
10101010
maxLength: 255
10111011
type: string
1012-
customMapTileUrl:
1013-
maxLength: 1000
1014-
type: string
10151012
measureUnit:
10161013
$ref: "#/components/schemas/MeasureUnit"
10171014
defaultRedirectUrl:
10181015
maxLength: 1000
10191016
type: string
1020-
userId:
1021-
$ref: "#/components/schemas/UUID"
10221017
UpdateSettingRequest:
10231018
type: object
10241019
properties:
@@ -1278,8 +1273,6 @@ components:
12781273
newPassword:
12791274
pattern: \S
12801275
type: string
1281-
userId:
1282-
$ref: "#/components/schemas/UUID"
12831276
UpdateUserRoleRequest:
12841277
type: object
12851278
properties:
@@ -5781,7 +5774,7 @@ paths:
57815774
- Version Resource
57825775
info:
57835776
title: GeoPulse API
5784-
version: 1.18.0
5777+
version: 1.18.1
57855778
description: GeoPulse backend REST API documentation.
57865779
contact:
57875780
name: tess1o

frontend/nginx.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ server {
5151
proxy_set_header Cookie "";
5252
proxy_set_header Authorization "";
5353

54-
proxy_set_header User-Agent "GeoPulse/1.18.0";
54+
proxy_set_header User-Agent "GeoPulse/1.18.1";
5555
proxy_set_header Host $osm_subdomain.tile.openstreetmap.org;
5656

5757
proxy_http_version 1.1;

frontend/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<groupId>com.github.tess1o</groupId>
44
<artifactId>GeoPulse</artifactId>
5-
<version>1.18.0</version>
5+
<version>1.18.1</version>
66
</parent>
77
<modelVersion>4.0.0</modelVersion>
88
<artifactId>frontend</artifactId>

helm/geopulse/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: geopulse
33
description: A self-hosted location tracking and analysis platform with PostGIS and optional MQTT support
44
type: application
5-
version: 1.18.0
6-
appVersion: "1.18.0"
5+
version: 1.18.1
6+
appVersion: "1.18.1"
77
keywords:
88
- gps
99
- tracking

0 commit comments

Comments
 (0)