From f73e0b171d2f6771c58694d5433f548cff9fcfdc Mon Sep 17 00:00:00 2001 From: toni-moreno Date: Sat, 20 Nov 2021 16:43:40 +0100 Subject: [PATCH] released v0.7.0 version --- CHANGELOG.md | 5 ++++- go.mod | 22 +++++++++++++++------- 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c24398f..f5fd653 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/go.mod b/go.mod index d600668..82250c4 100644 --- a/go.mod +++ b/go.mod @@ -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 )