Skip to content

Releases: share/sharedb-mongo

v6.0.0

Choose a tag to compare

@alecgibson alecgibson released this 23 Jun 08:52
  • Drop Node.js v18, v20 from test matrix; add v24, v26
  • Allow sharedb@6 as a dependency

v5.1.0

Choose a tag to compare

@alecgibson alecgibson released this 24 Feb 11:07

v5.0.0

Choose a tag to compare

@alecgibson alecgibson released this 12 Jun 09:16
  • BREAKING — Drop Node.js v16 support

v4.2.0

Choose a tag to compare

@alecgibson alecgibson released this 28 May 16:56
  • #157 (@alecgibson) — Allow disabling the src/seq/v index: to be used in conjunction with sharedb@5.0.1, which tries to avoid hitting this index. The index can be opted out of with:
new ShareDbMongo(
  mongoUrl,
  {
    disableIndexCreation: {
      src_seq_v: true,
    },
  },
);

Existing indexes will need to be manually deleted if they're no longer desired.

Note that it's technically still possible to try to look documents up by src/seq/v. The chance should be remote, but it's not impossible. Removing this index may lead to very bad performance in these corner cases.

v4.1.2

Choose a tag to compare

@alecgibson alecgibson released this 17 May 11:17
  • Add sharedb@5 support

v4.1.1

Choose a tag to compare

@ericyhwang ericyhwang released this 13 Feb 17:58

What's Changed

  • Fix $map query transform by @ericyhwang in #154
    • It would just hang previously. It's very likely unused by any consumers, but it's not much code to keep support for it.
  • Resolve memory leak when using cursor operations like $count in mongodb@4-6 by @ericyhwang in #152
    • This mostly affected $count. $explain was affected as well, though that usually won't be used in a production service.
    • ⚠️ If you also use the Mongo Node driver directly:
    • Thanks to @deongroenewald for the report and repro case!

Full Changelog: v4.1.0...v4.1.1

v4.1.0

Choose a tag to compare

@alecgibson alecgibson released this 06 Sep 07:09
  • #151 — Add support for mongodb@6

v4.0.0

Choose a tag to compare

@ericyhwang ericyhwang released this 16 May 16:53

What's Changed

Note - This release has no actual breaking changes since sharedb@3, so if you are not using Node 14 any longer, it's safe to do a drop-in upgrade.

Full Changelog: v3.0.1...v4.0.0

v3.0.1

Choose a tag to compare

@alecgibson alecgibson released this 01 Mar 09:02
  • #145 — Fix npm test

v2.1.2

Choose a tag to compare

@alecgibson alecgibson released this 01 Mar 09:01
  • #146 — Fix npm test