MyGit

v0.29.0

denodrivers/mongo

版本发布时间: 2021-12-18 20:33:04

denodrivers/mongo最新发布版本:v0.33.0(2024-03-26 07:16:35)

What's Changed

deno_mongo now uses web_bson as its bson library. that's a Deno/Web native library that not depends on node.js stuff (like Buffer). it makes driver even faster and smaller. also makes bson types more readable when using console.log console.log(objectId) before:

ObjectId2 {
      [Symbol(id)]: Buffer(12) [
         96,  13, 192, 57,  4,
        221,  93, 235, 42, 89,
         41, 169
      ]
 }

console.log(objectId) now:

 new ObjectId("600dc03904dd5deb2a5929a9")

Breaking Changes

web_bson doesn't supports deprecated bson APIs. also some methods are different than before. but most of time you don't need to change anything, these changes are very small

Notable commits

A huge thanks to @lucsoft for taking the lead in building web_bson

Full Changelog: https://github.com/denodrivers/deno_mongo/compare/v0.28.1...v0.29.0

相关地址:原始地址 下载(tar) 下载(zip)

查看:2021-12-18发行的版本