You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `normalize` in the python package and C-ABI receives a structure
with config arguments for the various normalizers. The `renormalize`
flag is more central, as it is supposed to disable most of the
normalizers. This is used in Sentry after the event has passed
normalization to ensure that it is still structurally valid, but it may
contain fields now that are prohibited during ingestion.
In #1366 large parts of normalization were split into a dedicated
`light_normalize` function which did not honor the renormalize flag.
This PR restores correct behavior and disables the entire renormalize
call.
Co-authored-by: Jan Michael Auer <[email protected]>
Copy file name to clipboardexpand all lines: py/CHANGELOG.md
+6
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,13 @@
1
1
# Changelog
2
2
3
+
## Unreleased
4
+
5
+
- Restore correct behavior when `is_renormalize` is specified on `normalize_event`. ([#1548](https://github.com/getsentry/relay/pull/1548))
6
+
3
7
## 0.8.14
4
8
9
+
**Warning:** This release contains a regression. Please update to a more recent version.
10
+
5
11
- Add `transaction_info` to event payloads, including the transaction's source and internal original transaction name. ([#1330](https://github.com/getsentry/relay/pull/1330))
6
12
- Add user-agent parsing to replays processor. ([#1420](https://github.com/getsentry/relay/pull/1420))
7
13
-`convert_datascrubbing_config` will now return an error string when conversion fails on big regexes. ([#1474](https://github.com/getsentry/relay/pull/1474))
0 commit comments