Compare commits

...

2 Commits

Author SHA1 Message Date
113d838876 v0.0.254 revert back to 0.0.250
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 1m14s
2023-08-22 10:49:57 +02:00
9e5bc0d3ea v0.0.253
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Failing after 1m23s
2023-08-22 10:36:35 +02:00
3 changed files with 3 additions and 10 deletions

View File

@@ -112,13 +112,6 @@ func (b *Builder) WithMessage(msg string) *Builder {
// ----------------------------------------------------------------------------
func (b *Builder) WithStackSkip(stacktraceskip int) *Builder {
b.errorData.Caller = callername(stacktraceskip)
return b
}
// ----------------------------------------------------------------------------
// Err changes the Severity to ERROR (default)
// The error will be:
//

View File

@@ -207,7 +207,7 @@ func Error(e error) HTTPResponse {
func ErrWrap(e error, errorType exerr.ErrorType, msg string) HTTPResponse {
return &jsonAPIErrResponse{
err: exerr.FromError(exerr.Wrap(e, msg).WithStackSkip(3).WithType(errorType).Build()),
err: exerr.FromError(exerr.Wrap(e, msg).WithType(errorType).Build()),
}
}

View File

@@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.252"
const GoextVersion = "0.0.254"
const GoextVersionTimestamp = "2023-08-22T10:23:04+0200"
const GoextVersionTimestamp = "2023-08-22T10:49:57+0200"