06ad98
Name:           libssh
b5c9dc
Version:        0.10.4
b5c9dc
Release:        8%{?dist}
06ad98
Summary:        A library implementing the SSH protocol
06ad98
License:        LGPLv2+
06ad98
URL:            http://www.libssh.org
06ad98
b5c9dc
Source0:        https://www.libssh.org/files/0.10/%{name}-%{version}.tar.xz
b5c9dc
Source1:        https://www.libssh.org/files/0.10/%{name}-%{version}.tar.xz.asc
06ad98
Source2:        https://cryptomilk.org/gpgkey-8DFF53E18F2ABC8D8F3C92237EE0FC4DCC014E3D.gpg#/%{name}.keyring
06ad98
Source3:        libssh_client.config
06ad98
Source4:        libssh_server.config
06ad98
06ad98
BuildRequires:  cmake
06ad98
BuildRequires:  gcc-c++
06ad98
BuildRequires:  gnupg2
06ad98
BuildRequires:  openssl-devel
b5c9dc
BuildRequires:  openssl-pkcs11
06ad98
BuildRequires:  pkgconfig
06ad98
BuildRequires:  zlib-devel
06ad98
BuildRequires:  krb5-devel
06ad98
BuildRequires:  libcmocka-devel
06ad98
BuildRequires:  pam_wrapper
06ad98
BuildRequires:  socket_wrapper
06ad98
BuildRequires:  nss_wrapper
06ad98
BuildRequires:  uid_wrapper
06ad98
BuildRequires:  openssh-clients
06ad98
BuildRequires:  openssh-server
06ad98
BuildRequires:  nmap-ncat
b5c9dc
BuildRequires:  softhsm
b5c9dc
BuildRequires:  gnutls-utils
06ad98
06ad98
Requires:       %{name}-config = %{version}-%{release}
06ad98
Requires:       crypto-policies
06ad98
06ad98
%ifarch aarch64 ppc64 ppc64le s390x x86_64
06ad98
Provides: libssh_threads.so.4()(64bit)
06ad98
%else
06ad98
Provides: libssh_threads.so.4
06ad98
%endif
06ad98
b5c9dc
Patch1: coverity_scan.patch
b5c9dc
Patch2: pkcs11_test_fix.patch
b5c9dc
Patch3: loglevel.patch
b5c9dc
Patch4: plus_sign.patch
b5c9dc
Patch5: memory_leak.patch
b5c9dc
Patch6: options_apply.patch
b5c9dc
Patch7: enable_sk_keys_by_config.patch
b5c9dc
06ad98
%description
06ad98
The ssh library was designed to be used by programmers needing a working SSH
06ad98
implementation by the mean of a library. The complete control of the client is
06ad98
made by the programmer. With libssh, you can remotely execute programs, transfer
06ad98
files, use a secure and transparent tunnel for your remote programs. With its
06ad98
Secure FTP implementation, you can play with remote files easily, without
06ad98
third-party programs others than libcrypto (from openssl).
06ad98
06ad98
%package devel
06ad98
Summary:        Development files for %{name}
06ad98
Requires:       %{name}%{?_isa} = %{version}-%{release}
06ad98
06ad98
%description devel
06ad98
The %{name}-devel package contains libraries and header files for developing
06ad98
applications that use %{name}.
06ad98
06ad98
%package config
06ad98
Summary:        Configuration files for %{name}
06ad98
BuildArch:      noarch
06ad98
Obsoletes:      %{name} < 0.9.0-3
06ad98
06ad98
%description config
06ad98
The %{name}-config package provides the default configuration files for %{name}.
06ad98
06ad98
%prep
06ad98
gpgv2 --quiet --keyring %{SOURCE2} %{SOURCE1} %{SOURCE0}
06ad98
%autosetup -p1
06ad98
06ad98
%build
06ad98
%cmake \
06ad98
    -DUNIT_TESTING=ON \
06ad98
    -DCLIENT_TESTING=ON \
06ad98
    -DSERVER_TESTING=ON \
b5c9dc
    -DWITH_PKCS11_URI=ON \
06ad98
    -DGLOBAL_CLIENT_CONFIG="%{_sysconfdir}/libssh/libssh_client.config" \
06ad98
    -DGLOBAL_BIND_CONFIG="%{_sysconfdir}/libssh/libssh_server.config"
06ad98
06ad98
%cmake_build
06ad98
06ad98
%install
06ad98
%cmake_install
06ad98
install -d -m755 %{buildroot}%{_sysconfdir}/libssh
06ad98
install -m644 %{SOURCE3} %{buildroot}%{_sysconfdir}/libssh/libssh_client.config
06ad98
install -m644 %{SOURCE4} %{buildroot}%{_sysconfdir}/libssh/libssh_server.config
06ad98
06ad98
#
06ad98
# Workaround for the removal of libssh_threads.so
06ad98
#
06ad98
# This will allow libraries which link against libssh_threads.so or packages
06ad98
# requiring it to continue working.
06ad98
#
06ad98
pushd %{buildroot}%{_libdir}
06ad98
for i in libssh.so*;
06ad98
do
06ad98
    _target="${i}"
06ad98
    _link_name="${i%libssh*}libssh_threads${i##*libssh}"
06ad98
    if [ -L "${i}" ]; then
06ad98
        _target="$(readlink ${i})"
06ad98
    fi
06ad98
    ln -s "${_target}" "${_link_name}"
06ad98
done;
06ad98
popd
06ad98
06ad98
%ldconfig_scriptlets
06ad98
06ad98
%check
06ad98
# Tests are randomly failing when run in parallel
06ad98
%global _smp_build_ncpus 1
06ad98
%ctest
06ad98
06ad98
%files
b5c9dc
%doc AUTHORS BSD CHANGELOG README
06ad98
%license COPYING
06ad98
%{_libdir}/libssh.so.4*
06ad98
%{_libdir}/libssh_threads.so.4*
06ad98
06ad98
%files devel
06ad98
%{_includedir}/libssh/
06ad98
# own this to avoid dep on cmake -- rex
06ad98
%dir  %{_libdir}/cmake/
06ad98
%{_libdir}/cmake/libssh/
06ad98
%{_libdir}/pkgconfig/libssh.pc
06ad98
%{_libdir}/libssh.so
06ad98
%{_libdir}/libssh_threads.so
06ad98
06ad98
%files config
06ad98
%attr(0755,root,root) %dir %{_sysconfdir}/libssh
06ad98
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/libssh/libssh_client.config
06ad98
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/libssh/libssh_server.config
06ad98
06ad98
%changelog
b5c9dc
* Mon Jan 23 2023 Stanislav Zidek <szidek@redhat.com> - 0.10.4-8
b5c9dc
+ libssh-0.10.4-8
b5c9dc
- Extended CI to run internal tests in RHEL
b5c9dc
- Related: rhbz#2160080
b5c9dc
b5c9dc
* Wed Jan 4 2023 Norbert Pocs <npocs@redhat.com> - 0.10.4-7
b5c9dc
- Add sk-keys to configuration parsing allowing to turn on-off by config
b5c9dc
- Related: rhbz#2026449
b5c9dc
b5c9dc
* Thu Dec 1 2022 Norbert Pocs <npocs@redhat.com> - 0.10.4-6
b5c9dc
- Fix covscan error
b5c9dc
- Remove unwanted test with yet unimplemented feature
b5c9dc
- Related: rhbz#2137839, rhbz#2136824
b5c9dc
b5c9dc
* Thu Dec 01 2022 Stanislav Zidek <szidek@redhat.com> - 0.10.4-5
b5c9dc
+ libssh-0.10.4-5
b5c9dc
- Fixed CI configuration due to TMT changes
b5c9dc
b5c9dc
* Wed Nov 30 2022 Norbert Pocs <npocs@redhat.com> - 0.10.4-4
b5c9dc
- Move loglevel closer to openssh loglevel
b5c9dc
- Add openssh config feature of +,-,^ for algorithm lists
b5c9dc
- Fix memory leaks of bignum
b5c9dc
- Prevent multiple expansion of escape characters
b5c9dc
- Resolves: rhbz#2132407, rhbz#2137839, rhbz#2144795, rhbz#2136824
b5c9dc
b5c9dc
* Tue Oct 4 2022 Norbert Pocs <npocs@redhat.com> - 0.10.4-3
b5c9dc
- Enable pkcs11 support
b5c9dc
- Fix broken libsofthsm path on i686
b5c9dc
- Add missing bugzilla references from the rebase commit
b5c9dc
- Related: rhbz#2026449
b5c9dc
- Resolves: rhbz#1977913, rhbz#1975500
b5c9dc
b5c9dc
* Tue Sep 27 2022 Norbert Pocs <npocs@redhat.com> - 0.10.4-2
b5c9dc
- Fix coverity scan issues
b5c9dc
- Resolves: rhbz#2130126
b5c9dc
b5c9dc
* Mon Sep 19 2022 Norbert pocs <npocs@redhat.com> - 0.10.4-1
b5c9dc
- Rebase to version 0.10.4
b5c9dc
- Add pkcs11 support
b5c9dc
- Disallow ssh-rsa key in FIPS mode
b5c9dc
- Fix openssl KDF check at build
b5c9dc
- ChangeLog was renamed to CHANGELOG
b5c9dc
- Resolves: rhbz#2068475, rhbz#2026449, rhbz#2004021,
b5c9dc
            rhbz#1977913, rhbz#1975500
b5c9dc
06ad98
* Fri Nov 12 2021 Stanislav Zidek <szidek@redhat.com> - 0.9.6-3
06ad98
+ libssh-0.9.6-3
06ad98
- Disabled gating on osci.brew-build.revdeps.integration
06ad98
  Related: rhbz#2022034
06ad98
06ad98
* Thu Nov 11 2021 Stanislav Zidek <szidek@redhat.com> - 0.9.6-2
06ad98
- STI, FMF, and gating fixes
06ad98
  Resolves: rhbz#2022034
06ad98
06ad98
* Tue Oct 05 2021 Norbert Pocs <npocs@redhat.com> - 0.9.6-1
06ad98
- Fix CVE-CVE-2021-3634 libssh: possible heap-based buffer
06ad98
  overflow when rekeying
06ad98
- Fix static analyzer issues in rhbz#1938795
06ad98
- Rebase to version 0.9.6
06ad98
- Resolves: rhbz#1994607, rhbz#1938795, rhbz#2009669
06ad98
06ad98
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.9.5-6
06ad98
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
06ad98
  Related: rhbz#1991688
06ad98
06ad98
* Wed Jun 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.9.5-5
06ad98
- Rebuilt for RHEL 9 BETA for openssl 3.0
06ad98
  Related: rhbz#1971065
06ad98
06ad98
* Tue Apr 27 2021 Sahana Prasad <sahana@redhat.com> - 0.9.5-4
06ad98
- Change crypto-policies from recommends to requires
06ad98
  Resolves: rhbz#1947863
06ad98
06ad98
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.9.5-3
06ad98
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
06ad98
06ad98
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.5-2
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
06ad98
06ad98
* Thu Sep 10 2020 Anderson Sasaki <ansasaki@redhat.com> - 0.9.5-1
06ad98
- Update to version 0.9.5
06ad98
  https://www.libssh.org/2020/09/10/libssh-0-9-5/
06ad98
- Removed patch to re-enable algorithms using sha1 in sshd for testing
06ad98
- The algorithms supported by sshd are now automatically detected for testing
06ad98
- Resolves: #1862457 - CVE-2020-16135
06ad98
06ad98
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.4-5
06ad98
- Second attempt - Rebuilt for
06ad98
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
06ad98
06ad98
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.4-4
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
06ad98
06ad98
* Mon Jun 22 2020 Anderson Sasaki <ansasaki@redhat.com> - 0.9.4-3
06ad98
- Do not return error when server properly closed the channel (#1849069)
06ad98
- Add a test for CVE-2019-14889
06ad98
- Do not parse configuration file in torture_knownhosts test
06ad98
06ad98
* Wed Apr 15 2020 Anderson Sasaki <ansasaki@redhat.com> - 0.9.4-2
06ad98
- Added patch to fix returned version
06ad98
06ad98
* Thu Apr 09 2020 Anderson Sasaki <ansasaki@redhat.com> - 0.9.4-1
06ad98
- Update to version 0.9.4
06ad98
  https://www.libssh.org/2020/04/09/libssh-0-9-4-and-libssh-0-8-9-security-release/
06ad98
- Removed inclusion of OpenSSH server configuration file from
06ad98
  libssh_server.config
06ad98
- Added patch to re-enable algorithms using sha1 in sshd for testing
06ad98
- resolves: #1822529 - CVE-2020-1730
06ad98
06ad98
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.3-2
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
06ad98
06ad98
* Tue Dec 10 2019 Andreas Schneider <asn@redhat.com> - 0.9.3-1
06ad98
- Update to version 0.9.3
06ad98
- resolves: #1781780 - Fixes CVE-2019-14889
06ad98
06ad98
* Thu Nov 07 2019 Andreas Schneider <asn@redhat.com> - 0.9.2-1
06ad98
- Upate to version 0.9.2
06ad98
- resolves #1769370 - Remove the docs, they can be found on https://api.libssh.org/
06ad98
06ad98
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.0-6
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
06ad98
06ad98
* Thu Jul 11 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.9.0-5
06ad98
- Add Obsoletes in libssh-config to avoid conflict with old libssh which
06ad98
  installed the configuration files.
06ad98
06ad98
* Wed Jul 10 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.9.0-4
06ad98
- Eliminate circular dependency with libssh-config subpackage
06ad98
06ad98
* Wed Jul 10 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.9.0-3
06ad98
- Provide the configuration files in a separate libssh-config subpackage
06ad98
06ad98
* Thu Jul 04 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.9.0-2
06ad98
- Do not ignore keys from known_hosts when SSH_OPTIONS_HOSTKEYS is set
06ad98
06ad98
* Fri Jun 28 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.9.0-1
06ad98
- Fixed Release number to released format
06ad98
06ad98
* Fri Jun 28 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.9.0-0.1
06ad98
- Update to version 0.9.0
06ad98
  https://www.libssh.org/2019/06/28/libssh-0-9-0/
06ad98
06ad98
* Wed Jun 19 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.8.91-0.1
06ad98
- Update to 0.9.0 pre release version (0.8.91)
06ad98
- Added default configuration files for client and server
06ad98
- Follow system-wide crypto configuration (crypto-policies)
06ad98
- Added Recommends for crypto-policies
06ad98
- Use OpenSSL implementation for KDF, DH, and signatures.
06ad98
- Detect FIPS mode and use only allowed algorithms
06ad98
- Run client and server tests during build
06ad98
06ad98
* Mon Feb 25 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.8.7-1
06ad98
- Update to version 0.8.7
06ad98
  https://www.libssh.org/2019/02/25/libssh-0-8-7/
06ad98
06ad98
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.6-3
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
06ad98
06ad98
* Tue Jan 15 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.8.6-2
06ad98
- Fix rsa-sha2 extension handling (#1666342)
06ad98
06ad98
* Thu Jan 03 2019 Anderson Sasaki <ansasaki@redhat.com> - 0.8.6-1
06ad98
- Update to version 0.8.6
06ad98
  https://www.libssh.org/2018/12/24/libssh-0-8-6-xmas-edition/
06ad98
06ad98
* Mon Oct 29 2018 Andreas Schneider <asn@redhat.com> - 0.8.5-1
06ad98
- Update to version 0.8.5
06ad98
  https://www.libssh.org/2018/10/29/libssh-0-8-5-and-libssh-0-7-7/
06ad98
06ad98
* Tue Oct 16 2018 Andreas Schneider <asn@redhat.com> - 0.8.4-1
06ad98
- Update to version 0.8.4
06ad98
  https://www.libssh.org/2018/10/16/libssh-0-8-4-and-0-7-6-security-and-bugfix-release
06ad98
- Fixes CVE-2018-10933
06ad98
06ad98
* Mon Oct 01 2018 Anderson Sasaki <ansasaki@redhat.com> - 0.8.3-3
06ad98
- Fixed errors found by static code analysis
06ad98
06ad98
* Tue Sep 25 2018 Anderson Sasaki <ansasaki@redhat.com> - 0.8.3-2
06ad98
- Add missing libssh_threads.so link to libssh-devel package
06ad98
06ad98
* Fri Sep 21 2018 Andreas Schneider <asn@redhat.com> - 0.8.3-1
06ad98
- Update to version 0.8.3
06ad98
  https://www.libssh.org/2018/09/21/libssh-0-8-3/
06ad98
06ad98
* Thu Aug 30 2018 Andreas Schneider <asn@redhat.com> - 0.8.2-1
06ad98
- Update to version 0.8.2
06ad98
  https://www.libssh.org/2018/08/30/libssh-0-8-2
06ad98
06ad98
* Thu Aug 16 2018 Andreas Schneider <asn@redhat.com> - 0.8.1-4
06ad98
- Fix link creation or RPM doesn't install it
06ad98
06ad98
* Wed Aug 15 2018 Andreas Schneider <asn@redhat.com> - 0.8.1-3
06ad98
- Add missing so version for libssh_threads.so.4
06ad98
06ad98
* Tue Aug 14 2018 Andreas Schneider <asn@redhat.com> - 0.8.1-2
06ad98
- Add Provides for libssh_threads.so to unbreak applications
06ad98
06ad98
* Mon Aug 13 2018 Andreas Schneider <asn@redhat.com> - 0.8.1-1
06ad98
- Update to version 0.8.1
06ad98
  https://www.libssh.org/2018/08/13/libssh-0-8-1
06ad98
- resolves: #1615248 - pkg-config --modversion
06ad98
- resolves: #1615132 - library initialization
06ad98
06ad98
* Fri Aug 10 2018 Andreas Schneider <asn@redhat.com> - 0.8.0-1
06ad98
- Update to version 0.8.0
06ad98
  https://www.libssh.org/2018/08/10/libssh-0-8-0/
06ad98
06ad98
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.5-9
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
06ad98
06ad98
* Wed Mar 07 2018 Rex Dieter <rdieter@fedoraproject.org> - 0.7.5-8
06ad98
- BR: gcc-c++, use %%make_build
06ad98
06ad98
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.5-7
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
06ad98
06ad98
* Thu Feb 01 2018 Andreas Schneider <asn@redhat.com> - 0.7.5-6
06ad98
- resolves: #1540021 - Build against OpenSSL 1.1
06ad98
06ad98
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.5-5
06ad98
- Switch to %%ldconfig_scriptlets
06ad98
06ad98
* Fri Dec 29 2017 Andreas Schneider <asn@redhat.com> - 0.7.5-4
06ad98
- Fix parsing ssh_config
06ad98
06ad98
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.5-3
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
06ad98
06ad98
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.5-2
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
06ad98
06ad98
* Wed Apr 26 2017 Peter Robinson <pbrobinson@fedoraproject.org> 0.7.5-1
06ad98
- Update to version 0.7.5
06ad98
06ad98
* Sat Mar 11 2017 Rex Dieter <rdieter@fedoraproject.org> - 0.7.4-2
06ad98
- BR: compat-openssl10-devel (f26+, #1423088)
06ad98
- use %%license
06ad98
- -devel: drop hardcoded pkgconfig dep (let autodeps handle it)
06ad98
- %%files: track library sonames, simplify -devel
06ad98
- %%install: use 'install/fast' target
06ad98
- .spec cosmetics, drop deprecated %%clean section
06ad98
06ad98
* Wed Feb 08 2017 Andreas Schneider <asn@redhat.com> - 0.7.4-1
06ad98
- Update to version 0.7.4
06ad98
  * Added id_ed25519 to the default identity list
06ad98
  * Fixed sftp EOF packet handling
06ad98
  * Fixed ssh_send_banner() to confirm with RFC 4253
06ad98
  * Fixed some memory leaks
06ad98
- resolves: #1419007
06ad98
06ad98
* Wed Feb 24 2016 Andreas Schneider <asn@redhat.com> - 0.7.3-1
06ad98
- resolves: #1311259 - Fix CVE-2016-0739
06ad98
- resolves: #1311332 - Update to version 0.7.3
06ad98
  * Fixed CVE-2016-0739
06ad98
  * Fixed ssh-agent on big endian
06ad98
  * Fixed some documentation issues
06ad98
- Enabled GSSAPI support
06ad98
06ad98
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.2-3
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
06ad98
06ad98
* Thu Oct 22 2015 Andreas Schneider <asn@redhat.com> - 0.7.2-2
06ad98
- resolves: #1271230 - Fix ssh-agent support on big endian
06ad98
06ad98
* Wed Sep 30 2015 Andreas Schneider <asn@redhat.com> - 0.7.2-1
06ad98
- Update to version 0.7.2
06ad98
  * Fixed OpenSSL detection on Windows
06ad98
  * Fixed return status for ssh_userauth_agent()
06ad98
  * Fixed KEX to prefer hmac-sha2-256
06ad98
  * Fixed sftp packet handling
06ad98
  * Fixed return values of ssh_key_is_(public|private)
06ad98
  * Fixed bug in global success reply
06ad98
- resolves: #1267346
06ad98
06ad98
* Tue Jun 30 2015 Andreas Schneider <asn@redhat.com> - 0.7.1-1
06ad98
- Update to version 0.7.1
06ad98
  * Fixed SSH_AUTH_PARTIAL auth with auto public key
06ad98
  * Fixed memory leak in session options
06ad98
  * Fixed allocation of ed25519 public keys
06ad98
  * Fixed channel exit-status and exit-signal
06ad98
  * Reintroduce ssh_forward_listen()
06ad98
06ad98
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-3
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
06ad98
06ad98
* Thu May 21 2015 Orion Poplawski <orion@cora.nwra.com> - 0.7.0-2
06ad98
- Add patch to fix undefined symbol: ssh_forward_listen (bug #1221310)
06ad98
06ad98
* Mon May 11 2015 Andreas Schneider <asn@redhat.com> - 0.7.0-1
06ad98
- Update to version 0.7.0
06ad98
  * Added support for ed25519 keys
06ad98
  * Added SHA2 algorithms for HMAC
06ad98
  * Added improved and more secure buffer handling code
06ad98
  * Added callback for auth_none_function
06ad98
  * Added support for ECDSA private key signing
06ad98
  * Added more tests
06ad98
  * Fixed a lot of bugs
06ad98
  * Improved API documentation
06ad98
06ad98
* Thu Apr 30 2015 Andreas Schneider <asn@redhat.com> - 0.6.5-1
06ad98
- resolves: #1213775 - Security fix for CVE-2015-3146
06ad98
- resolves: #1218076 - Security fix for CVE-2015-3146
06ad98
06ad98
* Fri Dec 19 2014 - Andreas Schneider <asn@redhat.com> - 0.6.4-1
06ad98
- Security fix for CVE-2014-8132.
06ad98
06ad98
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-3
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
06ad98
06ad98
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.3-2
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
06ad98
06ad98
* Tue Mar 04 2014 - Andreas Schneider <asn@redhat.com> - 0.6.3-1
06ad98
- Fix CVE-2014-0017.
06ad98
06ad98
* Mon Feb 10 2014 - Andreas Schneider <asn@redhat.com> - 0.6.1-1
06ad98
- Update to version 0.6.1.
06ad98
- resolves: #1056757 - Fix scp mode.
06ad98
- resolves: #1053305 - Fix known_hosts heuristic.
06ad98
06ad98
* Wed Jan 08 2014 - Andreas Schneider <asn@redhat.com> - 0.6.0-1
06ad98
- Update to 0.6.0
06ad98
06ad98
* Fri Jul 26 2013 - Andreas Schneider <asn@redhat.com> - 0.5.5-1
06ad98
- Update to 0.5.5.
06ad98
- Clenup the spec file.
06ad98
06ad98
* Thu Jul 18 2013 Simone Caronni <negativo17@gmail.com> - 0.5.4-5
06ad98
- Add EPEL 5 support.
06ad98
- Add Debian patches to enable Doxygen documentation.
06ad98
06ad98
* Tue Jul 16 2013 Simone Caronni <negativo17@gmail.com> - 0.5.4-4
06ad98
- Add patch for #982685.
06ad98
06ad98
* Mon Jun 10 2013 Simone Caronni <negativo17@gmail.com> - 0.5.4-3
06ad98
- Clean up SPEC file and fix rpmlint complaints.
06ad98
06ad98
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.4-2
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
06ad98
06ad98
* Wed Jan 23 2013 Petr Lautrbach <plautrba@redhat.com> 0.5.4-1
06ad98
- update to security 0.5.4 release
06ad98
- CVE-2013-0176 (#894407)
06ad98
06ad98
* Tue Nov 20 2012 Petr Lautrbach <plautrba@redhat.com> 0.5.3-1
06ad98
- update to security 0.5.3 release (#878465)
06ad98
06ad98
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.2-2
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
06ad98
06ad98
* Thu Feb 02 2012 Petr Lautrbach <plautrba@redhat.com> 0.5.2-1
06ad98
- update to 0.5.2 version (#730270)
06ad98
06ad98
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.0-2
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
06ad98
06ad98
* Wed Jun  1 2011 Jan F. Chadima <jchadima@redhat.com> - 0.5.0-1
06ad98
- bounce versionn to 0.5.0 (#709785)
06ad98
- the support for protocol v1 is disabled
06ad98
06ad98
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.8-2
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
06ad98
06ad98
* Wed Jan 19 2011 Jan F. Chadima <jchadima@redhat.com> - 0.4.8-1
06ad98
- bounce versionn to 0.4.8 (#670456)
06ad98
06ad98
* Mon Sep  6 2010 Jan F. Chadima <jchadima@redhat.com> - 0.4.6-1
06ad98
- bounce versionn to 0.4.6 (#630602)
06ad98
06ad98
* Thu Jun  3 2010 Jan F. Chadima <jchadima@redhat.com> - 0.4.4-1
06ad98
- bounce versionn to 0.4.4 (#598592)
06ad98
06ad98
* Wed May 19 2010 Jan F. Chadima <jchadima@redhat.com> - 0.4.3-1
06ad98
- bounce versionn to 0.4.3 (#593288)
06ad98
06ad98
* Tue Mar 16 2010 Jan F. Chadima <jchadima@redhat.com> - 0.4.2-1
06ad98
- bounce versionn to 0.4.2 (#573972)
06ad98
06ad98
* Tue Feb 16 2010 Jan F. Chadima <jchadima@redhat.com> - 0.4.1-1
06ad98
- bounce versionn to 0.4.1 (#565870)
06ad98
06ad98
* Fri Dec 11 2009 Jan F. Chadima <jchadima@redhat.com> - 0.4.0-1
06ad98
- bounce versionn to 0.4.0 (#541010)
06ad98
06ad98
* Thu Nov 26 2009 Jan F. Chadima <jchadima@redhat.com> - 0.3.92-2
06ad98
- typo in spec file
06ad98
06ad98
* Thu Nov 26 2009 Jan F. Chadima <jchadima@redhat.com> - 0.3.92-1
06ad98
- bounce versionn to 0.3.92 (0.4 beta2) (#541010)
06ad98
06ad98
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 0.2-4
06ad98
- rebuilt with new openssl
06ad98
06ad98
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2-3
06ad98
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
06ad98
06ad98
* Tue Jun 02 2009 Jan F. Chadima <jchadima@redhat.com> - 0.2-2
06ad98
- Small changes during review
06ad98
06ad98
* Mon Jun 01 2009 Jan F. Chadima <jchadima@redhat.com> - 0.2-1
06ad98
- Initial build
06ad98