Skip to content

Commit

Permalink
Merge pull request #263 from globalsign/feature/issue-template-suppor…
Browse files Browse the repository at this point in the history
…ted-versions

Issue template and MongoDB supported versions
  • Loading branch information
domodwyer authored Sep 5, 2018
2 parents 6f9f54a + a913faa commit 1ca0a4f
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
We use the issue tracker to track bugs with mgo - if you have a usage question,
it's best to try Stack Overflow :)

Replace this text with your description, and please answer the questions below
before submitting your issue to help us out. Thanks!

-------------------------------------------------------------------------------

### What version of MongoDB are you using (`mongod --version`)?
```
<mongodb version here>
```

### What version of Go are you using (`go version`)?
```
<go version here>
```

### What operating system and processor architecture are you using (`go env`)?
```
<go env here>
```

### What did you do?

If possible, provide a recipe for reproducing the error.
A runnable program is great and really helps!

### Can you reproduce the issue on the latest `development` branch?
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ Detailed documentation of the API is available at

A [sub-package](https://godoc.org/github.com/globalsign/mgo/bson) that implements the [BSON](http://bsonspec.org) specification is also included, and may be used independently of the driver.

## Supported Versions

`mgo` is known to work well on (and has integration tests against) MongoDB v3.0, 3.2, 3.4 and 3.6.

MongoDB 4.0 is currently experimental - we would happily accept PRs to help improve support!

## Changes
* Fixes attempting to authenticate before every query ([details](https://github.com/go-mgo/mgo/issues/254))
* Removes bulk update / delete batch size limitations ([details](https://github.com/go-mgo/mgo/issues/288))
Expand Down

0 comments on commit 1ca0a4f

Please sign in to comment.