Skip to content

Commit d08e95b

Browse files
committed
Release 1.28.1
- Updated version to 1.28.1 - Generated OpenAPI specifications 🤖 Generated with automated release script
1 parent 1f2f08b commit d08e95b

12 files changed

Lines changed: 100 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.28.0
7+
GEOPULSE_VERSION=1.28.1
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.28.0</version>
9+
<version>1.28.1</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
@@ -133,7 +133,7 @@ geocoding.provider.delay.ms=${GEOPULSE_GEOCODING_DELAY_MS:1000}
133133
# Provider availability flags
134134
geocoding.provider.nominatim.enabled=${GEOPULSE_GEOCODING_NOMINATIM_ENABLED:true}
135135
quarkus.rest-client.nominatim-api.url=${GEOPULSE_GEOCODING_NOMINATIM_URL:https://nominatim.openstreetmap.org}
136-
quarkus.rest-client.nominatim-api.user-agent=GeoPulse/1.28.0 (+https://github.com/tess1o/geopulse)
136+
quarkus.rest-client.nominatim-api.user-agent=GeoPulse/1.28.1 (+https://github.com/tess1o/geopulse)
137137
# Allow Nominatim forward search on public nominatim.openstreetmap.org (self-hosted is allowed regardless)
138138
geocoding.nominatim.public-host-forward-search-enabled=${GEOPULSE_GEOCODING_NOMINATIM_PUBLIC_HOST_FORWARD_SEARCH_ENABLED:false}
139139
# Nominatim geocoding language preference (BCP 47 format: en-US, de, uk, ja, etc.)
@@ -491,7 +491,7 @@ geopulse.prometheus.memory.enabled=${GEOPULSE_PROMETHEUS_MEMORY_ENABLED:true}
491491

492492
mp.openapi.extensions.smallrye.openapi=3.0.4
493493
mp.openapi.extensions.smallrye.info.title=GeoPulse API
494-
mp.openapi.extensions.smallrye.info.version=1.28.0
494+
mp.openapi.extensions.smallrye.info.version=1.28.1
495495
mp.openapi.extensions.smallrye.info.description=GeoPulse backend REST API documentation.
496496
mp.openapi.extensions.smallrye.info.contact.name=tess1o
497497
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.28.0
28+
version: 1.28.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.28.0
393+
VERSION=1.28.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.28.0.tar.gz: OK
462-
geopulse-backend-native-amd64-1.28.0: OK
461+
geopulse-frontend-1.28.1.tar.gz: OK
462+
geopulse-backend-native-amd64-1.28.1: 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.28.0
1175+
NEW_VERSION=1.28.1
11761176

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

docs/openapi/openapi.json

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9484,6 +9484,54 @@
94849484
} ]
94859485
}
94869486
},
9487+
"/api/trips/plan-search" : {
9488+
"get" : {
9489+
"parameters" : [ {
9490+
"name" : "lat",
9491+
"in" : "query",
9492+
"schema" : {
9493+
"format" : "double",
9494+
"type" : "number"
9495+
}
9496+
}, {
9497+
"name" : "limit",
9498+
"in" : "query",
9499+
"schema" : {
9500+
"format" : "int32",
9501+
"type" : "integer"
9502+
}
9503+
}, {
9504+
"name" : "lon",
9505+
"in" : "query",
9506+
"schema" : {
9507+
"format" : "double",
9508+
"type" : "number"
9509+
}
9510+
}, {
9511+
"name" : "q",
9512+
"in" : "query",
9513+
"schema" : {
9514+
"type" : "string"
9515+
}
9516+
} ],
9517+
"responses" : {
9518+
"200" : {
9519+
"description" : "OK"
9520+
},
9521+
"401" : {
9522+
"description" : "Not Authorized"
9523+
},
9524+
"403" : {
9525+
"description" : "Not Allowed"
9526+
}
9527+
},
9528+
"summary" : "Search",
9529+
"tags" : [ "Plan Search Resource" ],
9530+
"security" : [ {
9531+
"jwt" : [ ]
9532+
} ]
9533+
}
9534+
},
94879535
"/api/trips/plan-suggestion" : {
94889536
"get" : {
94899537
"parameters" : [ {
@@ -11269,7 +11317,7 @@
1126911317
},
1127011318
"info" : {
1127111319
"title" : "GeoPulse API",
11272-
"version" : "1.28.0",
11320+
"version" : "1.28.1",
1127311321
"description" : "GeoPulse backend REST API documentation.",
1127411322
"contact" : {
1127511323
"name" : "tess1o",

docs/openapi/openapi.yaml

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6806,6 +6806,40 @@ paths:
68066806
- Trip Resource
68076807
security:
68086808
- jwt: []
6809+
/api/trips/plan-search:
6810+
get:
6811+
parameters:
6812+
- name: lat
6813+
in: query
6814+
schema:
6815+
format: double
6816+
type: number
6817+
- name: limit
6818+
in: query
6819+
schema:
6820+
format: int32
6821+
type: integer
6822+
- name: lon
6823+
in: query
6824+
schema:
6825+
format: double
6826+
type: number
6827+
- name: q
6828+
in: query
6829+
schema:
6830+
type: string
6831+
responses:
6832+
"200":
6833+
description: OK
6834+
"401":
6835+
description: Not Authorized
6836+
"403":
6837+
description: Not Allowed
6838+
summary: Search
6839+
tags:
6840+
- Plan Search Resource
6841+
security:
6842+
- jwt: []
68096843
/api/trips/plan-suggestion:
68106844
get:
68116845
parameters:
@@ -8058,7 +8092,7 @@ paths:
80588092
- Version Resource
80598093
info:
80608094
title: GeoPulse API
8061-
version: 1.28.0
8095+
version: 1.28.1
80628096
description: GeoPulse backend REST API documentation.
80638097
contact:
80648098
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.28.0";
54+
proxy_set_header User-Agent "GeoPulse/1.28.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.28.0</version>
5+
<version>1.28.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.28.0
6-
appVersion: "1.28.0"
5+
version: 1.28.1
6+
appVersion: "1.28.1"
77
keywords:
88
- gps
99
- tracking

0 commit comments

Comments
 (0)