Skip to content

MongoDB Go Driver 1.1.4

Compare
Choose a tag to compare
@divjotarora divjotarora released this 17 Dec 19:17
· 1 commit to release/1.1 since this release

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