Changeset: a63e11c1fd1b for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/a63e11c1fd1b
Modified Files:
        ChangeLog-Archive
        ChangeLog.Mar2025
        MonetDB.spec
        debian/changelog
        gdk/ChangeLog-Archive
        gdk/ChangeLog.Mar2025
        monetdb5/ChangeLog-Archive
        monetdb5/ChangeLog.Mar2025
        sql/ChangeLog-Archive
        sql/ChangeLog.Mar2025
Branch: Mar2025
Log Message:

Moved contents of ChangeLog.Mar2025 to MonetDB.spec, debian/changelog and 
ChangeLog-Archive.


diffs (247 lines):

diff --git a/ChangeLog-Archive b/ChangeLog-Archive
--- a/ChangeLog-Archive
+++ b/ChangeLog-Archive
@@ -1,6 +1,12 @@
 # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY
 # This file contains past ChangeLog entries
 
+* Wed Aug 13 2025 Sjoerd Mullender <[email protected]> - 11.53.11-20250821
+- It is now relatively easy to configure the location of the database farm
+  (aka dbfarm) directory when using systemd.  Just create an override
+  file for the monetdbd service and add an Environment entry for DBFARM
+  pointing to the new directory.
+
 * Thu May  8 2025 Sjoerd Mullender <[email protected]> - 11.53.5-20250627
 - It is now possible to specify an idle timeout using --set
   idle_timeout=<seconds> (see mserver5 manual page) which gets triggered
diff --git a/ChangeLog.Mar2025 b/ChangeLog.Mar2025
--- a/ChangeLog.Mar2025
+++ b/ChangeLog.Mar2025
@@ -1,9 +1,3 @@
 # ChangeLog file for devel
 # This file is updated with Maddlog
 
-* Wed Aug 13 2025 Sjoerd Mullender <[email protected]>
-- It is now relatively easy to configure the location of the database farm
-  (aka dbfarm) directory when using systemd.  Just create an override
-  file for the monetdbd service and add an Environment entry for DBFARM
-  pointing to the new directory.
-
diff --git a/MonetDB.spec b/MonetDB.spec
--- a/MonetDB.spec
+++ b/MonetDB.spec
@@ -95,7 +95,7 @@ Group: Applications/Databases
 License: MPL-2.0
 URL: https://www.monetdb.org/
 BugURL: https://github.com/MonetDB/MonetDB/issues
-Source: 
https://www.monetdb.org/downloads/sources/Mar2025-SP1/MonetDB-%{version}.tar.bz2
+Source: 
https://www.monetdb.org/downloads/sources/Mar2025-SP2/MonetDB-%{version}.tar.bz2
 
 # The Fedora packaging document says we need systemd-rpm-macros for
 # the _unitdir and _tmpfilesdir macros to exist; however on RHEL 7
@@ -1057,6 +1057,55 @@ rm "${RPM_BUILD_ROOT}"%{_unitdir}/monetd
 %endif
 
 %changelog
+* Thu Aug 21 2025 Sjoerd Mullender <[email protected]> - 11.53.11-20250821
+- Rebuilt.
+- GH#7643: Unable to process field with split_part(). Facing Issue
+  "client4681: exp_bin: CRITICAL: Could not find (null).rate"
+- GH#7647: 'mat.packIncrement' undefined
+- GH#7648: Unexpected Right Join Assertion Error
+- GH#7649: Unexpected Inner Join Crash
+- GH#7650: Unexpected Right Join Crash
+- GH#7655: slow concurrent insert
+- GH#7656: Primary key reported as being a foreign key to itself
+- GH#7657: MonetDB Mar2025-SP1 crashes at `sqlparse()` with a crafted
+  MERGE statement
+- GH#7659: MonetDB Mar2025-SP1 crashes at `rel_select_add_exp()` with a
+  crafted CREATE TRIGGER statement
+- GH#7660: MonetDB Mar2025-SP1 crashes at `subrel_bin()` with a COPY
+  statement
+- GH#7661: MonetDB Mar2025-SP1 crashes at `dlist_length()` with a crafted
+  CREATE TRIGGER statement
+- GH#7671: MonetDB Mar2025-SP1 crashes at `BLOBlength()`
+- GH#7675: Debian service start on new install not getting environment
+  variables from /etc/default/monetdb-sql
+- GH#7680: `UNION ALL` doesn't work as expected
+- GH#7681: Describe table feature not working correctly
+- GH#7682: replacing a login trigger crashes server
+- GH#7683: wrong  Driver= and Setup= libary paths stored in
+  /etc/odbcinst.ini after installation of MonetDB ODBC driver on ubuntu
+- GH#7686: DELETE FROM empty table should always be a no-op
+- GH#7688: exists with nulls gives incorrect result
+
+* Wed Aug 13 2025 Sjoerd Mullender <[email protected]> - 11.53.11-20250821
+- MonetDB: It is now relatively easy to configure the location of the database 
farm
+  (aka dbfarm) directory when using systemd.  Just create an override
+  file for the monetdbd service and add an Environment entry for DBFARM
+  pointing to the new directory.
+
+* Tue Aug  5 2025 Sjoerd Mullender <[email protected]> - 11.53.11-20250821
+- gdk: The SIGUSR1 output now displays counts for memory sizes in a
+  human-readable format next to the original byte counts.
+
+* Fri Aug  1 2025 Sjoerd Mullender <[email protected]> - 11.53.11-20250821
+- monetdb5: The PCRE module has been ported to the PCRE2 version of the 
library.
+  The main difference is in the regexp_replace function which now no
+  longer accepts \ to introduce replacements.  Only $ is accepted (it
+  was already accepted before).
+
+* Tue Jul  8 2025 Niels Nes <[email protected]> - 11.53.11-20250821
+- sql: Fixed issue #7655, now the segments keep the number of deleted
+  rows. Only search for reuse when deleted rows are available.
+
 * Fri Jul 04 2025 Sjoerd Mullender <[email protected]> - 11.53.9-20250704
 - Rebuilt.
 - GH#7629: monetdbd causes SELinux denial
diff --git a/debian/changelog b/debian/changelog
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,67 @@
+monetdb (11.53.11) unstable; urgency=low
+
+  * Rebuilt.
+  * GH#7643: Unable to process field with split_part(). Facing Issue
+    "client4681: exp_bin: CRITICAL: Could not find (null).rate"
+  * GH#7647: 'mat.packIncrement' undefined
+  * GH#7648: Unexpected Right Join Assertion Error
+  * GH#7649: Unexpected Inner Join Crash
+  * GH#7650: Unexpected Right Join Crash
+  * GH#7655: slow concurrent insert
+  * GH#7656: Primary key reported as being a foreign key to itself
+  * GH#7657: MonetDB Mar2025-SP1 crashes at `sqlparse()` with a crafted
+    MERGE statement
+  * GH#7659: MonetDB Mar2025-SP1 crashes at `rel_select_add_exp()` with a
+    crafted CREATE TRIGGER statement
+  * GH#7660: MonetDB Mar2025-SP1 crashes at `subrel_bin()` with a COPY
+    statement
+  * GH#7661: MonetDB Mar2025-SP1 crashes at `dlist_length()` with a crafted
+    CREATE TRIGGER statement
+  * GH#7671: MonetDB Mar2025-SP1 crashes at `BLOBlength()`
+  * GH#7675: Debian service start on new install not getting environment
+    variables from /etc/default/monetdb-sql
+  * GH#7680: `UNION ALL` doesn't work as expected
+  * GH#7681: Describe table feature not working correctly
+  * GH#7682: replacing a login trigger crashes server
+  * GH#7683: wrong  Driver= and Setup= libary paths stored in
+    /etc/odbcinst.ini after installation of MonetDB ODBC driver on ubuntu
+  * GH#7686: DELETE FROM empty table should always be a no-op
+  * GH#7688: exists with nulls gives incorrect result
+
+ -- Sjoerd Mullender <[email protected]>  Thu, 21 Aug 2025 11:09:16 +0200
+
+monetdb (11.53.11) unstable; urgency=low
+
+  * MonetDB: It is now relatively easy to configure the location of the 
database farm
+    (aka dbfarm) directory when using systemd.  Just create an override
+    file for the monetdbd service and add an Environment entry for DBFARM
+    pointing to the new directory.
+
+ -- Sjoerd Mullender <[email protected]>  Wed, 13 Aug 2025 11:09:16 +0200
+
+monetdb (11.53.11) unstable; urgency=low
+
+  * gdk: The SIGUSR1 output now displays counts for memory sizes in a
+    human-readable format next to the original byte counts.
+
+ -- Sjoerd Mullender <[email protected]>  Tue, 5 Aug 2025 11:09:16 +0200
+
+monetdb (11.53.11) unstable; urgency=low
+
+  * monetdb5: The PCRE module has been ported to the PCRE2 version of the 
library.
+    The main difference is in the regexp_replace function which now no
+    longer accepts \ to introduce replacements.  Only $ is accepted (it
+    was already accepted before).
+
+ -- Sjoerd Mullender <[email protected]>  Fri, 1 Aug 2025 11:09:16 +0200
+
+monetdb (11.53.11) unstable; urgency=low
+
+  * sql: Fixed issue #7655, now the segments keep the number of deleted
+    rows. Only search for reuse when deleted rows are available.
+
+ -- Niels Nes <[email protected]>  Tue, 8 Jul 2025 11:09:16 +0200
+
 monetdb (11.53.9) unstable; urgency=low
 
   * Rebuilt.
diff --git a/gdk/ChangeLog-Archive b/gdk/ChangeLog-Archive
--- a/gdk/ChangeLog-Archive
+++ b/gdk/ChangeLog-Archive
@@ -1,6 +1,10 @@
 # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY
 # This file contains past ChangeLog entries
 
+* Tue Aug  5 2025 Sjoerd Mullender <[email protected]> - 11.53.11-20250821
+- The SIGUSR1 output now displays counts for memory sizes in a
+  human-readable format next to the original byte counts.
+
 * Fri Sep 13 2024 Sjoerd Mullender <[email protected]> - 11.53.1-20250317
 - The implementation for the imprints index on numeric columns has
   been removed.  It hasn't been used in years, and when it is enabled,
diff --git a/gdk/ChangeLog.Mar2025 b/gdk/ChangeLog.Mar2025
--- a/gdk/ChangeLog.Mar2025
+++ b/gdk/ChangeLog.Mar2025
@@ -1,7 +1,3 @@
 # ChangeLog file for GDK
 # This file is updated with Maddlog
 
-* Tue Aug  5 2025 Sjoerd Mullender <[email protected]>
-- The SIGUSR1 output now displays counts for memory sizes in a
-  human-readable format next to the original byte counts.
-
diff --git a/monetdb5/ChangeLog-Archive b/monetdb5/ChangeLog-Archive
--- a/monetdb5/ChangeLog-Archive
+++ b/monetdb5/ChangeLog-Archive
@@ -1,6 +1,12 @@
 # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY
 # This file contains past ChangeLog entries
 
+* Fri Aug  1 2025 Sjoerd Mullender <[email protected]> - 11.53.11-20250821
+- The PCRE module has been ported to the PCRE2 version of the library.
+  The main difference is in the regexp_replace function which now no
+  longer accepts \ to introduce replacements.  Only $ is accepted (it
+  was already accepted before).
+
 * Mon Jan 13 2025 Sjoerd Mullender <[email protected]> - 11.53.1-20250317
 - Removed function bat.attach since it wasn't used.
 
diff --git a/monetdb5/ChangeLog.Mar2025 b/monetdb5/ChangeLog.Mar2025
--- a/monetdb5/ChangeLog.Mar2025
+++ b/monetdb5/ChangeLog.Mar2025
@@ -1,9 +1,3 @@
 # ChangeLog file for MonetDB5
 # This file is updated with Maddlog
 
-* Fri Aug  1 2025 Sjoerd Mullender <[email protected]>
-- The PCRE module has been ported to the PCRE2 version of the library.
-  The main difference is in the regexp_replace function which now no
-  longer accepts \ to introduce replacements.  Only $ is accepted (it
-  was already accepted before).
-
diff --git a/sql/ChangeLog-Archive b/sql/ChangeLog-Archive
--- a/sql/ChangeLog-Archive
+++ b/sql/ChangeLog-Archive
@@ -1,6 +1,10 @@
 # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY
 # This file contains past ChangeLog entries
 
+* Tue Jul  8 2025 Niels Nes <[email protected]> - 11.53.11-20250821
+- Fixed issue #7655, now the segments keep the number of deleted
+  rows. Only search for reuse when deleted rows are available.
+
 * Thu Jun 19 2025 Lucas Pereira <[email protected]> - 
11.53.5-20250627
 - When a prepared statement is executed, sys.queue now shows the text
   of the original PREPARE statement along with the EXEC and its arguments.
diff --git a/sql/ChangeLog.Mar2025 b/sql/ChangeLog.Mar2025
--- a/sql/ChangeLog.Mar2025
+++ b/sql/ChangeLog.Mar2025
@@ -1,7 +1,3 @@
 # ChangeLog file for sql
 # This file is updated with Maddlog
 
-* Tue Jul  8 2025 Niels Nes <[email protected]>
-- Fixed issue #7655, now the segments keep the number of deleted
-  rows. Only search for reuse when deleted rows are available.
-
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to