Skip to content

Commit 952c219

Browse files
authored
Merge pull request #699 from maxmind/greg/stf-411-release
Release 5.1.0
2 parents b232d27 + d6ab648 commit 952c219

4 files changed

Lines changed: 10 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
CHANGELOG
22
=========
33

4-
5.1.0 (unreleased)
4+
5.1.0 (2026-05-12)
55
------------------
66

7+
* Updated `maxmind-db` dependency to 4.1.0. This release fixes an issue with
8+
unbounded off-heap memory growth when using `FileMode.MEMORY` and a latent
9+
short-read bug when loading databases larger than 2GB into memory.
710
* Added `WebServiceClient.Builder.maxRetries(int)` to bound transport-failure
811
retries (default 1; set 0 to disable). See the README for retry semantics.
912
**Behavior change:** previously, transient transport failures (connection

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To do this, add the dependency to your pom.xml:
1717
<dependency>
1818
<groupId>com.maxmind.geoip2</groupId>
1919
<artifactId>geoip2</artifactId>
20-
<version>5.0.2</version>
20+
<version>5.1.0</version>
2121
</dependency>
2222
```
2323

@@ -30,7 +30,7 @@ repositories {
3030
mavenCentral()
3131
}
3232
dependencies {
33-
implementation 'com.maxmind.geoip2:geoip2:5.0.2'
33+
implementation 'com.maxmind.geoip2:geoip2:5.1.0'
3434
}
3535
```
3636

mise.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.maxmind.geoip2</groupId>
55
<artifactId>geoip2</artifactId>
6-
<version>5.0.2</version>
6+
<version>5.1.0</version>
77
<packaging>jar</packaging>
88
<name>MaxMind GeoIP2 API</name>
99
<description>GeoIP2 webservice client and database reader</description>
@@ -53,7 +53,7 @@
5353
<dependency>
5454
<groupId>com.maxmind.db</groupId>
5555
<artifactId>maxmind-db</artifactId>
56-
<version>4.0.2</version>
56+
<version>4.1.0</version>
5757
</dependency>
5858
<dependency>
5959
<groupId>com.fasterxml.jackson.core</groupId>
@@ -103,7 +103,7 @@
103103
<properties>
104104
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
105105
<!-- Baseline version for API compatibility checking. Update after each release. -->
106-
<japicmp.baselineVersion>5.0.2</japicmp.baselineVersion>
106+
<japicmp.baselineVersion>5.1.0</japicmp.baselineVersion>
107107
</properties>
108108
<build>
109109
<plugins>

0 commit comments

Comments
 (0)