* [PATCH] sqlite: Update to version 3450300
@ 2024-04-25 20:43 Adolf Belka
2024-04-25 20:43 ` [PATCH] tzdata: Update to version 2024a Adolf Belka
2024-04-26 8:38 ` [PATCH] sqlite: Update to version 3450300 Michael Tremer
0 siblings, 2 replies; 4+ messages in thread
From: Adolf Belka @ 2024-04-25 20:43 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1415 bytes --]
- Update from version 3450200 to 3450300
- Update of rootfile not required
- Changelog
3450300
Fix a long-standing bug (going back to version 3.24.0) that might (rarely) cause
the "old.*" values of an UPDATE trigger to be incorrect if that trigger fires in
response to an UPSERT. Forum post 284955a3cd454a15.
Fix a bug in sum() that could cause it to return NULL when it should return
Infinity. Forum post 23b8688ef4.
Other trifling corrections and compiler warning fixes that have come up since the
previous patch release. See the timeline for details.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/sqlite | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lfs/sqlite b/lfs/sqlite
index 922b303b7..421e32dd2 100644
--- a/lfs/sqlite
+++ b/lfs/sqlite
@@ -24,7 +24,7 @@
include Config
-VER = 3450200
+VER = 3450300
THISAPP = sqlite-autoconf-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 7bc225167a6792a35c2e7a324fe9bff1a1540a01b0fd04197d023f113a368ba6034235045281c7653abdd2ea67aa10a5ed19b024d1d25bdb7232533e25dfb991
+$(DL_FILE)_BLAKE2 = 24e47dcfb8fb1dbd0055d48cfc540884439e9443b1b79700e867326feb60b340a9b5d5bdb83eeca210b47251e61b706ec67eb1b84e59b11bae6c76271b1030bf
install : $(TARGET)
--
2.44.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] tzdata: Update to version 2024a
2024-04-25 20:43 [PATCH] sqlite: Update to version 3450300 Adolf Belka
@ 2024-04-25 20:43 ` Adolf Belka
2024-04-26 8:38 ` Michael Tremer
2024-04-26 8:38 ` [PATCH] sqlite: Update to version 3450300 Michael Tremer
1 sibling, 1 reply; 4+ messages in thread
From: Adolf Belka @ 2024-04-25 20:43 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 5074 bytes --]
- Update from version 2023d to 2024a
- Update of rootfile not required
- Changelog
2024a
Briefly:
Kazakhstan unifies on UTC+5 beginning 2024-03-01.
Palestine springs forward a week later after Ramadan.
zic no longer pretends to support indefinite-past DST.
localtime no longer mishandles Ciudad Juárez in 2422.
Changes to future timestamps
Kazakhstan unifies on UTC+5. This affects Asia/Almaty and
Asia/Qostanay which together represent the eastern portion of the
country that will transition from UTC+6 on 2024-03-01 at 00:00 to
join the western portion. (Thanks to Zhanbolat Raimbekov.)
Palestine springs forward a week later than previously predicted
in 2024 and 2025. (Thanks to Heba Hamad.) Change spring-forward
predictions to the second Saturday after Ramadan, not the first;
this also affects other predictions starting in 2039.
Changes to past timestamps
Asia/Ho_Chi_Minh's 1955-07-01 transition occurred at 01:00
not 00:00. (Thanks to Đoàn Trần Công Danh.)
From 1947 through 1949, Toronto's transitions occurred at 02:00
not 00:00. (Thanks to Chris Walton.)
In 1911 Miquelon adopted standard time on June 15, not May 15.
Changes to code
The FROM and TO columns of Rule lines can no longer be "minimum"
or an abbreviation of "minimum", because TZif files do not support
DST rules that extend into the indefinite past - although these
rules were supported when TZif files had only 32-bit data, this
stopped working when 64-bit TZif files were introduced in 1995.
This should not be a problem for realistic data, since DST was
first used in the 20th century. As a transition aid, FROM columns
like "minimum" are now diagnosed and then treated as if they were
the year 1900; this should suffice for TZif files on old systems
with only 32-bit time_t, and it is more compatible with bugs in
2023c-and-earlier localtime.c. (Problem reported by Yoshito
Umaoka.)
localtime and related functions no longer mishandle some
timestamps that occur about 400 years after a switch to a time
zone with a DST schedule. In 2023d data this problem was visible
for some timestamps in November 2422, November 2822, etc. in
America/Ciudad_Juarez. (Problem reported by Gilmore Davidson.)
strftime %s now uses tm_gmtoff if available. (Problem and draft
patch reported by Dag-Erling Smørgrav.)
Changes to build procedure
The leap-seconds.list file is now copied from the IERS instead of
from its downstream counterpart at NIST, as the IERS version is
now in the public domain too and tends to be more up-to-date.
(Thanks to Martin Burnicki for liaisoning with the IERS.)
Changes to documentation
The strftime man page documents which struct tm members affect
which conversion specs, and that tzset is called. (Problems
reported by Robert Elz and Steve Summit.)
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/tzdata | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/lfs/tzdata b/lfs/tzdata
index 921c5e66c..05c9a257f 100644
--- a/lfs/tzdata
+++ b/lfs/tzdata
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2023 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2007-2024 IPFire Team <info(a)ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -24,7 +24,7 @@
include Config
-VER = 2023d
+VER = 2024a
TZDATA_VER = $(VER)
TZCODE_VER = $(VER)
@@ -45,8 +45,8 @@ objects = tzdata$(TZDATA_VER).tar.gz tzcode$(TZCODE_VER).tar.gz
tzdata$(TZDATA_VER).tar.gz = $(DL_FROM)/tzdata$(TZDATA_VER).tar.gz
tzcode$(TZCODE_VER).tar.gz = $(DL_FROM)/tzcode$(TZCODE_VER).tar.gz
-tzdata$(TZDATA_VER).tar.gz_BLAKE2 = b79be37a8a258745d162a575c795ee6476b4fa5f6d2f7b562d9431a238eca276a1747a983778291184fc6e40a0c1f5e6284d41290fd6d1d3bd3118bda83f426e
-tzcode$(TZCODE_VER).tar.gz_BLAKE2 = 3e759de2e1dfe033bb98b5af5239631ef5dc33e25b6aeb95ab3e6041d5db3dd1b1cb8b210f072bc0d671117f2ad162cdcdcb3ecae97aa2d3be3bc2e809845666
+tzdata$(TZDATA_VER).tar.gz_BLAKE2 = 5ec49bbce704411a1d8b3f018b0d8f6c7de24c5600e0cb6c61a7ee29b4a49b1e502d23b40bce6584ea0aa9b66327321608cbabb994071ec4ca2b3a496aa2d621
+tzcode$(TZCODE_VER).tar.gz_BLAKE2 = f3b8d1e7735ad858d071df564a8e11ac4d252b97a5729fa6c282112ff3903f7d35897735920b4466a926ef647dc283356879134046805411c694efd3fd89b282
install : $(TARGET)
--
2.44.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] sqlite: Update to version 3450300
2024-04-25 20:43 [PATCH] sqlite: Update to version 3450300 Adolf Belka
2024-04-25 20:43 ` [PATCH] tzdata: Update to version 2024a Adolf Belka
@ 2024-04-26 8:38 ` Michael Tremer
1 sibling, 0 replies; 4+ messages in thread
From: Michael Tremer @ 2024-04-26 8:38 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1615 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
> On 25 Apr 2024, at 22:43, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>
> - Update from version 3450200 to 3450300
> - Update of rootfile not required
> - Changelog
> 3450300
> Fix a long-standing bug (going back to version 3.24.0) that might (rarely) cause
> the "old.*" values of an UPDATE trigger to be incorrect if that trigger fires in
> response to an UPSERT. Forum post 284955a3cd454a15.
> Fix a bug in sum() that could cause it to return NULL when it should return
> Infinity. Forum post 23b8688ef4.
> Other trifling corrections and compiler warning fixes that have come up since the
> previous patch release. See the timeline for details.
>
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> lfs/sqlite | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lfs/sqlite b/lfs/sqlite
> index 922b303b7..421e32dd2 100644
> --- a/lfs/sqlite
> +++ b/lfs/sqlite
> @@ -24,7 +24,7 @@
>
> include Config
>
> -VER = 3450200
> +VER = 3450300
>
> THISAPP = sqlite-autoconf-$(VER)
> DL_FILE = $(THISAPP).tar.gz
> @@ -40,7 +40,7 @@ objects = $(DL_FILE)
>
> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>
> -$(DL_FILE)_BLAKE2 = 7bc225167a6792a35c2e7a324fe9bff1a1540a01b0fd04197d023f113a368ba6034235045281c7653abdd2ea67aa10a5ed19b024d1d25bdb7232533e25dfb991
> +$(DL_FILE)_BLAKE2 = 24e47dcfb8fb1dbd0055d48cfc540884439e9443b1b79700e867326feb60b340a9b5d5bdb83eeca210b47251e61b706ec67eb1b84e59b11bae6c76271b1030bf
>
> install : $(TARGET)
>
> --
> 2.44.0
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] tzdata: Update to version 2024a
2024-04-25 20:43 ` [PATCH] tzdata: Update to version 2024a Adolf Belka
@ 2024-04-26 8:38 ` Michael Tremer
0 siblings, 0 replies; 4+ messages in thread
From: Michael Tremer @ 2024-04-26 8:38 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 5287 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
> On 25 Apr 2024, at 22:43, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>
> - Update from version 2023d to 2024a
> - Update of rootfile not required
> - Changelog
> 2024a
> Briefly:
> Kazakhstan unifies on UTC+5 beginning 2024-03-01.
> Palestine springs forward a week later after Ramadan.
> zic no longer pretends to support indefinite-past DST.
> localtime no longer mishandles Ciudad Juárez in 2422.
> Changes to future timestamps
> Kazakhstan unifies on UTC+5. This affects Asia/Almaty and
> Asia/Qostanay which together represent the eastern portion of the
> country that will transition from UTC+6 on 2024-03-01 at 00:00 to
> join the western portion. (Thanks to Zhanbolat Raimbekov.)
> Palestine springs forward a week later than previously predicted
> in 2024 and 2025. (Thanks to Heba Hamad.) Change spring-forward
> predictions to the second Saturday after Ramadan, not the first;
> this also affects other predictions starting in 2039.
> Changes to past timestamps
> Asia/Ho_Chi_Minh's 1955-07-01 transition occurred at 01:00
> not 00:00. (Thanks to Đoàn Trần Công Danh.)
> From 1947 through 1949, Toronto's transitions occurred at 02:00
> not 00:00. (Thanks to Chris Walton.)
> In 1911 Miquelon adopted standard time on June 15, not May 15.
> Changes to code
> The FROM and TO columns of Rule lines can no longer be "minimum"
> or an abbreviation of "minimum", because TZif files do not support
> DST rules that extend into the indefinite past - although these
> rules were supported when TZif files had only 32-bit data, this
> stopped working when 64-bit TZif files were introduced in 1995.
> This should not be a problem for realistic data, since DST was
> first used in the 20th century. As a transition aid, FROM columns
> like "minimum" are now diagnosed and then treated as if they were
> the year 1900; this should suffice for TZif files on old systems
> with only 32-bit time_t, and it is more compatible with bugs in
> 2023c-and-earlier localtime.c. (Problem reported by Yoshito
> Umaoka.)
> localtime and related functions no longer mishandle some
> timestamps that occur about 400 years after a switch to a time
> zone with a DST schedule. In 2023d data this problem was visible
> for some timestamps in November 2422, November 2822, etc. in
> America/Ciudad_Juarez. (Problem reported by Gilmore Davidson.)
> strftime %s now uses tm_gmtoff if available. (Problem and draft
> patch reported by Dag-Erling Smørgrav.)
> Changes to build procedure
> The leap-seconds.list file is now copied from the IERS instead of
> from its downstream counterpart at NIST, as the IERS version is
> now in the public domain too and tends to be more up-to-date.
> (Thanks to Martin Burnicki for liaisoning with the IERS.)
> Changes to documentation
> The strftime man page documents which struct tm members affect
> which conversion specs, and that tzset is called. (Problems
> reported by Robert Elz and Steve Summit.)
>
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> lfs/tzdata | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/lfs/tzdata b/lfs/tzdata
> index 921c5e66c..05c9a257f 100644
> --- a/lfs/tzdata
> +++ b/lfs/tzdata
> @@ -1,7 +1,7 @@
> ###############################################################################
> # #
> # IPFire.org - A linux based firewall #
> -# Copyright (C) 2007-2023 IPFire Team <info(a)ipfire.org> #
> +# Copyright (C) 2007-2024 IPFire Team <info(a)ipfire.org> #
> # #
> # This program is free software: you can redistribute it and/or modify #
> # it under the terms of the GNU General Public License as published by #
> @@ -24,7 +24,7 @@
>
> include Config
>
> -VER = 2023d
> +VER = 2024a
> TZDATA_VER = $(VER)
> TZCODE_VER = $(VER)
>
> @@ -45,8 +45,8 @@ objects = tzdata$(TZDATA_VER).tar.gz tzcode$(TZCODE_VER).tar.gz
> tzdata$(TZDATA_VER).tar.gz = $(DL_FROM)/tzdata$(TZDATA_VER).tar.gz
> tzcode$(TZCODE_VER).tar.gz = $(DL_FROM)/tzcode$(TZCODE_VER).tar.gz
>
> -tzdata$(TZDATA_VER).tar.gz_BLAKE2 = b79be37a8a258745d162a575c795ee6476b4fa5f6d2f7b562d9431a238eca276a1747a983778291184fc6e40a0c1f5e6284d41290fd6d1d3bd3118bda83f426e
> -tzcode$(TZCODE_VER).tar.gz_BLAKE2 = 3e759de2e1dfe033bb98b5af5239631ef5dc33e25b6aeb95ab3e6041d5db3dd1b1cb8b210f072bc0d671117f2ad162cdcdcb3ecae97aa2d3be3bc2e809845666
> +tzdata$(TZDATA_VER).tar.gz_BLAKE2 = 5ec49bbce704411a1d8b3f018b0d8f6c7de24c5600e0cb6c61a7ee29b4a49b1e502d23b40bce6584ea0aa9b66327321608cbabb994071ec4ca2b3a496aa2d621
> +tzcode$(TZCODE_VER).tar.gz_BLAKE2 = f3b8d1e7735ad858d071df564a8e11ac4d252b97a5729fa6c282112ff3903f7d35897735920b4466a926ef647dc283356879134046805411c694efd3fd89b282
>
> install : $(TARGET)
>
> --
> 2.44.0
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-04-26 8:38 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-25 20:43 [PATCH] sqlite: Update to version 3450300 Adolf Belka
2024-04-25 20:43 ` [PATCH] tzdata: Update to version 2024a Adolf Belka
2024-04-26 8:38 ` Michael Tremer
2024-04-26 8:38 ` [PATCH] sqlite: Update to version 3450300 Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox