Skip to content

Commit 6bf9565

Browse files
committed
chore(release): Bump version number to 0.11.2 and update changelog
1 parent c9929e0 commit 6bf9565

File tree

5 files changed

+37
-5
lines changed

5 files changed

+37
-5
lines changed

CHANGELOG.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,34 @@
22
Changelog
33
=========
44

5+
-------------------
6+
0.11.2 - 2023-11-13
7+
-------------------
8+
9+
Features
10+
========
11+
12+
- HTTP(S) (``http``)
13+
14+
- Headers (``headers``)
15+
16+
- add parsers for generic headers
17+
(`NEL <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/NEL>`__ (Network Error Logging),
18+
`Set-Cookie <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie>`__)
19+
- add parsers for security related headers
20+
(`HTTP Public Key Pinning <https://en.wikipedia.org/wiki/HTTP_Public_Key_Pinning>`__ (HPKP),
21+
`X-XSS-Protection <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection>`__)
22+
23+
Improvements
24+
============
25+
26+
- HTTP(S) (``http``)
27+
28+
- Headers (``headers``)
29+
30+
- implement detailed parsing of
31+
`Content-Type <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Type>`__ header
32+
533
-------------------
634
0.11.1 - 2023-11-06
735
-------------------

cryptoparser/__setup__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__title__ = 'CryptoParser'
44
__technical_name__ = __title__.lower()
5-
__version__ = '0.11.1'
5+
__version__ = '0.11.2'
66
__description__ = 'Fast and flexible security protocol parser and generator'
77
__author__ = 'Szilárd Pfeiffer'
88
__author_email__ = 'coroner@pfeifferszilard.hu'

docs/features.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ Hypertext Transfer Protocol (HTTP)
3838
1. supports header wire format parsing
3939
2. supports detailed parsing of generic headers
4040
(`Content-Type <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Type>`__,
41-
`Server <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Server>`__)
41+
`NEL <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/NEL>`__ (Network Error Logging),
42+
`Server <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Server>`__,
43+
`Set-Cookie <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie>`__)
4244
3. supports detailed parsing of caching headers
4345
(`Age <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Age>`__,
4446
`Cache-Control <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control>`__,
@@ -50,10 +52,12 @@ Hypertext Transfer Protocol (HTTP)
5052
4. supports detailed parsing of security headers
5153
(`Expect-CT <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Expect-CT>`__,
5254
`Expect-Staple <https://scotthelme.co.uk/designing-a-new-security-header-expect-staple>`__,
55+
`HTTP Public Key Pinning <https://en.wikipedia.org/wiki/HTTP_Public_Key_Pinning>`__ (HPKP),
5356
`Referrer-Policy <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy>`__,
5457
`Strict-Transport-Security <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security>`__,
5558
`X-Content-Type-Options <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options>`__,
56-
`X-Frame-Options <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options>`__)
59+
`X-Frame-Options <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options>`__,
60+
`X-XSS-Protection <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection>`__)
5761

5862
Transport Layer Security (TLS)
5963
------------------------------

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
asn1crypto
22
attrs>=20.3.0,<22.0.1
3-
cryptodatahub==0.11.1
3+
cryptodatahub==0.11.2
44
python-dateutil
55
py2-ipaddress;python_version<"3.4"
66
typing;python_version<"3.5"

submodules/cryptodatahub

Submodule cryptodatahub updated from acc33d3 to 5c1a876

0 commit comments

Comments
 (0)