Skip to content

Commit

Permalink
release: 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Oct 20, 2022
1 parent 1c651c6 commit 40131a3
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 3 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,34 @@
# Changelog

## 1.10.0

### Various fixes & improvements

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

## 1.9.11

### Various fixes & improvements
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -29,7 +29,7 @@
copyright = "2019, Sentry Team and Contributors"
author = "Sentry Team and Contributors"

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


Expand Down
2 changes: 1 addition & 1 deletion sentry_sdk/consts.py
Expand Up @@ -104,7 +104,7 @@ def _get_default_options():
del _get_default_options


VERSION = "1.9.10"
VERSION = "1.10.0"


class OP:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -21,7 +21,7 @@ def get_file_text(file_name):

setup(
name="sentry-sdk",
version="1.9.10",
version="1.10.0",
author="Sentry Team and Contributors",
author_email="hello@sentry.io",
url="https://github.com/getsentry/sentry-python",
Expand Down

0 comments on commit 40131a3

Please sign in to comment.