You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,14 @@
2
2
All notable changes to this project will be documented in this file.
3
3
This project adheres to [Semantic Versioning](http://semver.org/).
4
4
5
+
## v0.7.1 - 2015-04-19
6
+
### Changed
7
+
- Improved logging of connection errors.
8
+
9
+
### Fixed
10
+
- Fixed bug causing empty times to be inserted into the DB even when the omitempty tag was set.
11
+
- Fixed node status refresh loop leaking goroutines.
12
+
5
13
## v0.7.0 - 2015-03-30
6
14
7
15
This release includes support for RethinkDB 2.0 and connecting to clusters. To connect to a cluster you should use the new `Addresses` field in `ConnectOpts`, for example:
Copy file name to clipboardExpand all lines: README.md
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,9 @@
7
7
[Go](http://golang.org/) driver for [RethinkDB](http://www.rethinkdb.com/)
8
8
9
9
10
-
Current version: v0.7.0 (RethinkDB v2.0)
10
+
Current version: v0.7.1 (RethinkDB v2.0)
11
+
12
+
Please note that this version of the driver only supports versions of RethinkDB using the v0.4 protocol (any versions of the driver older than RethinkDB 2.0 will not work).
To connect to a RethinkDB cluster which has multiple nodes you can use the following syntax.
69
+
To connect to a RethinkDB cluster which has multiple nodes you can use the following syntax. When connecting to a cluster with multiple nodes queries will be distributed between these nodes.
As shown above in the Between example optional arguments are passed to the function as a struct. Each function that has optional arguments as a related struct. This structs are named in the format FunctionNameOpts, for example BetweenOpts is the related struct for Between.
0 commit comments