Skip to content

Commit db82421

Browse files
Merge branch 'master' into webb/populate-tox/transitive-dependencies
2 parents cdd43f2 + ba5fe8c commit db82421

6 files changed

Lines changed: 23 additions & 5 deletions

File tree

CHANGELOG.md

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

3+
## 2.61.1
4+
5+
### Internal Changes 🔧
6+
7+
#### Rq
8+
9+
- Pin `fakeredis<2.36.0` in tests by @alexander-alderman-webb in [#6454](https://github.com/getsentry/sentry-python/pull/6454)
10+
- Unpin `redis` and `fakeredis` for tests by @alexander-alderman-webb in [#6443](https://github.com/getsentry/sentry-python/pull/6443)
11+
12+
#### Other
13+
14+
- (aiohttp) Unfurl spans explicitly instead of using pop() by @sentrivana in [#6435](https://github.com/getsentry/sentry-python/pull/6435)
15+
- (tox) Migrate from pip to uv via tox-uv by @sentry-junior in [#6390](https://github.com/getsentry/sentry-python/pull/6390)
16+
- Pin redis<8 for rq by @sl0thentr0py in [#6438](https://github.com/getsentry/sentry-python/pull/6438)
17+
318
## 2.61.0
419

520
### New Features ✨

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year)
3232
author = "Sentry Team and Contributors"
3333

34-
release = "2.61.0"
34+
release = "2.61.1"
3535
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3636

3737

scripts/populate_tox/config.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,10 @@
3535
"arq": {
3636
"package": "arq",
3737
"deps": {
38-
"*": ["async-timeout", "pytest-asyncio", "fakeredis>=2.2.0,<2.8"],
38+
"*": ["async-timeout", "pytest-asyncio", "fakeredis"],
3939
"<=0.23": ["pydantic<2"],
40+
# https://github.com/cunla/fakeredis-py/issues/490
41+
"py3.6,py3.7,py3.8": ["fakeredis<2.36.0"],
4042
},
4143
"num_versions": 2,
4244
},

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1745,4 +1745,4 @@ def _get_default_options() -> "dict[str, Any]":
17451745
del _get_default_options
17461746

17471747

1748-
VERSION = "2.61.0"
1748+
VERSION = "2.61.1"

setup.py

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

2323
setup(
2424
name="sentry-sdk",
25-
version="2.61.0",
25+
version="2.61.1",
2626
author="Sentry Team and Contributors",
2727
author_email="hello@sentry.io",
2828
url="https://github.com/getsentry/sentry-python",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8716,8 +8716,9 @@ deps =
87168716
arq-latest: arq==0.28.0
87178717
arq: async-timeout
87188718
arq: pytest-asyncio
8719-
arq: fakeredis>=2.2.0,<2.8
8719+
arq: fakeredis
87208720
arq-v0.23: pydantic<2
8721+
{py3.6,py3.7,py3.8}-arq: fakeredis<2.36.0
87218722

87228723
beam-v2.14.0: apache-beam==2.14.0
87238724

0 commit comments

Comments
 (0)