Skip to content

Commit

Permalink
chore(release): Bump version number to 0.11.2 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
c0r0n3r committed Nov 13, 2023
1 parent c9929e0 commit 6bf9565
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 5 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,34 @@
Changelog
=========

-------------------
0.11.2 - 2023-11-13
-------------------

Features
========

- HTTP(S) (``http``)

- Headers (``headers``)

- add parsers for generic headers
(`NEL <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/NEL>`__ (Network Error Logging),
`Set-Cookie <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie>`__)
- add parsers for security related headers
(`HTTP Public Key Pinning <https://en.wikipedia.org/wiki/HTTP_Public_Key_Pinning>`__ (HPKP),
`X-XSS-Protection <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection>`__)

Improvements
============

- HTTP(S) (``http``)

- Headers (``headers``)

- implement detailed parsing of
`Content-Type <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Type>`__ header

-------------------
0.11.1 - 2023-11-06
-------------------
Expand Down
2 changes: 1 addition & 1 deletion cryptoparser/__setup__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__title__ = 'CryptoParser'
__technical_name__ = __title__.lower()
__version__ = '0.11.1'
__version__ = '0.11.2'
__description__ = 'Fast and flexible security protocol parser and generator'
__author__ = 'Szilárd Pfeiffer'
__author_email__ = '[email protected]'
Expand Down
8 changes: 6 additions & 2 deletions docs/features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ Hypertext Transfer Protocol (HTTP)
1. supports header wire format parsing
2. supports detailed parsing of generic headers
(`Content-Type <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Type>`__,
`Server <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Server>`__)
`NEL <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/NEL>`__ (Network Error Logging),
`Server <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Server>`__,
`Set-Cookie <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie>`__)
3. supports detailed parsing of caching headers
(`Age <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Age>`__,
`Cache-Control <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control>`__,
Expand All @@ -50,10 +52,12 @@ Hypertext Transfer Protocol (HTTP)
4. supports detailed parsing of security headers
(`Expect-CT <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Expect-CT>`__,
`Expect-Staple <https://scotthelme.co.uk/designing-a-new-security-header-expect-staple>`__,
`HTTP Public Key Pinning <https://en.wikipedia.org/wiki/HTTP_Public_Key_Pinning>`__ (HPKP),
`Referrer-Policy <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy>`__,
`Strict-Transport-Security <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security>`__,
`X-Content-Type-Options <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options>`__,
`X-Frame-Options <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options>`__)
`X-Frame-Options <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options>`__,
`X-XSS-Protection <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection>`__)

Transport Layer Security (TLS)
------------------------------
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
asn1crypto
attrs>=20.3.0,<22.0.1
cryptodatahub==0.11.1
cryptodatahub==0.11.2
python-dateutil
py2-ipaddress;python_version<"3.4"
typing;python_version<"3.5"
Expand Down
2 changes: 1 addition & 1 deletion submodules/cryptodatahub
Submodule cryptodatahub updated from acc33d to 5c1a87

0 comments on commit 6bf9565

Please sign in to comment.