public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Robert Scheck <robert@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/libmaxminddb] f44: Upgrade to 1.14.1 (#2536861)
Date: Sat, 19 Sep 2026 20:08:44 GMT	[thread overview]
Message-ID: <178984852449.1.2172294147918037289.rpms-libmaxminddb-2af2ebb7fbc4@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/libmaxminddb
Branch : f44
Commit : 2af2ebb7fbc4faea73075d834ce6f999392be989
Author : Robert Scheck <robert@fedoraproject.org>
Date   : 2026-09-19T22:08:07+02:00
Stats  : +5/-30 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/libmaxminddb/c/2af2ebb7fbc4faea73075d834ce6f999392be989?branch=f44

Log:
Upgrade to 1.14.1 (#2536861)

---
diff --git a/libmaxminddb-1.14.0-uint64_t.patch b/libmaxminddb-1.14.0-uint64_t.patch
deleted file mode 100644
index f08cd67..0000000
--- a/libmaxminddb-1.14.0-uint64_t.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From cd138a624187b8beff2febe57cc407aa652438b9 Mon Sep 17 00:00:00 2001
-From: Robert Scheck <robert-scheck@users.noreply.github.com>
-Date: Sat, 12 Sep 2026 22:14:48 +0200
-Subject: [PATCH] Fix signedness warning in data section size check (fixes
- #486)
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-src/maxminddb.c:370:27: error: comparison of integer expressions of different signedness: ‘ssize_t’ {aka ‘int’} and ‘unsigned int’ [-Werror=sign-compare]
----
- src/maxminddb.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/maxminddb.c b/src/maxminddb.c
-index 634635b4..d9cc9c56 100644
---- a/src/maxminddb.c
-+++ b/src/maxminddb.c
-@@ -367,7 +367,7 @@ int MMDB_open(const char *const filename, uint32_t flags, MMDB_s *const mmdb) {
-     }
-     ssize_t data_section_size =
-         mmdb->file_size - search_tree_size - MMDB_DATA_SECTION_SEPARATOR;
--    if (data_section_size > UINT32_MAX || data_section_size <= 0) {
-+    if (data_section_size <= 0 || (uint64_t)data_section_size > UINT32_MAX) {
-         status = MMDB_INVALID_METADATA_ERROR;
-         goto cleanup;
-     }

diff --git a/libmaxminddb.spec b/libmaxminddb.spec
index 4fedb5a..5ad7fcd 100644
--- a/libmaxminddb.spec
+++ b/libmaxminddb.spec
@@ -1,13 +1,12 @@
 Summary:        C library for reading MaxMind DB files
 Name:           libmaxminddb
-Version:        1.14.0
+Version:        1.14.1
 Release:        1%{?dist}
 # BSD-3-Clause (src/maxminddb-compat-util.h) and Apache-2.0 (the rest)
 License:        Apache-2.0 AND BSD-3-Clause
 URL:            https://maxmind.github.io/libmaxminddb/
 Source0:        https://github.com/maxmind/libmaxminddb/releases/download/%{version}/%{name}-%{version}.tar.gz
 Source1:        maxminddb_config.h
-Patch0:         https://github.com/maxmind/libmaxminddb/pull/487.patch#/libmaxminddb-1.14.0-uint64_t.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  libtool
@@ -80,6 +79,9 @@ LD_PRELOAD=$RPM_BUILD_ROOT%{_libdir}/%{name}.so make check
 %{_mandir}/man3/MMDB_*.3*
 
 %changelog
+* Sat Sep 19 2026 Robert Scheck <robert@fedoraproject.org> 1.14.1-1
+- Upgrade to 1.14.1 (#2536861)
+
 * Sat Sep 12 2026 Robert Scheck <robert@fedoraproject.org> 1.14.0-1
 - Upgrade to 1.14.0 (#2529974)
 

diff --git a/sources b/sources
index 43f3399..61f675d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (libmaxminddb-1.14.0.tar.gz) = 91a880d7c66c7b022915ceb6cf467515505666381178ac7713e52ac99d0c02fc57e43bf581b3fcb9fa5673c2fdb489b1d7964dbb3ea2f36a15961783490852d1
+SHA512 (libmaxminddb-1.14.1.tar.gz) = d6e5f0e7fff896ac63525bcf01b06944388c6756889ac533dfaf416fd2e494953f31ede1a2352bdcf5018e2544b65eb3328a22f9233c50e01e0809a5bc6486cc

                 reply	other threads:[~2026-09-19 20:08 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178984852449.1.2172294147918037289.rpms-libmaxminddb-2af2ebb7fbc4@fedoraproject.org \
    --to=robert@fedoraproject.org \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox