From e68da5c8e27dd7aa81f80d19a9a47313430b3cae Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Wed, 15 Jun 2022 17:04:21 +0000 Subject: [PATCH] release: 22.6.0 --- CHANGES | 32 ++++++++++++++++++++++++++++++++ LICENSE | 2 +- setup.py | 2 +- 3 files changed, 34 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index aaa5c9620ea306..5a646879e8d71e 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,35 @@ +22.6.0 +------ + +### Various fixes & improvements + +- ref: replace `import_submodules` with explicit `*` imports (#35677) by @asottile-sentry +- ref: fix linting of fixtures namespace (#35684) by @asottile-sentry +- ref(sentry app): Rewrite Sentry App Tests (#35664) by @ceorourke +- feat(discover): Support sum function while querying metrics in discover (#35576) by @edwardgou-sentry +- ref: re-enable pyc files now that we're on python 3 (#35678) by @asottile-sentry +- ref: allow explicit relative imports `from .json` (#35676) by @asottile-sentry +- fix(replays): fix error/durations on Replays for page >1 (#35647) by @SDaian +- ref(virtualizedtree): compute startindex and avoid wasteful iterations (#35621) by @JonasBa +- feat: Thread names (#35620) by @loewenheim +- Revert "Revert "ref: simplify and type flake8 plugin (#35645)" (#35651)" (#35673) by @asottile-sentry +- fix(cra-metrics): Count all users in metrics alerts (#34957) by @jjbayer +- feat: Run csharp/il2cpp events through symbolicator (#35615) by @Swatinem +- ref: upgrade boto* packages to fix conflicts (#34524) by @asottile-sentry +- ref(stack-trace): Update header style (#35670) by @priscilawebdev +- fix(relay): Defer cache invalidation up until after DB transaction (#35523) by @untitaker +- feat(dashboard): Add field options for table cols to config (#35622) by @shruthilayaj +- fix(projectconfig): Invalidation task deals with deleted project (#35668) by @flub +- ref(stack-trace): Add new design changes - (#35617) by @priscilawebdev +- chore(deps): bump @sentry/release-parser from 1.3.0 to 1.3.1 (#35657) by @dependabot +- chore(deps): bump core-js from 3.22.7 to 3.23.1 (#35656) by @dependabot +- ref(widget-builder): Replace Feedback Button with FeatureFeedback component (#35571) by @priscilawebdev +- chore(deps): bump echarts from 5.3.1 to 5.3.3 (#35658) by @dependabot +- build(deps): bump css-what from 5.0.0 to 5.1.0 (#35623) by @dependabot +- build(deps-dev): bump @types/node from 17.0.38 to 17.0.42 (#35598) by @dependabot + +_Plus 746 more_ + 22.5.0 ------ diff --git a/LICENSE b/LICENSE index 99284445c7ea95..72155bd302d64f 100644 --- a/LICENSE +++ b/LICENSE @@ -16,7 +16,7 @@ Additional Use Grant: You may make use of the Licensed Work, provided that you d error-reporting or application monitoring features of the Licensed Work. -Change Date: 2025-05-16 +Change Date: 2025-06-15 Change License: Apache License, Version 2.0 diff --git a/setup.py b/setup.py index 383d803fefa9cf..2fb4a41c495cb5 100755 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ BuildJsSdkRegistryCommand, ) -VERSION = "22.6.0.dev0" +VERSION = "22.6.0" IS_LIGHT_BUILD = os.environ.get("SENTRY_LIGHT_BUILD") == "1"