Skip to content

Latest commit

 

History

History
65 lines (48 loc) · 1.67 KB

File metadata and controls

65 lines (48 loc) · 1.67 KB

0.5.0 (2026-03-28)

Changes

  • update to Moleculer v0.15 compatibility
  • update minimum Node.js version to 22
  • update moleculer devDependency to ^0.15.0

0.4.11 (2021-02-15)

Changes

  • allow only 12 character ObjectID strings #249

0.4.6 (2020-02-02)

Changes

  • add missing Bluebird dependency

0.4.5 (2019-08-14)

Changes

  • Fix issue in full-text searching #122

0.4.3 (2019-07-07)

Changes

  • Add dbName parameter to constructor. Example: adapter: new MongoAdapter("mongodb://127.0.0.1", { useNewUrlParser: true }, "moleculer-db-demo")

0.4.0 (2018-04-08)

Breaking changes

  • fix wrong method name from ojectIDToString to objectIDToString

0.3.0 (2018-03-28)

Breaking changes

  • Update mongodb lib to v3.0.5

  • Changed constructor signature (compatible with mongodb driver)

    Example with connection URI

    new MongoDBAdapter("mongodb://127.0.0.1/moleculer-db")

    Example with connection URI & options

    new MongoDBAdapter("mongodb://db-server-hostname/my-db", {
        keepAlive: 1
    })