Skip to content

v1.5.0 Breaking Change for Nullable & Fixed Len Byte Array Support

Compare
Choose a tag to compare
@wilwade wilwade released this 19 Jan 13:03
· 15 commits to main since this release
2622ff1

Breaking Change

  • Optional nullable fields are now output in row results as null instead of undefined.
    • Example:
    • Prior: [{}, {foo: "bar"}]
    • v1.5.0+: [{foo: null}, {foo: "bar"}]

What's Changed

  • Optional nullable fields are now null instead of undefined by @wilwade in #114
  • Reference Tests by @wilwade in #114
  • Issue fixed around dictionary_page_offset by @wilwade in #114
  • Allow typeLength to come from opts.column when decoding FIXED_LEN_BYTE_ARRAY by @j4ys0n in #108

New Contributors

Full Changelog: v1.4.1...v1.5.0