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: d09b113
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: c8e93af
Choose a head ref
  • 6 commits
  • 6 files changed
  • 1 contributor

Commits on Jul 26, 2024

  1. test(celery): Stop using configure_scope (#3348)

    Use `Scope.get_isolation_scope` instead.
    
    Ref #3344
    szokeasaurusrex committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    cc0ee38 View commit details
    Browse the repository at this point in the history
  2. test(basics): Stop using configure_scope (#3349)

    Use `Scope.get_isolation_scope` instead.
    
    Ref #3344
    szokeasaurusrex committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    132a9c5 View commit details
    Browse the repository at this point in the history
  3. test(client): Avoid configure_scope (#3350)

    Replace the only `configure_scope` usage in `test_client.py`, which
    can be replaced without defeating the test's purpose, with
    `Scope.get_isolation_scope`. The other `configure_scope` calls are
    made either from a test which specifically tests `configure_scope`
    or from a test which is always skipped.
    
    Closes: #3344
    szokeasaurusrex committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    1d17d57 View commit details
    Browse the repository at this point in the history
  4. fix(api): Deprecate configure_scope (#3351)

    Although `configure_scope` was meant to be deprecated since Sentry
    SDK 2.0.0, calling `configure_scope` did not raise a deprecation
    warning. Now, it does.
    
    Fixes #3346
    szokeasaurusrex committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    6f11f50 View commit details
    Browse the repository at this point in the history
  5. test(basics): Replace push_scope (#3353)

    Most of the `push_scope` usages in `test_basics.py` need to stay, as
    they test functionality specific to `push_scope`.
    
    However, in `test_scope_event_processor_order`, the `push_scope` can
    be replaced with `new_scope`. We make this replacement here.
    
    Ref: #3345
    szokeasaurusrex committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    20ed5b7 View commit details
    Browse the repository at this point in the history
  6. test(sessions): Replace push_scope (#3354)

    All usages of `sentry_sdk.push_scope` in `test_sessions.py` can be
    replaced with `new_scope`.
    
    Closes: #3345
    szokeasaurusrex committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    c8e93af View commit details
    Browse the repository at this point in the history
Loading