Skip to content

Commit

Permalink
update latest dependencies with Godeps
Browse files Browse the repository at this point in the history
  • Loading branch information
corylanou committed Nov 7, 2016
1 parent 90ec3ce commit 3774d5e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 9 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## v1.2.0 [unreleased]

### Release Notes

### Features

- [#7554](https://github.com/influxdata/influxdb/pull/7554): update latest dependencies with Godeps.

### Bugfixes


## v1.1.0 [unreleased]

### Release Notes
Expand Down
16 changes: 8 additions & 8 deletions Godeps
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
collectd.org 9fc824c70f713ea0f058a07b49a4c563ef2a3b98
collectd.org e84e8af5356e7f47485bbc95c96da6dd7984a67e
github.com/BurntSushi/toml 99064174e013895bbd9b025c31100bd1d9b590ca
github.com/bmizerany/pat c068ca2f0aacee5ac3681d68e4d0a003b7d1fd2c
github.com/boltdb/bolt 5cc10bbbc5c141029940133bb33c9e969512a698
github.com/davecgh/go-spew 5215b55f46b2b919f50a1df0eaa5886afe4e3b3d
github.com/dgrijalva/jwt-go 63734eae1ef55eaac06fdc0f312615f2e321e273
github.com/boltdb/bolt 4b1ebc1869ad66568b313d0dc410e2be72670dda
github.com/davecgh/go-spew 346938d642f2ec3594ed81d874461961cd0faa76
github.com/dgrijalva/jwt-go 24c63f56522a87ec5339cc3567883f1039378fdb
github.com/dgryski/go-bits 2ad8d707cc05b1815ce6ff2543bb5e8d8f9298ef
github.com/dgryski/go-bitstream 7d46cd22db7004f0cceb6f7975824b560cf0e486
github.com/gogo/protobuf 0394392b81058a7f972029451f06e528bb18ba50
github.com/gogo/protobuf a9cd0c35b97daf74d0ebf3514c5254814b2703b4
github.com/golang/snappy d9eb7a3d35ec988b8585d4a0068e462c27d28380
github.com/influxdata/usage-client 6d3895376368aa52a3a81d2a16e90f0f52371967
github.com/jwilder/encoding 4dada27c33277820fe35c7ee71ed34fbc9477d00
github.com/kimor79/gollectd 61d0deeb4ffcc167b2a1baa8efd72365692811bc
github.com/kimor79/gollectd b5dddb1667dcc1e6355b9305e2c1608a2db6983c
github.com/paulbellamy/ratecounter 5a11f585a31379765c190c033b6ad39956584447
github.com/peterh/liner 8975875355a81d612fafb9f5a6037bdcc2d9b073
github.com/rakyll/statik 274df120e9065bdd08eb1120e0375e3dc1ae8465
github.com/rakyll/statik e383bbf6b2ec1a2fb8492dfd152d945fb88919b6
github.com/retailnext/hllpp 38a7bb71b483e855d35010808143beaf05b67f9d
golang.org/x/crypto c197bcf24cde29d3f73c7b4ac6fd41f4384e8af6
golang.org/x/crypto 9477e0b78b9ac3d0b03822fd95422e2fe07627cd
4 changes: 3 additions & 1 deletion services/collectd/test_client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"collectd.org/api"
"collectd.org/network"

"context"
"flag"
"fmt"
"math/rand"
Expand Down Expand Up @@ -59,7 +60,8 @@ func main() {
Interval: 10 * time.Second,
Values: []api.Value{api.Gauge(42.0)},
}
if err := conn.Write(vl); err != nil {
ctx := context.TODO()
if err := conn.Write(ctx, &vl); err != nil {
fmt.Println(err)
os.Exit(1)
}
Expand Down

0 comments on commit 3774d5e

Please sign in to comment.