diff --git a/CHANGELOG.md b/CHANGELOG.md index 336b1c0b..5b37531a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ -# Upcoming +# 0.90.35 (05-01-2020) +- Fixed issue with API endpoints cannot accepting Authorization header +- Fixed issue with sass executable not being found, SASS environment var re-implemented +- Added additional Postman API doc endpoints + +# 0.90.34 (04-28-2020) - Added missing information to Mail notification ([#472](https://github.com/statping/statping/issues/472)) - Added service.yml file to auto create services (https://github.com/statping/statping/wiki/services.yml) - Removed Core API_KEY, (unused code, use API_SECRET) diff --git a/source/source.go b/source/source.go index 6047bdc2..f78d0628 100644 --- a/source/source.go +++ b/source/source.go @@ -66,11 +66,6 @@ func CompileSASS(files ...string) error { return errors.Wrapf(err, "failed to compile assets, %s %s %s", err, stdout, stderr) } - //if stdout != "" || stderr != "" { - // log.Errorln(fmt.Sprintf("Failed to compile assets with SASS %v %v %v", err, stdout, stderr)) - // return errors.Wrap(err, "failed to capture stdout or stderr") - //} - if stdout != "" || stderr != "" { log.Infoln(fmt.Sprintf("out: %v | error: %v", stdout, stderr)) } diff --git a/version.txt b/version.txt index 8402c99a..cc33bfef 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.90.34 +0.90.35