Skip to content

Commit 412ca67

Browse files
author
getsentry-bot
committed
Merge branch 'release/2.0.0rc1' into sentry-sdk-2.0
2 parents 0a65f38 + 4051bca commit 412ca67

File tree

5 files changed

+20
-7
lines changed

5 files changed

+20
-7
lines changed

CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 2.0.0a2
3+
## 2.0.0rc1
44

55
## New Features
66

@@ -83,6 +83,19 @@
8383
- Passing a function to `sentry_sdk.init`'s `transport` keyword argument has been deprecated. If you wish to provide a custom transport, please pass a `sentry_sdk.transport.Transport` instance or a subclass.
8484
- The parameter `propagate_hub` in `ThreadingIntegration()` was deprecated and renamed to `propagate_scope`.
8585

86+
### Various fixes & improvements
87+
88+
- Expose `socket_options` (#2786) by @sentrivana
89+
- AWS Lambda: xfail broken tests for now (#2794) by @sentrivana
90+
- Docs: Add gRPC note to migration guide (a03108f5) by @sentrivana
91+
- Pin `grpcio` versions in CI (#2776) by @arr-ee
92+
- Dependencies: bump types-protobuf from 4.24.0.20240129 to 4.24.0.20240302 (#2782) by @dependabot
93+
- Dependencies: bump checkouts/data-schemas from `eb941c2` to `ed078ed` (#2781) by @dependabot
94+
- Removed print statements because it messes with the tests (#2789) by @antonpirker
95+
- Type hinting for start_transaction kwargs (#2796) by @szokeasaurusrex
96+
- Correct `use_scope` comment (#2790) by @szokeasaurusrex
97+
- Fixed bump-version.sh to work with version names that have chars in them (0a65f388) by @antonpirker
98+
8699
## 1.41.0
87100

88101
### Various fixes & improvements

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ This is the official Python SDK for [Sentry](http://sentry.io/)
1616

1717
---
1818

19-
## Note about SDK 2.0.0a2
19+
## Note about SDK 2.0.0rc1
2020

21-
**Sentry SDK 2.0.0a2** is alpha software and not yet ready for production.
21+
**Sentry SDK 2.0.0rc1** has been tested under load on Sentry itself. But we advice you to still be careful if you test this in production.
2222

23-
Please give it a spin and test it with your project. If you have any questions or feedback please contact us on [Discord](https://discord.gg/Ww9hbqr) in the [#python](https://discord.com/channels/621778831602221064/621783758739079168) channel or create a [GitHub Issue](https://github.com/getsentry/sentry-python/issues) or start a [GitHub Discussion](https://github.com/getsentry/sentry-python/discussions).
23+
Please give it a spin and test it with your project. If you have any questions or feedback please contact us on [Discord](https://discord.gg/Ww9hbqr) in the [#sdk-chat](https://discord.com/channels/621778831602221064/1211958154984820776) channel or create a [GitHub Issue](https://github.com/getsentry/sentry-python/issues) or start a [GitHub Discussion](https://github.com/getsentry/sentry-python/discussions).
2424

2525
Thanks!
2626

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year)
2929
author = "Sentry Team and Contributors"
3030

31-
release = "2.0.0a2"
31+
release = "2.0.0rc1"
3232
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3333

3434

sentry_sdk/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -328,4 +328,4 @@ def _get_default_options():
328328
del _get_default_options
329329

330330

331-
VERSION = "2.0.0a2"
331+
VERSION = "2.0.0rc1"

setup.py

+1-1
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="2.0.0a2",
24+
version="2.0.0rc1",
2525
author="Sentry Team and Contributors",
2626
author_email="[email protected]",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)