Skip to content

Commit bbbc73d

Browse files
authored
x509-cert: v0.2.2 (#1040)
Added - Certificate builder (#764) - Support for `RandomizedSigner` in builder (#1007) - Provide parsing profiles (#987) - Support for `Time::INFINITY` (#1024) - Conversion from `std::net::IpAddr` (#1035) - `CertReq` builder (#1034) - missing extension implementations (#1050) - notes about `UTCTime` range being 1970-2049 (#1052) - consume the `SignatureBitStringEncoding` trait (#1048) Changed - use `ErrorKind::Value` for overlength serial (#988) - Bump `hex-literal` to v0.4.1 (#999) - Builder updates (#1001) - better debug info when `zlint` isn't installed (#1018) - make SKI optional in leaf certificate (#1028) - bump rsa from 0.9.0-pre.2 to 0.9.0 (#1033) - bump rsa from 0.9.1 to 0.9.2 (#1056) Fixed - fix `KeyUsage` bit tests (#993) - extraneous PhantomData in `TbsCertificate` (#1017) - CI flakiness (#1042) - usage of ecdsa signer (#1043)
1 parent 3b92283 commit bbbc73d

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

x509-cert/CHANGELOG.md

+49
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,55 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.2.2 (unreleased)
8+
9+
### Added
10+
- Certificate builder ([#764])
11+
- Support for `RandomizedSigner` in builder ([#1007])
12+
- Provide parsing profiles ([#987])
13+
- Support for `Time::INFINITY` ([#1024])
14+
- Conversion from `std::net::IpAddr` ([#1035])
15+
- `CertReq` builder ([#1034])
16+
- missing extension implementations ([#1050])
17+
- notes about `UTCTime` range being 1970-2049 ([#1052])
18+
- consume the `SignatureBitStringEncoding` trait ([#1048])
19+
20+
### Changed
21+
- use `ErrorKind::Value` for overlength serial ([#988])
22+
- Bump `hex-literal` to v0.4.1 ([#999])
23+
- Builder updates ([#1001])
24+
- better debug info when `zlint` isn't installed ([#1018])
25+
- make SKI optional in leaf certificate ([#1028])
26+
- bump rsa from 0.9.0-pre.2 to 0.9.0 ([#1033])
27+
- bump rsa from 0.9.1 to 0.9.2 ([#1056])
28+
29+
### Fixed
30+
- fix `KeyUsage` bit tests ([#993])
31+
- extraneous PhantomData in `TbsCertificate` ([#1017])
32+
- CI flakiness ([#1042])
33+
- usage of ecdsa signer ([#1043])
34+
35+
[#764]: https://github.com/RustCrypto/formats/pull/764
36+
[#987]: https://github.com/RustCrypto/formats/pull/987
37+
[#988]: https://github.com/RustCrypto/formats/pull/988
38+
[#993]: https://github.com/RustCrypto/formats/pull/993
39+
[#999]: https://github.com/RustCrypto/formats/pull/999
40+
[#1001]: https://github.com/RustCrypto/formats/pull/1001
41+
[#1007]: https://github.com/RustCrypto/formats/pull/1007
42+
[#1017]: https://github.com/RustCrypto/formats/pull/1017
43+
[#1018]: https://github.com/RustCrypto/formats/pull/1018
44+
[#1024]: https://github.com/RustCrypto/formats/pull/1024
45+
[#1028]: https://github.com/RustCrypto/formats/pull/1028
46+
[#1033]: https://github.com/RustCrypto/formats/pull/1033
47+
[#1034]: https://github.com/RustCrypto/formats/pull/1034
48+
[#1035]: https://github.com/RustCrypto/formats/pull/1035
49+
[#1042]: https://github.com/RustCrypto/formats/pull/1042
50+
[#1043]: https://github.com/RustCrypto/formats/pull/1043
51+
[#1048]: https://github.com/RustCrypto/formats/pull/1048
52+
[#1050]: https://github.com/RustCrypto/formats/pull/1050
53+
[#1052]: https://github.com/RustCrypto/formats/pull/1052
54+
[#1056]: https://github.com/RustCrypto/formats/pull/1056
55+
756
## 0.2.1 (2023-03-26)
857
### Added
958
- `FromStr` impls for `RdnSequence` (`Name`), `RelativeDistinguishedName`, and

0 commit comments

Comments
 (0)