Skip to content

MongoDB Go Driver Alpha 7

Pre-release
Pre-release
Compare
Choose a tag to compare
@skriptble skriptble released this 14 Jun 17:38
· 1640 commits to master since this release

The MongoDB Go driver team is pleased to release the seventh alpha of the official Go driver.

This release mainly contains bug fixes and documentation updates. Additionally, there are improvements to the index management functionality in the driver. This is alpha software, so it is not recommended for production use.

Following semver, the v0 version of the public API should not be considered stable and could change.

Documentation can be found 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-436] - Documentation does not indicate users should call client.Connect or use mongo.Connect
  • [GODRIVER-441] - Connection Handshake should not call buildInfo
  • [GODRIVER-442] - Authentication error should drain a topology.Server's connection pool
  • [GODRIVER-456] - Creating an index with nil Keys panics
  • [GODRIVER-457] - expireAfter index option incorrectly uses expireAfter instead of expireAfterSeconds

New Feature

  • [GODRIVER-31] - Implement Enumerate Collections Specification
  • [GODRIVER-47] - Support passing index hint to aggregations
  • [GODRIVER-294] - Add builder for index management options

Improvement