From 50998ea858816ba58bf18fb9655ede266ecc4203 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Mon, 27 Feb 2023 10:43:47 +0000 Subject: [PATCH] release: 1.16.0 --- CHANGELOG.md | 22 ++++++++++++++++++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 25 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af74dd5731..c29fafa71c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## 1.16.0 + +### Various fixes & improvements + +- Adds `trace_propagation_targets` option (#1916) by @antonpirker +- feat(cloud): Adding Cloud Resource Context (#1882) by @antonpirker +- fix(profiling): Start profiler thread lazily (#1903) by @Zylphrex +- feat(arq): add arq integration (#1872) by @Zhenay +- tests(gevent): Add workflow to test gevent (#1870) by @Zylphrex +- Updated outdated HTTPX test matrix (#1917) by @antonpirker +- Make set_measurement public api and remove experimental status (#1909) by @sl0thentr0py +- feat(falcon): Update of Falcon Integration (#1733) by @antonpirker +- Remove deprecated `tracestate` (#1907) by @antonpirker +- Switch to MIT license (#1908) by @cleptric +- Fixed checks for structured http data (#1905) by @antonpirker +- Add enable_tracing to default traces_sample_rate to 1.0 (#1900) by @sl0thentr0py +- feat(pii): Sanitize URLs in Span description and breadcrumbs (#1876) by @antonpirker +- ref(profiling): Use the transaction timestamps to anchor the profile (#1898) by @Zylphrex +- Better setting of in-app in stack frames (#1894) by @antonpirker +- Mechanism should default to true unless set explicitly (#1889) by @sl0thentr0py +- ref(profiling): Add debug logs to profiling (#1883) by @Zylphrex + ## 1.15.0 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index f435053583..3c7553d8bb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,7 @@ copyright = "2019, Sentry Team and Contributors" author = "Sentry Team and Contributors" -release = "1.15.0" +release = "1.16.0" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 5dad0af573..18add06f14 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -151,4 +151,4 @@ def _get_default_options(): del _get_default_options -VERSION = "1.15.0" +VERSION = "1.16.0" diff --git a/setup.py b/setup.py index 3a96380a11..20748509d6 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="1.15.0", + version="1.16.0", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",