public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: "Peter Müller" <peter.mueller@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH] libssh: Update to version 0.10.4
Date: Mon, 26 Dec 2022 08:46:01 +0000	[thread overview]
Message-ID: <8fe8cc19-89e3-0f63-6fdb-01ff6b89666f@ipfire.org> (raw)
In-Reply-To: <20221211123330.5155-6-adolf.belka@ipfire.org>

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

Oh, this one was in need of an update - thanks for taking care of it, as always!

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

> - Update from version 0.9.6 to 0.10.4
> - Update of rootfile
> - Changelog
> 	version 0.10.4 (released 2022-09-07)
> 	  * Fixed issues with KDF on big endian
> 	version 0.10.3 (released 2022-09-05)
> 	  * Fixed possible infinite loop in known hosts checking
> 	version 0.10.2 (released 2022-09-02)
> 	  * Fixed tilde expansion when handling include directives
> 	  * Fixed building the shared torture library
> 	  * Made rekey test more robust (fixes running on i586 build systems e.g koji)
> 	version 0.10.1 (released 2022-08-30)
> 	  * Fixed proxycommand support
> 	  * Fixed musl libc support
> 	version 0.10.0 (released 2022-08-26)
> 	  * Added support for OpenSSL 3.0
> 	  * Added support for mbedTLS 3
> 	  * Added support for Smart Cards  (through openssl pkcs11 engine)
> 	  * Added support for chacha20-poly1305(a)openssh.com with libgcrypt
> 	  * Added support ed25519 keys in PEM files
> 	  * Added support for sk-ecdsa and sk-ed25519 (server side)
> 	  * Added support for limiting RSA key sizes and not accepting small one by
> 	    default
> 	  * Added support for ssh-agent on Windows
> 	  * Added ssh_userauth_publickey_auto_get_current_identity() API
> 	  * Added ssh_vlog() API
> 	  * Added ssh_send_issue_banner() API
> 	  * Added ssh_session_set_disconnect_message() API
> 	  * Added new configuration options:
> 	    + IdentityAgent
> 	    + ModuliFile
> 	  * Provided X11 client example
> 	  * Disabled DSA support at build time by default (will be removed in the next
> 	    release)
> 	  * Deprecated the SCP API!
> 	  * Deprecated old pubkey, privatekey API
> 	  * Avoided some needless large stack buffers to minimize memory footprint
> 	  * Removed support for OpenSSL < 1.0.1
> 	  * Fixed parsing username(a)host in login name
> 	  * Free global init mutex in the destructor on Windows
> 	  * Fixed PEM parsing in mbedtls to support both legacy and new PKCS8 formats
> 
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
>  config/rootfiles/common/libssh | 2 +-
>  lfs/libssh                     | 6 +++---
>  2 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/config/rootfiles/common/libssh b/config/rootfiles/common/libssh
> index ffb5ad59e..464bf28c2 100644
> --- a/config/rootfiles/common/libssh
> +++ b/config/rootfiles/common/libssh
> @@ -13,5 +13,5 @@
>  #usr/lib/cmake/libssh/libssh-config.cmake
>  #usr/lib/libssh.so
>  usr/lib/libssh.so.4
> -usr/lib/libssh.so.4.8.7
> +usr/lib/libssh.so.4.9.4
>  #usr/lib/pkgconfig/libssh.pc
> diff --git a/lfs/libssh b/lfs/libssh
> index e172f6230..36ff9f176 100644
> --- a/lfs/libssh
> +++ b/lfs/libssh
> @@ -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        = 0.9.6
> +VER        = 0.10.4
>  
>  THISAPP    = libssh-$(VER)
>  DL_FILE    = $(THISAPP).tar.xz
> @@ -40,7 +40,7 @@ objects = $(DL_FILE)
>  
>  $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>  
> -$(DL_FILE)_BLAKE2 = e8565279a430786b8877386a26700a39386e908546a209815b135a2bf4ef42c37b9890dc29cda9ce6c8bfe3f3bae4942097dc794302aec767d106a45c44b811d
> +$(DL_FILE)_BLAKE2 = 9349a688bdbd7c0d3bc93d6d0d6d55122ae9f918b922baeae8a7c6d4ae3ec340e6607afdd8a47055176f31531aefa94b6cc2bda25d59625fe1a7f83823dd75f9
>  
>  install : $(TARGET)
>  

  reply	other threads:[~2022-12-26  8:46 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-11 12:33 [PATCH] avahi: Fix bug #13017 - - dbus[n]: Unknown group "netdev" in message bus configuration file Adolf Belka
2022-12-11 12:33 ` [PATCH] dbus: Update to version 1.14.4 Adolf Belka
2022-12-26  8:42   ` Peter Müller
2022-12-11 12:33 ` [PATCH] hwdata: Update of pci and usb ids files Adolf Belka
2022-12-11 12:33 ` [PATCH] libpciaccess: Update to version 0.17 Adolf Belka
2022-12-26  8:43   ` Peter Müller
2022-12-11 12:33 ` [PATCH] libshout: Update to version 2.4.6 Adolf Belka
2022-12-26  8:45   ` Peter Müller
2022-12-11 12:33 ` [PATCH] libssh: Update to version 0.10.4 Adolf Belka
2022-12-26  8:46   ` Peter Müller [this message]
2022-12-11 12:33 ` [PATCH] libstatgrab: Update to version 0.92.1 Adolf Belka
2022-12-26  8:47   ` Peter Müller
2022-12-11 12:33 ` [PATCH] libtalloc: Update to version 2.3.4 Adolf Belka
2022-12-27 16:28   ` Peter Müller
2022-12-11 12:33 ` [PATCH] libtirpc: Update to version 1.3.3 Adolf Belka

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=8fe8cc19-89e3-0f63-6fdb-01ff6b89666f@ipfire.org \
    --to=peter.mueller@ipfire.org \
    --cc=development@lists.ipfire.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