Skip to content
This repository has been archived by the owner on Feb 3, 2022. It is now read-only.

Latest commit

 

History

History
124 lines (60 loc) · 3.71 KB

CHANGELOG.md

File metadata and controls

124 lines (60 loc) · 3.71 KB

3.0.3 (2018-07-13)

Bug Fixes

  • breaking: reverts breaking changes in v3.0.1 and v3.0.2 (3fab274)

2.1.4 (2018-05-31)

Bug Fixes

  • binary: generate valid base64 for non-Buffer types (44afbb8)
  • parsing: support encoding and decoding RegExps (06691f6)

2.1.3 (2018-05-01)

Bug Fixes

  • date: fix date decode in relaxed mode (#13) (dc416aa)

2.1.2 (2018-04-06)

Features

  • bson: bump dependency on js-bson to track 2.x (f00bc9f)

2.1.1 (2018-04-01)

Features

  • browser: Added browser parameter in package.json pointing to transpiled dist (97b0feb)
  • double: supported relaxed mode for double parsing (0ee5016)
  • int32: support relaxed parsing of int32 types (c8513cb)
  • long: support relaxed parsing of long types (ac52ae5)
  • parsing: support relaxed parsing of extended json (92e06d3)

2.0.0 (2017-11-20)

Features

  • make compliant with extended JSON 2.0.0 spec and add corpus tests (7818d61)
  • binary: removing browser buffer support (dc556c8)

BREAKING CHANGES

  • Methods now exist on a global instance of ExtJSON. Whereas previously the library was consumed as such:

    const extJSON = require('mongodb-extjson');
    const EJSON = new extJSON();
    EJSON.parse(...);

    it is now consumed thusly:

    const EJSON = require('mongodb-extjson');
    EJSON.parse(...);
  • binary: Removes out-of-box support for Binary serialization on web platforms. Users will have to polyfill node Buffer type

  • Library is now compliant with Extended JSON v2.0.0, and as such may not be compatible with v1.0.0 Extended JSON objects.

1.0.5 (2017-05-24)

Bug Fixes

  • parse: properly support null values in parsed strings (b3f88f9), closes #2
  • serialize: properly serialize BSON types when used as values (66fe3d9), closes #1

1.0.4 (2017-03-15)

1.0.3 (2017-03-02)

1.0.2 (2017-03-01)

1.0.1 (2017-03-01)

1.0.0 (2017-03-01)