-
Notifications
You must be signed in to change notification settings - Fork 0
feat: v0.2.0 — add ErrAny for recover() payloads #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
cd99c3e
feat: add ErrAny for non-error recover() values
maxence2997 0d8a0b1
doc: clarify error helpers vs zap.Error and log v0.2.0
maxence2997 491f426
fix: guard ErrAny against typed-nil error inputs
maxence2997 a3102b2
feat: support pkg/errors stack traces in Err
maxence2997 5528557
doc: clarify zap.Error stack semantics and log v0.3 features
maxence2997 6b9c588
doc: sync ecs-coverage Err description for v0.2.0
maxence2997 f26d823
doc: disambiguate pkg/errors references with alias prefix
maxence2997 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,37 @@ | ||
| # Changelog | ||
|
|
||
| ## [Unreleased] | ||
|
|
||
| ## [0.2.0] | ||
|
|
||
| ### Added | ||
|
|
||
| - `ErrAny(v any) []zap.Field` — extracts ECS `error.*` fields from any value, | ||
| intended for `recover()` payloads (typed as `any`). Delegates to `Err(err)` | ||
| when the value satisfies `error`; falls back to `fmt.Sprint` / | ||
| `fmt.Sprintf("%T", v)` for non-error values; returns nil for nil input. | ||
| - `Err(err)` now extracts `error.stack_trace` from `github.com/pkg/errors` | ||
| errors as well — previously only `samber/oops`-style `StackTrace() []byte` | ||
| was supported. | ||
|
|
||
| ### Changed | ||
|
|
||
| - `Err(err)` stack-trace extraction is now delegated to an internal | ||
| `extractStackTrace` helper that walks the error chain via `errors.As` and | ||
| tries the `samber/oops` interface first, then the `pkg/errors` interface. | ||
| No public API change. | ||
| - `ErrAny(v)` guards against typed-nil error inputs (e.g. `(*MyErr)(nil)` | ||
| cast to `error`) — emits `error.message="<nil>"` + `error.type` instead of | ||
| panicking inside `err.Error()`. | ||
|
|
||
| ### Dependencies | ||
|
|
||
| - Add `github.com/pkg/errors v0.9.1` (direct) — required to type-check the | ||
| pkg/errors `StackTrace() pkgerrors.StackTrace` interface. | ||
|
|
||
| ### Documentation | ||
|
|
||
| - README clarifies the relationship between `ecsf.Err`, `ecsf.ErrorXxx` | ||
| single-field helpers, and `zap.Error(err)` under the ecszap encoder; in | ||
| particular that `zap.Error` only produces `error.stack_trace` when the | ||
| underlying error implements pkg/errors' `StackTracer`. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.