From 56b0828edb9da751168eb0daa0f1f2c9b29c1896 Mon Sep 17 00:00:00 2001 From: Daniel Morell Date: Fri, 14 Feb 2025 15:50:31 -0500 Subject: [PATCH] Release v1.2.0 --- CHANGELOG.md | 9 +++++++++ rollbar/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc1a0a1c..bf9d5de2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ The change log is also available on the [GitHub Releases Page](https://github.com/rollbar/pyrollbar/releases). +**1.2.0** + +- Added support for custom payload transforms by @danielmorell in [#470](https://github.com/rollbar/pyrollbar/pull/470) +- Added custom data to the message body by @waltjones in [#473](https://github.com/rollbar/pyrollbar/pull/473) +- Added support for host override setting by @danielmorell in [#468](https://github.com/rollbar/pyrollbar/pull/468) +- Fixed `RollbarHandler` reconfigures root logger by @ilkecan in [#463](https://github.com/rollbar/pyrollbar/pull/463) +- Fixed `include_request_body` setting not checked for various frameworks by @danielmorell in [#469](https://github.com/rollbar/pyrollbar/pull/469) +- Fixed `namedtuple` fields not being scrubbed by @danielmorell in [#474](https://github.com/rollbar/pyrollbar/pull/474) + **1.1.2** Fixed build missing entrypoints for pyramid and cli in [#471](https://github.com/rollbar/pyrollbar/pull/471) diff --git a/rollbar/__init__.py b/rollbar/__init__.py index 7efecf46..7ee1aab7 100644 --- a/rollbar/__init__.py +++ b/rollbar/__init__.py @@ -24,7 +24,7 @@ from rollbar.lib import events, filters, dict_merge, transport, defaultJSONEncode -__version__ = '1.1.2' +__version__ = '1.2.0' __log_name__ = 'rollbar' log = logging.getLogger(__log_name__)