public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] file: Update to version 5.44
@ 2023-01-01 11:34 Adolf Belka
  2023-01-01 11:34 ` [PATCH] sqlite: Update to version 3400100 Adolf Belka
  2023-01-09 18:29 ` [PATCH] file: Update to version 5.44 Peter Müller
  0 siblings, 2 replies; 4+ messages in thread
From: Adolf Belka @ 2023-01-01 11:34 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 4382 bytes --]

- Update from version 5.40 to 5.44
- Update of rootfile not required
- Changelog
	* release 5.44
		* Handle nan's so that we don't get internal floating point exceptions
		  when they are enabled (Vincent Mihalkovic)
		* PR/397: Restore the ability to process files from stdin immediately.
		* fixed various clustefuzz issues
		* Fix error detection for decompression code (Vincent Mihalkovic)
		* Add MAGIC_NO_COMPRESS_FORK and use it to produce a more
		  meaningful error message if we are sandboxing.
		* Add built-in lzip decompression support (Michal Gorny)
		* Add built-in zstd decompression support (Martin Rodriguez Reboredo)
	* release 5.43
		* Add octal indirect magic (Michal Gorny)
		* PR/374: avoid infinite loop in non-wide code (piru)
		* PR/373: Obey MAGIC_CONTINUE with multiple magic files (vismarli)
		* Fix bug with large flist (Florian Weimer)
	        * PR/364: Detect non-nul-terminated core filenames from QEMU
		  (mam-ableton)
		* PR/359: Add support for http://ndjson.org/ (darose)
		* PR/362: Fix wide printing (ro-ee)
		* PR/358: Fix width for -f - (jpalus)
		* PR/356: Fix JSON constant parsing (davewhite)
	* release 5.42
		* PR/348: add missing cases to prevent file from aborting on
		  random magic files.
		* PR/351: octalify filenames when not raw before printing.
		* fix regex cacheing bug (Dirk Mueller)
		* merge file_regcomp and file_regerror() to simplify the code
		  and reduce memory requirements for storing regexes (Dirk Mueller)
		* cache regex (Dirk Mueller)
		* detect filesystem full by flushing output (Dirk Mueller)
		* implement running decompressor programs using
		  posix_spawnp(2) instead of vfork(2)
		* Add support for msdos dates and times
		* use the system byte swapping functions if available (Werner Fink)
	* release 5.41
		* Avinash Sonawane: Fix tzname detection
		* Fix relationship tests with "search" magic, don't short circuit
		  logic
		* Fix memory leak in compile mode
		* PR/272: kiefermat: Only set returnval = 1 when we printed something
		  (in all cases print or !print). This simplifies the logic and fixes
		  the issue in the PR with -k and --mime-type there was no continuation
		  printed before the default case.
		* PR/270: Don't translate unprintable characters in %s magic formats
		  when -r
		* PR/269: Avoid undefined behavior with clang (adding offset to NULL)
		* Add a new flag (f) that requires that the match is a full word,
		   not a partial word match.
		* Add varint types (unused)
		* PR/256: mutableVoid: If the file is less than 3 bytes, use the file
		  length to determine type
		* PR/259: aleksandr.v.novichkov: mime printing through indirect magic
		  is not taken into account, use match directly so that it does.
		* count the total bytes found not the total byte positions
		  in order to determine encoding (Anatol Belski)

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 lfs/file | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lfs/file b/lfs/file
index 264c7322b..7877425ea 100644
--- a/lfs/file
+++ b/lfs/file
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2020  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2022  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        = 5.40
+VER        = 5.44
 
 THISAPP    = file-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 4e15a1ca62fe7c03c90b0e509dc899b87f4474f758ad3d08172b3d838dc3f7c2954ba1074eeeeb3da8c04b8df84eff2b8cdf3177da334a926914429df67f60bf
+$(DL_FILE)_BLAKE2 = a90ccae738a95315d75a0aaee7bbff3624425cc9267daf18ba9147b7c9b9ebfb31288b54c63a73e4695eca0e876f206e40bcb81c422f1bf572b976e753b25a42
 
 install : $(TARGET)
 
-- 
2.39.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] sqlite: Update to version 3400100
  2023-01-01 11:34 [PATCH] file: Update to version 5.44 Adolf Belka
@ 2023-01-01 11:34 ` Adolf Belka
  2023-01-09 18:29   ` Peter Müller
  2023-01-09 18:29 ` [PATCH] file: Update to version 5.44 Peter Müller
  1 sibling, 1 reply; 4+ messages in thread
From: Adolf Belka @ 2023-01-01 11:34 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1982 bytes --]

- Update from version 3400000 to 3400100
- Update of rootfile not required
- Changelog
    3.40.1
	-Fix the --safe command-line option to the CLI such that it correctly disallows
          the use of SQL functions like writefile() that can cause harmful side-effects.
	-Fix a potential infinite loop in the memsys5 alternative memory allocator. This
          bug was introduced by a performance optimization in version 3.39.0.
	-Various other obscure fixes.

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 lfs/sqlite | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lfs/sqlite b/lfs/sqlite
index 180b7b30b..49771ff33 100644
--- a/lfs/sqlite
+++ b/lfs/sqlite
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2018  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2022  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        = 3400000
+VER        = 3400100
 
 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 = b5d03a5117de708681acb6074e63d1d5e6e45a260622b5f8efd31f52210097f31e5cf926802aa6e094ec6db0ac677fe62f9b34bf1f50a561efd1e8f110687021
+$(DL_FILE)_BLAKE2 = 495ffa185598b11e8258d2bfed88516753c0a13b3a67850f3464a112f225a13db3b75e4f977ed549305e05a995074a8c5ef12d65c2b353306e58c098c89b36b6
 
 install : $(TARGET)
 
-- 
2.39.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] sqlite: Update to version 3400100
  2023-01-01 11:34 ` [PATCH] sqlite: Update to version 3400100 Adolf Belka
@ 2023-01-09 18:29   ` Peter Müller
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Müller @ 2023-01-09 18:29 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 2118 bytes --]

Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>

> - Update from version 3400000 to 3400100
> - Update of rootfile not required
> - Changelog
>     3.40.1
> 	-Fix the --safe command-line option to the CLI such that it correctly disallows
>           the use of SQL functions like writefile() that can cause harmful side-effects.
> 	-Fix a potential infinite loop in the memsys5 alternative memory allocator. This
>           bug was introduced by a performance optimization in version 3.39.0.
> 	-Various other obscure fixes.
> 
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
>  lfs/sqlite | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/lfs/sqlite b/lfs/sqlite
> index 180b7b30b..49771ff33 100644
> --- a/lfs/sqlite
> +++ b/lfs/sqlite
> @@ -1,7 +1,7 @@
>  ###############################################################################
>  #                                                                             #
>  # IPFire.org - A linux based firewall                                         #
> -# Copyright (C) 2007-2018  IPFire Team  <info(a)ipfire.org>                     #
> +# Copyright (C) 2007-2022  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        = 3400000
> +VER        = 3400100
>  
>  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 = b5d03a5117de708681acb6074e63d1d5e6e45a260622b5f8efd31f52210097f31e5cf926802aa6e094ec6db0ac677fe62f9b34bf1f50a561efd1e8f110687021
> +$(DL_FILE)_BLAKE2 = 495ffa185598b11e8258d2bfed88516753c0a13b3a67850f3464a112f225a13db3b75e4f977ed549305e05a995074a8c5ef12d65c2b353306e58c098c89b36b6
>  
>  install : $(TARGET)
>  

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] file: Update to version 5.44
  2023-01-01 11:34 [PATCH] file: Update to version 5.44 Adolf Belka
  2023-01-01 11:34 ` [PATCH] sqlite: Update to version 3400100 Adolf Belka
@ 2023-01-09 18:29 ` Peter Müller
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Müller @ 2023-01-09 18:29 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 4616 bytes --]

Reviewed-by: Peter Müller <peter.mueller(a)ipfire.org>

> - Update from version 5.40 to 5.44
> - Update of rootfile not required
> - Changelog
> 	* release 5.44
> 		* Handle nan's so that we don't get internal floating point exceptions
> 		  when they are enabled (Vincent Mihalkovic)
> 		* PR/397: Restore the ability to process files from stdin immediately.
> 		* fixed various clustefuzz issues
> 		* Fix error detection for decompression code (Vincent Mihalkovic)
> 		* Add MAGIC_NO_COMPRESS_FORK and use it to produce a more
> 		  meaningful error message if we are sandboxing.
> 		* Add built-in lzip decompression support (Michal Gorny)
> 		* Add built-in zstd decompression support (Martin Rodriguez Reboredo)
> 	* release 5.43
> 		* Add octal indirect magic (Michal Gorny)
> 		* PR/374: avoid infinite loop in non-wide code (piru)
> 		* PR/373: Obey MAGIC_CONTINUE with multiple magic files (vismarli)
> 		* Fix bug with large flist (Florian Weimer)
> 	        * PR/364: Detect non-nul-terminated core filenames from QEMU
> 		  (mam-ableton)
> 		* PR/359: Add support for http://ndjson.org/ (darose)
> 		* PR/362: Fix wide printing (ro-ee)
> 		* PR/358: Fix width for -f - (jpalus)
> 		* PR/356: Fix JSON constant parsing (davewhite)
> 	* release 5.42
> 		* PR/348: add missing cases to prevent file from aborting on
> 		  random magic files.
> 		* PR/351: octalify filenames when not raw before printing.
> 		* fix regex cacheing bug (Dirk Mueller)
> 		* merge file_regcomp and file_regerror() to simplify the code
> 		  and reduce memory requirements for storing regexes (Dirk Mueller)
> 		* cache regex (Dirk Mueller)
> 		* detect filesystem full by flushing output (Dirk Mueller)
> 		* implement running decompressor programs using
> 		  posix_spawnp(2) instead of vfork(2)
> 		* Add support for msdos dates and times
> 		* use the system byte swapping functions if available (Werner Fink)
> 	* release 5.41
> 		* Avinash Sonawane: Fix tzname detection
> 		* Fix relationship tests with "search" magic, don't short circuit
> 		  logic
> 		* Fix memory leak in compile mode
> 		* PR/272: kiefermat: Only set returnval = 1 when we printed something
> 		  (in all cases print or !print). This simplifies the logic and fixes
> 		  the issue in the PR with -k and --mime-type there was no continuation
> 		  printed before the default case.
> 		* PR/270: Don't translate unprintable characters in %s magic formats
> 		  when -r
> 		* PR/269: Avoid undefined behavior with clang (adding offset to NULL)
> 		* Add a new flag (f) that requires that the match is a full word,
> 		   not a partial word match.
> 		* Add varint types (unused)
> 		* PR/256: mutableVoid: If the file is less than 3 bytes, use the file
> 		  length to determine type
> 		* PR/259: aleksandr.v.novichkov: mime printing through indirect magic
> 		  is not taken into account, use match directly so that it does.
> 		* count the total bytes found not the total byte positions
> 		  in order to determine encoding (Anatol Belski)
> 
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
>  lfs/file | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/lfs/file b/lfs/file
> index 264c7322b..7877425ea 100644
> --- a/lfs/file
> +++ b/lfs/file
> @@ -1,7 +1,7 @@
>  ###############################################################################
>  #                                                                             #
>  # IPFire.org - A linux based firewall                                         #
> -# Copyright (C) 2007-2020  IPFire Team  <info(a)ipfire.org>                     #
> +# Copyright (C) 2007-2022  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        = 5.40
> +VER        = 5.44
>  
>  THISAPP    = file-$(VER)
>  DL_FILE    = $(THISAPP).tar.gz
> @@ -40,7 +40,7 @@ objects = $(DL_FILE)
>  
>  $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>  
> -$(DL_FILE)_BLAKE2 = 4e15a1ca62fe7c03c90b0e509dc899b87f4474f758ad3d08172b3d838dc3f7c2954ba1074eeeeb3da8c04b8df84eff2b8cdf3177da334a926914429df67f60bf
> +$(DL_FILE)_BLAKE2 = a90ccae738a95315d75a0aaee7bbff3624425cc9267daf18ba9147b7c9b9ebfb31288b54c63a73e4695eca0e876f206e40bcb81c422f1bf572b976e753b25a42
>  
>  install : $(TARGET)
>  

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-01-09 18:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-01 11:34 [PATCH] file: Update to version 5.44 Adolf Belka
2023-01-01 11:34 ` [PATCH] sqlite: Update to version 3400100 Adolf Belka
2023-01-09 18:29   ` Peter Müller
2023-01-09 18:29 ` [PATCH] file: Update to version 5.44 Peter Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox