mongo-go-driver v1.1.4 Release Notes

Release Date: 2019-12-17 // over 4 years ago
  • ๐Ÿš€ The MongoDB Go driver team is pleased to release 1.1.4 of the official Go driver.

    This release contains a bug fix for error checking in the driver's monitoring routine. Prior to this fix, the driver would try to close a monitoring connection if the underlying net.Conn was non-nil. This caused issues for some users with custom dialers due to the nil-interface behavior in Go (see https://golang.org/doc/faq#nil_error). This fix makes it so the driver does not call any methods on connections returned by dialers if the error returned is non-nil.

    ๐Ÿ“š Documentation can be found on GoDoc and the MongoDB documentation site. BSON library documentation is also available on GoDoc. Questions and inquiries can be asked on the mongo-go-driver Google Group. Bugs can be reported in the Go Driver Jira where a list of current issues can be found.

    ๐Ÿš€ Release Notes

    ๐Ÿ› Bug

    • [GODRIVER-1439] - Only close heartbeat connections after they're opened