Skip to content

Commit cfab78d

Browse files
author
getsentry-bot
committed
Merge branch 'release/1.10.0'
2 parents 1c651c6 + 6a84a7c commit cfab78d

File tree

4 files changed

+31
-8
lines changed

4 files changed

+31
-8
lines changed

CHANGELOG.md

Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
# Changelog
22

3-
## 1.9.11
3+
## 1.10.0
44

55
### Various fixes & improvements
66

7-
- Unified naming of span "op"s (#1643) by @antonpirker
7+
- Unified naming for span ops (#1661) by @antonpirker
88

99
We have unified the strings of our span operations. See https://develop.sentry.dev/sdk/performance/span-operations/
1010

11-
**WARNING:** If you have dashboards defined that use `transaction.op` in their fields, conditions, aggregates or columns please check them before updating to this version of the SDK.
12-
13-
Here a list of all the changes:
11+
**WARNING**: If you have Sentry Dashboards or Sentry Discover queries that use `transaction.op` in their fields, conditions, aggregates or columns this change could potentially break your Dashboards/Discover setup.
12+
Here is a list of the changes we made to the `op`s. Please adjust your dashboards and Discover queries accordingly:
1413

1514
| Old operation (`op`) | New Operation (`op`) |
1615
| ------------------------ | ---------------------- |
@@ -30,6 +29,30 @@
3029
| `serverless.function` | `function.gcp` |
3130
| `starlette.middleware` | `middleware.starlette` |
3231

32+
- Include framework in SDK name (#1662) by @antonpirker
33+
- Asyncio integration (#1671) by @antonpirker
34+
- Add exception handling to Asyncio Integration (#1695) by @antonpirker
35+
- Fix asyncio task factory (#1689) by @antonpirker
36+
- Have instrumentation for ASGI middleware receive/send callbacks. (#1673) by @antonpirker
37+
- Use Django internal ASGI handling from Channels version 4.0.0. (#1688) by @antonpirker
38+
- fix(integrations): Fix http putrequest when url is None (#1693) by @MattFlower
39+
- build(deps): bump checkouts/data-schemas from `f0a57f2` to `a214fbc` (#1627) by @dependabot
40+
- build(deps): bump flake8-bugbear from 22.9.11 to 22.9.23 (#1637) by @dependabot
41+
- build(deps): bump sphinx from 5.1.1 to 5.2.3 (#1653) by @dependabot
42+
- build(deps): bump actions/stale from 5 to 6 (#1638) by @dependabot
43+
- build(deps): bump black from 22.8.0 to 22.10.0 (#1670) by @dependabot
44+
- Remove unused node setup from ci. (#1681) by @antonpirker
45+
- Check for Decimal is in_valid_sample_rate (#1672) by @Arvind2222
46+
- Add session for aiohttp integration (#1605) by @denys-pidlisnyi
47+
- feat(profiling): Extract qualified name for each frame (#1669) by @Zylphrex
48+
- feat(profiling): Attach thread metadata to profiles (#1660) by @Zylphrex
49+
- ref(profiling): Rename profiling frame keys (#1680) by @Zylphrex
50+
- fix(profiling): get_frame_name only look at arguments (#1684) by @Zylphrex
51+
- fix(profiling): Need to sample profile correctly (#1679) by @Zylphrex
52+
- fix(profiling): Race condition spawning multiple profiling threads (#1676) by @Zylphrex
53+
- tests(profiling): Add basic profiling tests (#1677) by @Zylphrex
54+
- tests(profiling): Add tests for thread schedulers (#1683) by @Zylphrex
55+
3356
## 1.9.10
3457

3558
### Various fixes & improvements

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
copyright = "2019, Sentry Team and Contributors"
3030
author = "Sentry Team and Contributors"
3131

32-
release = "1.9.10"
32+
release = "1.10.0"
3333
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3434

3535

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def _get_default_options():
104104
del _get_default_options
105105

106106

107-
VERSION = "1.9.10"
107+
VERSION = "1.10.0"
108108

109109

110110
class OP:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def get_file_text(file_name):
2121

2222
setup(
2323
name="sentry-sdk",
24-
version="1.9.10",
24+
version="1.10.0",
2525
author="Sentry Team and Contributors",
2626
author_email="[email protected]",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)