8000 Comparing 2.33.2...2.34.0 · getsentry/sentry-python · GitHub
[go: up one dir, main page]

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: getsentry/sentry-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.33.2
Choose a base ref
...
head repository: getsentry/sentry-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.34.0
Choose a head ref
8000
  • 17 commits
  • 32 files changed
  • 5 contributors

Commits on Jul 22, 2025

  1. Merge branch 'release/2.33.2'

    getsentry-bot committed Jul 22, 2025
    Configuration menu
    Copy the full SHA
    7339704 View commit details
    Browse the repository at this point in the history
  2. Fix threading run patch (#4610)

    Since we're using `current_thread` for `self` explicitly, we need to
    remove the first argument from `*a`.
    
    This actually doesn't matter since `*a, **kw` are actually both empty
    but since this is the way the patch is implemented (presumably for
    forward compat), I don't want to change the signature.
    
    This fixes the following warning in CI since what actually happens is
    this:
    * `Thread.run` is being patched at each `Thread.start` (and not just
    once as other patches do)
    * So the current thread keeps getting accumulated in `*a` giving the
    `TypeError` for subsequent thread runs except the first
    
    
    ```python
     TypeError: Thread.run() takes 1 positional argument but 5 were given
    
    tests/integrations/redis/cluster_asyncio/test_redis_cluster_asyncio.py::test_async_span_origin
      /Users/neel/sentry/sdks/sentry-python/.tox/py3.12-redis-v5/lib/python3.12/site-packages/_pytest/threadexception.py:58: PytestUnhandledThreadExceptionWarning: Exception in thread sentry.monitor
    ```
    
    
    closes #4361
    sl0thentr0py authored Jul 22, 2025
    Configuration menu
    Copy the full SHA
    1b4f8d3 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2025

  1. Configuration menu
    Copy the full SHA
    e329179 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2025

  1. tests: Update tox (#4609)

    Regular tox update
    
    Includes a small openai-agents tests fix and restricts openai-agents
    tests to 3.10 as in 0.2.x they're using 3.10+ typing syntax (`<Type> |
    <Type>`)
    sentrivana authored Jul 24, 2025
    Configuration menu
    Copy the full SHA
    fe3ccb8 View commit details
    Browse the repository at this point in the history
  2. Fix huggingface_hub CI tests. (#4619)

    HuggingFace has changed its default model used in `InferenceClient` and
    the new model breaks our CI. Change to use a non-existent model.
    antonpirker authored Jul 24, 2025
    Configuration menu
    Copy the full SHA
    add8b6f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c1c6e0b View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2025

  1. Configuration menu
    Copy the full SHA
    69d65db View commit details
    Browse the repository at this point in the history
  2. Simplify celery double patching test (#4626)

    just check double patching, no need to recurse 10000 times
    
    part of #4623
    sl0thentr0py authored Jul 25, 2025
    Configuration menu
    Copy the full SHA
    bc7ca86 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d71b953 View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2025

  1. Configuration menu
    Copy the full SHA
    070653a View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2025

  1. tests: tox.ini update (#4635)

    Regular tox update
    sentrivana authored Jul 29, 2025
    Configuration menu
    Copy the full SHA
    19ed1bb View commit details
    Browse the repository at this point in the history
  2. OpenAI integration update (#4612)

    Update our OpenAI integration to support new APIs (`/responses`) and be OTel and Sentry AI Agents insights module compatible.
    
    Contains:
    - #4563
    - #4564
    - #4628
    
    ---------
    
    Co-authored-by: Ivana Kellyer <ivana.kellyer@sentry.io>
    antonpirker and sentrivana authored Jul 29, 2025
    Configuration menu
    Copy the full SHA
    fcace85 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fd7dca4 View commit details
    Browse the repository at this point in the history
  4. Considerably raise DEFAULT_MAX_VALUE_LENGTH (#4632)

    AI prompts/messages are potentially huge.
    
    * raise `DEFAULT_MAX_VALUE_LENGTH` (responsible for string trimming)
    from 1024 to 100 000
    * adapt tests (and make them more generic, without hardcoded parts,
    where possible)
    sentrivana authored Jul 29, 2025
    Configuration menu
    Copy the full SHA
    4f9d326 View commit details
    Browse the repository at this point in the history
  5. release: 2.34.0

    getsentry-bot committed Jul 29, 2025
    Configuration menu
    Copy the full SHA
    e84f6f3 View commit details
    Browse the repository at this point in the history
  6. Update CHANGELOG.md

    sentrivana authored Jul 29, 2025
    Configuration menu
    Copy the full SHA
    e1848d4 View commit details
    Browse the repository at this point in the history
  7. Update changelog

    antonpirker committed Jul 29, 2025
    Configuration menu
    Copy the full SHA
    72766a7 View commit details
    Browse the repository at this point in the history
Loading
0