Skip to content

Commit

Permalink
released v0.7.0 version
Browse files Browse the repository at this point in the history
  • Loading branch information
toni-moreno committed Nov 20, 2021
1 parent b1da934 commit f73e0b1
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# v 0.7.0 (unreleased)
# v 0.7.0 (2021-11-20)

## New features

* add TLS support to connect with influxdb
* Support for uint64 columns (#44) (thanks to https://github.com/ptoews)
* Fix select time range
* added new copyorder parameter backward (most to least recent, default), forward (least to most recent)
* Updated to go 1.17

# v 0.6.7 (2020-05-03)

Expand Down
22 changes: 15 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,29 +1,37 @@
module github.com/toni-moreno/syncflux

go 1.13
go 1.17

require (
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/gammazero/deque v0.0.0-20200310222745-50fa758af896 // indirect
github.com/gammazero/workerpool v0.0.0-20200311205957-7b00833861c6
github.com/go-macaron/binding v1.1.0
github.com/go-macaron/inject v0.0.0-20200308113650-138e5925c53b // indirect
github.com/go-macaron/session v0.0.0-20200329073812-7d919ce6a8d2
github.com/go-macaron/toolbox v0.0.0-20200329073429-4401f4ce0f55
github.com/influxdata/influxdb1-client v0.0.0-20191209144304-8bf82d3c094d
github.com/sirupsen/logrus v1.5.0
github.com/spf13/viper v1.6.3
gopkg.in/macaron.v1 v1.3.5
)

require (
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/gammazero/deque v0.0.0-20200310222745-50fa758af896 // indirect
github.com/go-macaron/inject v0.0.0-20200308113650-138e5925c53b // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mitchellh/mapstructure v1.2.3 // indirect
github.com/pelletier/go-toml v1.7.0 // indirect
github.com/sirupsen/logrus v1.5.0
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.6.3
github.com/stretchr/testify v1.5.1 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
github.com/unknwon/com v1.0.1 // indirect
golang.org/x/crypto v0.0.0-20200427165652-729f1e841bcc // indirect
golang.org/x/sys v0.0.0-20200427175716-29b57079015a // indirect
golang.org/x/text v0.3.2 // indirect
gopkg.in/ini.v1 v1.55.0 // indirect
gopkg.in/macaron.v1 v1.3.5
gopkg.in/yaml.v2 v2.2.8 // indirect
)

0 comments on commit f73e0b1

Please sign in to comment.