Releases: JonathanWilbur/asn1-ts
Releases · JonathanWilbur/asn1-ts
v11.0.0
- Much more performant OID implementation
- The constructor no longer accepts any arguments
- It was replaced with
ObjectIdentifier.fromParts()
.
- It was replaced with
- Merely finding and replacing
new ObjectIdentifier
with
ObjectIdentifier.fromParts
should be sufficient to upgrade.
- The constructor no longer accepts any arguments
- You can now construct OIDs from
ObjectIdentifier.fromBytes()
and
ObjectIdentifier.fromBytesUnsafe()
.
v9.0.2
- Fix bug when encoding
DATE
values having a year less than 1000. - Fix bug when encoding
DATE-TIME
values having a year less than 1000. - Fix bug when encoding
TIME-OF-DAY
values having hours, minutes, or seconds
that are single-digit. - Fix bug when encoding
UTCTime
values having a year less than 1000. - Fix bug when encoding
GeneralizedTime
values having a year less than 1000.
v9.0.1
- Fix types export
v9.0.0
- Compile ESM Modules: no more CommonJS
- Stricter TypeScript Checks
- Native NodeJS Test Runner: no more Jest
- Deno Support
- Bun Support
v8.0.5
Explicitly import Buffer
from node:buffer
, which apparently matters for some environments such as Cloudflare Workers.
v8.0.4
Fix UTCTime
and GeneralizedTime
decoding. See CHANGELOG.md
.