Skip to content

Commit 4647c54

Browse files
authored
Merge branch 'master' into ep/py-2130-messages-not-trimming-k54
2 parents dc851b1 + 01346a9 commit 4647c54

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+4541
-1014
lines changed

.github/workflows/ai-integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
token: ${{ secrets.GITHUB_TOKEN }}
3535

3636
- name: Run Python SDK Tests
37-
uses: getsentry/testing-ai-sdk-integrations@285c012e522f241581534dfc89bd99ec3b1da4f6
37+
uses: getsentry/testing-ai-sdk-integrations@6b1f51ec8af03e19087df452b426aa7e46d2b20a
3838
env:
3939
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4040
with:

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 79 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- name: Get auth token
2424
id: token
25-
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
25+
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v2
2626
with:
2727
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
2828
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
@@ -31,7 +31,7 @@ jobs:
3131
token: ${{ steps.token.outputs.token }}
3232
fetch-depth: 0
3333
- name: Prepare release
34-
uses: getsentry/craft@d4cfac9d25d1fc72c9241e5d22aff559a114e4e9 # v2
34+
uses: getsentry/craft@013a7b2113c2cac0ff32d5180cfeaefc7c9ce5b6 # v2
3535
env:
3636
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
3737
with:

.github/workflows/warden.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,6 @@ ignore = [
227227
"N804", # First argument of classmethod should be named cls
228228

229229
# Additional ignores for codebase compatibility
230-
"F401", # Unused imports - many in TYPE_CHECKING blocks used for type comments
231230
"E721", # Use isinstance instead of type() == - existing pattern in this codebase
232231
]
233232

requirements-linting.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ UnleashClient
1919
typer
2020
strawberry-graphql
2121
setuptools<82
22+
httpx

scripts/populate_tox/package_dependencies.jsonl

Lines changed: 11 additions & 11 deletions
Large diffs are not rendered by default.

scripts/populate_tox/populate_tox.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
from packaging.specifiers import SpecifierSet
2121
from packaging.version import Version
2222
from pathlib import Path
23-
from textwrap import dedent
2423
from typing import Optional, Union
2524

2625
# Adding the scripts directory to PATH. This is necessary in order to be able

scripts/populate_tox/releases.jsonl

Lines changed: 22 additions & 23 deletions
Large diffs are not rendered by default.

sentry_sdk/_batcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from datetime import datetime, timezone
55
from typing import TYPE_CHECKING, TypeVar, Generic
66

7-
from sentry_sdk.utils import format_timestamp, safe_repr, serialize_attribute
7+
from sentry_sdk.utils import format_timestamp
88
from sentry_sdk.envelope import Envelope, Item, PayloadRef
99

1010
if TYPE_CHECKING:

0 commit comments

Comments
 (0)