Skip to content

Latest commit

 

History

History
122 lines (86 loc) · 3.61 KB

changelog.md

File metadata and controls

122 lines (86 loc) · 3.61 KB

ChangeLog

2.0.0-alpha.1 (2024-02-23)

  • Fixed exports value in package.json. (@CxRes)

2.0.0-alpha.0 (2024-01-29)

  • Support for a new Date and Display String types, from the new draft draft-ietf-httpbis-sfbis.
  • Simplified serializing Dictionaries and Items. The existing signatures still work, but the new API is a bit more natural and doesn't require wrapping everything in arrays and Maps.
  • Now requires Node 18.
  • Converted to ESM.
  • No longer providing a Webpack build. Most frontend applications already do their own bundling. Please let us know if you need this, so we can redo this with modern tools.

1.0.1 (2023-08-03)

  • This library emitted TypeError or a plain Error in a few places in the parser, where it should have been ParseError this is corrected everywhere now.

1.0.0 (2023-06-13)

  • This is mainly a re-release of 0.5.0. The package is stable and dependencies have been updated.
  • Dropped support for Node 12. The minimum Node version is now 14.

0.5.0 (2022-09-13)

  • All the serializer functions are now exported. (@adrianhopebailie)
  • Added an isByteSequence helper function (@adrianhopebailie)
  • Bring all dependencies up to date.

0.4.1 (2021-06-09)

  • Corrected the 'main' property in package.json.

0.4.0 (2021-05-15)

  • Fully up to date with RFC8941.
  • This is a complete rewrite, all APIs have changed and return the structures that are recommended by the actual RFC document.
  • Passing almost all tests from the HTTP WG test suite. See the readme for the exceptions.

0.3.0 (2019-10-03)

  • Fully up to date with draft-ietf-httpbis-header-structure-13.
  • Parameterized Lists and List of Lists are gone, their feautures are merged into List and Dictionaries.
  • Both lists and dictionaries now require an object such as {value: x, parameters: y}. This is a breaking change, but was required to support parameters correctly everywhere.
  • Stricter float parsing.

0.2.0 (2019-04-27)

  • Fully up to date with draft-ietf-httpbis-header-structure-10.
  • True and False are now encoded as ?1 and ?0.
  • Added serializing support.
  • Integers with more than 15 digits now error as per the new draft.
  • Updated all dependencies.

0.1.0 (2018-12-06)

  • Fully up to date with draft-ietf-httpbis-header-structure-09.
  • Package renamed to 'structured-headers'.
  • Conversion to typescript.
  • The parseBinary function is renamed to parseByteSequence, to match the rename in draft-ietf-httpbis-header-structure-08.
  • Support for Booleans.
  • The parseIdentifier function is renamed to parseToken, to match the rename in draft-ietf-httpbis-header-structure-09.
  • Renamed parseParameterizedList to parseParamList. It's shorter.

0.0.2 (2018-03-27)

  • Added minified webpacked version.
  • Added readme.
  • Fixed a small bug in identifier parsing.
  • 100% unittest coverage.

0.0.1 (2018-03-26)