Skip to content

Commit fbab030

Browse files
committed
Release 1.27.0
- Updated version to 1.27.0 - Generated OpenAPI specifications 🤖 Generated with automated release script
1 parent a772da8 commit fbab030

12 files changed

Lines changed: 18 additions & 18 deletions

File tree

.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.26.0
7+
GEOPULSE_VERSION=1.27.0
88

99
# Frontend (UI) URL (legacy)
1010
# DEPRECATED: kept for backward compatibility with older deployments.

backend/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.tess1o</groupId>
88
<artifactId>GeoPulse</artifactId>
9-
<version>1.26.0</version>
9+
<version>1.27.0</version>
1010
</parent>
1111
<artifactId>backend</artifactId>
1212
<properties>

backend/src/main/resources/application.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ geocoding.provider.delay.ms=${GEOPULSE_GEOCODING_DELAY_MS:1000}
125125
# Provider availability flags
126126
geocoding.provider.nominatim.enabled=${GEOPULSE_GEOCODING_NOMINATIM_ENABLED:true}
127127
quarkus.rest-client.nominatim-api.url=${GEOPULSE_GEOCODING_NOMINATIM_URL:https://nominatim.openstreetmap.org}
128-
quarkus.rest-client.nominatim-api.user-agent=GeoPulse/1.26.0 (+https://github.com/tess1o/geopulse)
128+
quarkus.rest-client.nominatim-api.user-agent=GeoPulse/1.27.0 (+https://github.com/tess1o/geopulse)
129129
# Nominatim geocoding language preference (BCP 47 format: en-US, de, uk, ja, etc.)
130130
# If not set, no Accept-Language header will be sent (existing behavior)
131131
geocoding.nominatim.language=${GEOPULSE_GEOCODING_NOMINATIM_LANGUAGE:""}
@@ -480,7 +480,7 @@ geopulse.prometheus.memory.enabled=${GEOPULSE_PROMETHEUS_MEMORY_ENABLED:true}
480480

481481
mp.openapi.extensions.smallrye.openapi=3.0.4
482482
mp.openapi.extensions.smallrye.info.title=GeoPulse API
483-
mp.openapi.extensions.smallrye.info.version=1.26.0
483+
mp.openapi.extensions.smallrye.info.version=1.27.0
484484
mp.openapi.extensions.smallrye.info.description=GeoPulse backend REST API documentation.
485485
mp.openapi.extensions.smallrye.info.contact.name=tess1o
486486
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.26.0
28+
version: 1.27.0
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.26.0
393+
VERSION=1.27.0
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.26.0.tar.gz: OK
462-
geopulse-backend-native-amd64-1.26.0: OK
461+
geopulse-frontend-1.27.0.tar.gz: OK
462+
geopulse-backend-native-amd64-1.27.0: OK
463463
```
464464

465465
:::caution Checksum Verification
@@ -1172,7 +1172,7 @@ sudo nginx -t
11721172

11731173
```bash
11741174
# Set new version
1175-
NEW_VERSION=1.26.0
1175+
NEW_VERSION=1.27.0
11761176

11771177
# Create temporary directory
11781178
mkdir -p /tmp/geopulse-upgrade

docs/openapi/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11116,7 +11116,7 @@
1111611116
},
1111711117
"info" : {
1111811118
"title" : "GeoPulse API",
11119-
"version" : "1.26.0",
11119+
"version" : "1.27.0",
1112011120
"description" : "GeoPulse backend REST API documentation.",
1112111121
"contact" : {
1112211122
"name" : "tess1o",

docs/openapi/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7943,7 +7943,7 @@ paths:
79437943
- Version Resource
79447944
info:
79457945
title: GeoPulse API
7946-
version: 1.26.0
7946+
version: 1.27.0
79477947
description: GeoPulse backend REST API documentation.
79487948
contact:
79497949
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.26.0";
54+
proxy_set_header User-Agent "GeoPulse/1.27.0";
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.26.0</version>
5+
<version>1.27.0</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.26.0
6-
appVersion: "1.26.0"
5+
version: 1.27.0
6+
appVersion: "1.27.0"
77
keywords:
88
- gps
99
- tracking

0 commit comments

Comments
 (0)