Skip to content

Commit

Permalink
released 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Toni Moreno Gimenez committed Oct 6, 2020
1 parent 1910c37 commit f56ef9f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# v 0.8.1 ( Unreleased )
# v 0.8.1 ( 2020-10-06 )
### New Features
* Upgraded dependencies from dep to gomodules
* Added config through environment vars ( docker friendly ),implements #420
* Added new HTTP option "listen" as substitute for "port" ( still running but deprecated ).
* Added new GENERAL option "log_mode" (file/console) to enable only main agent logs and http_access.log to be written in console. This option does not affect to the device runtime/debug logs that will be written in a file in the logdir with filename as the id of the device.
* Added new DATABASE option "log_mode" (none/file/console) to enable or disable SQL logs and choose where to write (file/console)
* New improved Dockerfile and now docker image could be built from Makefile.docker
* New improved Dockerfile (now running as non root user) and now docker image could be built from Makefile.docker

### fixes
* Fix #379,#409,#410,#442
Expand Down
2 changes: 1 addition & 1 deletion build.go
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ func setBuildEnv() {
}

func getGitSha() string {
v, err := runError("git", "describe", "--always", "--tags")
v, err := runError("git", "rev-parse", "--short", "HEAD")
if err != nil {
return "unknown-dev"
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"company": "Toni Inc"
},
"name": "snmpcollector",
"version": "0.8.0",
"version": "0.8.1",
"repository": {
"type": "git",
"url": "http://github.com/toni-moreno/snmpcollector.git"
Expand Down

0 comments on commit f56ef9f

Please sign in to comment.