Commit 11925031 authored by Szilárd Pfeiffer's avatar Szilárd Pfeiffer
Browse files

chore(release): Bump version number to 1.4.0 and update changelog

parent 1e13e583
Loading
Loading
Loading
Loading
+20 −4
Original line number Diff line number Diff line
@@ -2,18 +2,34 @@
Changelog
=========

----------
Unreleased
----------
------------------
1.4.0 - 2026-07-17
------------------

Features
========

-  SSH (``ssh``)

   -  add key exchange completion to the SSH server (#184)

-  TLS (``tls``)

   -  add certificate request support to the TLS server
   -  add OCSP staple, EC point formats, and fallback SCSV support to the TLS server (#184)

-  IKE (``ike``)

   -  Extensions (``extensions``)

      -  add checker extensions checker (#177)
      -  add checker for IKEv1/IKEv2 support (#177)

Notable fixes
=============

-  TLS (``tls``)

   -  do not let a handshake without OCSP staple overwrite the certificate status

------------------
1.3.0 - 2026-06-15
+3 −0
Original line number Diff line number Diff line
@@ -75,6 +75,9 @@ cryptolyze ssh all example.com
# IKE version analysis
cryptolyze ike versions example.com

# IKE protocol extension detection
cryptolyze ike extensions example.com

# HTTP security headers
cryptolyze http headers example.com

+10 −3
Original line number Diff line number Diff line
Name:           cryptolyzer
Version:        1.3.0
Version:        1.4.0
Release:        1%{?dist}
Summary:        Multi-protocol cryptographic configuration analyzer

@@ -17,7 +17,7 @@ BuildRequires: python3-attrs
BuildRequires:  python3-beautifulsoup4
BuildRequires:  python3-certvalidator
BuildRequires:  python3-colorama
BuildRequires:  python3-cryptoparser >= 1.3.0
BuildRequires:  python3-cryptoparser >= 1.4.0
BuildRequires:  python3-dateutil
%if 0%{?suse_version}
BuildRequires:  python3-dnspython
@@ -45,7 +45,7 @@ Requires: python3-attrs
Requires:       python3-beautifulsoup4
Requires:       python3-certvalidator
Requires:       python3-colorama
Requires:       python3-cryptoparser >= 1.3.0
Requires:       python3-cryptoparser >= 1.4.0
Requires:       python3-dateutil
%if 0%{?suse_version}
Requires:       python3-dnspython
@@ -90,6 +90,13 @@ export SETUPTOOLS_SCM_PRETEND_VERSION=%{version}
%{_bindir}/cryptolyze

%changelog
* Fri Jul 17 2026 Szilárd Pfeiffer <coroner@pfeifferszilard.hu> - 1.4.0-1
- add key exchange completion to the SSH server (#184)
- add certificate request support to the TLS server
- add OCSP staple, EC point formats, and fallback SCSV support to the TLS server (#184)
- add IKE extensions checker (#177)
- do not let a handshake without OCSP staple overwrite the certificate status

* Mon Jun 15 2026 Szilárd Pfeiffer <coroner@pfeifferszilard.hu> - 1.3.0-1
- add Debian and RPM packaging (#181)
- add JA4 tag generation and decoding (#178)
+10 −0
Original line number Diff line number Diff line
cryptolyzer (1.4.0) unstable; urgency=low

  * add key exchange completion to the SSH server (#184)
  * add certificate request support to the TLS server
  * add OCSP staple, EC point formats, and fallback SCSV support to the TLS server (#184)
  * add IKE extensions checker (#177)
  * do not let a handshake without OCSP staple overwrite the certificate status

 -- Szilárd Pfeiffer <coroner@pfeifferszilard.hu>  Fri, 17 Jul 2026 15:37:42 +0200

cryptolyzer (1.3.0) unstable; urgency=low

  * add Debian and RPM packaging (#181)
+1 −1
Original line number Diff line number Diff line
#!/usr/bin/make -f
export SETUPTOOLS_SCM_PRETEND_VERSION := 1.3.0
export SETUPTOOLS_SCM_PRETEND_VERSION := 1.4.0
export PYBUILD_NAME := cryptolyzer

%:
Loading