Skip to content

Commit 89d8422

Browse files
committed
release v1.10.3
2 parents 397c0c8 + eb42115 commit 89d8422

File tree

10 files changed

+210
-149
lines changed

10 files changed

+210
-149
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A clear and concise description of what the bug is.
1212

1313
### General Information
1414
Please include the following general information about the issue and list any additional steps needed to reproduce the bug.
15-
- Version of the ohsome API [e.g. `1.10.0`]
15+
- Version of the ohsome API [e.g. `1.10.3`]
1616
- Which API instance was requested [e.g. remote instance at `https://api.ohsome.org/v1`, local instance with an h2 file or connected to the cluster, etc.]
1717
- Affected endpoint(s) [e.g. /contributions/count]
1818
- URL of your request (and request body if applicable)

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
Changelog
22
=========
33

4+
## 1.10.3
5+
6+
### Bug Fixes
7+
* Fix contributions extractions endpoints which were missing _deletion_ contributions that were later reverted ([#324])
8+
9+
### Other
10+
* Fix filter documentation ([#326])
11+
* Upgrade to OSHDB [v1.2.3](https://github.com/GIScience/oshdb/blob/main/CHANGELOG.md#123)
12+
13+
[#324]: https://github.com/GIScience/ohsome-api/pull/324
14+
[#326]: https://github.com/GIScience/ohsome-api/pull/326
15+
16+
417
## 1.10.2
518

619
### Bug Fixes

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.heigit.ohsome/ohsome-api/badge.svg)](https://search.maven.org/artifact/org.heigit.ohsome/ohsome-api)
66
[![LICENSE](https://img.shields.io/github/license/GIScience/ohsome-api)](LICENSE)
77
[![API docs](https://img.shields.io/badge/API-docs-blue.svg)](https://docs.ohsome.org/ohsome-api/stable)
8-
[![JavaDocs](https://img.shields.io/badge/Java-docs-blue.svg)](https://docs.ohsome.org/java/ohsome-api)
8+
[![javadoc](https://javadoc.io/badge2/org.heigit.ohsome/ohsome-api/javadoc.svg)](https://javadoc.io/doc/org.heigit.ohsome/ohsome-api)
99
[![status: active](https://github.com/GIScience/badges/raw/master/status/active.svg)](https://github.com/GIScience/badges#active)
1010

1111
The ohsome API is a generic web API for in-depth analysis of OpenStreetMap (OSM) data with a focus on its history. It allows to get aggregated statistics about the evolution of OSM data itself and about the contributors behind the data. Furthermore, data extraction methods are provided to access the historic development of individual OSM features.
1212

13-
The functionalities of the ohsome API can be accessed via HTTP requests. As a basis underneath serves the [OSHDB API](https://github.com/GIScience/oshdb). The current stable version is [v1.10.2](https://github.com/GIScience/ohsome-api/releases/tag/1.10.2). Developed and maintained by [HeiGIT](https://heigit.org/).
13+
The functionalities of the ohsome API can be accessed via HTTP requests. As a basis underneath serves the [OSHDB API](https://github.com/GIScience/oshdb). The current stable version is [v1.10.3](https://github.com/GIScience/ohsome-api/releases/tag/1.10.3). Developed and maintained by [HeiGIT](https://heigit.org/).
1414

1515
## Using the ohsome API
1616

@@ -39,7 +39,7 @@ Here you see an example response giving the length of residential roads for a bo
3939
"url": "https://ohsome.org/copyrights",
4040
"text": "© OpenStreetMap contributors"
4141
},
42-
"apiVersion": "1.10.2",
42+
"apiVersion": "1.10.3",
4343
"metadata": {
4444
"executionTime": 858,
4545
"description": "Total length of items in meters.",
@@ -122,8 +122,8 @@ These instructions will get you a copy of the project up and running on your loc
122122
2. move to your Maven project directory in a shell (e.g. Windows PowerShell)
123123
3. enter the command `mvn -DskipTests=true package` to build the project (if you want to build it running the integrated tests too, look at the section [Testing](#testing))
124124
4. to run the jar file enter the following (if no additional keytables file is given, you can assume that it is included):
125-
* keytables included: `java -jar target/ohsome-api-1.10.2.jar --database.db=C:/path-to-your-data/ba-wue.oshdb`
126-
* keytables not included: `java -jar target/ohsome-api-1.10.2.jar --database.db=C:/path-to-your-data/ba-wue.oshdb --database.keytables=C:/path-to-your-keytablesFile/keytables`
125+
* keytables included: `java -jar target/ohsome-api-1.10.3.jar --database.db=C:/path-to-your-data/ba-wue.oshdb`
126+
* keytables not included: `java -jar target/ohsome-api-1.10.3.jar --database.db=C:/path-to-your-data/ba-wue.oshdb --database.keytables=C:/path-to-your-keytablesFile/keytables`
127127

128128
Now you should have a running local API, which is ready for receiving requests under *http://localhost:8080/*.
129129
<br>To check if it is running properly, you should be able to visit the swagger documentation under *http://localhost:8080/swagger-ui.html*.
@@ -133,7 +133,7 @@ Now you should have a running local API, which is ready for receiving requests u
133133
* to disable multithreading: `--database.multithreading=false`
134134
* if you want to run the maven project in your IDE, you need to set the paths to your data in the run configurations
135135
* in Eclipse: *Run As --> Run Configurations --> (x)= Arguments --> Program arguments: 'enter the parameters here'*
136-
* if you want to get information about the code directly, you can access the [Javadoc](https://docs.ohsome.org/java/ohsome-api/), which gets updated daily.
136+
* if you want to get information about the code directly, you can access the [Javadoc](https://javadoc.io/doc/org.heigit.ohsome/ohsome-api), which gets updated daily.
137137

138138
## Testing
139139

0 commit comments

Comments
 (0)