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: d65cc68
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: fefb454
Choose a head ref
  • 11 commits
  • 21 files changed
  • 6 contributors

Commits on Mar 16, 2023

  1. Merge branch 'release/1.17.0'

    getsentry-bot committed Mar 16, 2023
    Configuration menu
    Copy the full SHA
    5e7627c View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2023

  1. fix(tests): Bad arq dependency in tests (#1966)

    The newer versions of fakeredis does not install `async-timeout` which it needs.
    Zylphrex authored Mar 20, 2023
    Configuration menu
    Copy the full SHA
    439b3f7 View commit details
    Browse the repository at this point in the history
  2. fix(profiling): Handle non frame types in profiler (#1965)

    We've received report that occasionally, there's `AttributeError` on `f_back`.
    It's unclear what exactly causes this issue because the source of the frame is
    from a system libray. This avoids the `AttributeError` by wrapping the line in
    question with a `try ... except ...`. And whenever it does encounter this error,
    we should continue with what frames we have.
    Zylphrex authored Mar 20, 2023
    Configuration menu
    Copy the full SHA
    871c437 View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2023

  1. Implement EventScrubber (#1943)

    As outlined in https://github.com/getsentry/rfcs/blob/main/text/0062-controlling-pii-and-credentials-in-sd-ks.md
    
    Co-authored-by: Anton Pirker <anton.pirker@sentry.io>
    sl0thentr0py and antonpirker authored Mar 21, 2023
    Configuration menu
    Copy the full SHA
    b339d83 View commit details
    Browse the repository at this point in the history
  2. Better naming (#1962)

    antonpirker authored Mar 21, 2023
    Configuration menu
    Copy the full SHA
    5d3649d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f9ec128 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2023

  1. Updated denylist to include other widely used cookies/headers (#1972)

    * Updated denylist to include other widely used cookies/headers
    * Made check case insensitive
    antonpirker authored Mar 22, 2023
    Configuration menu
    Copy the full SHA
    665ab60 View commit details
    Browse the repository at this point in the history
  2. Update OSS licensing (#1973)

    Added license information for:
    - _queue from Python Software Foundation
    - _functools from Python Software Foundation
    - Two small functions from Werkzeug
    
    Reformatted license for
    - Profiler from Nylas.
    antonpirker authored Mar 22, 2023
    Configuration menu
    Copy the full SHA
    8642de0 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2023

  1. Added new functions_to_trace option for celtral way of performance in…

    …strumentation (#1960)
    
    Have a list of functions that can be passed to "sentry_sdk.init()". When the SDK starts it goes through the list and instruments all the functions in the list.
    
    functions_to_trace = [
        {"qualified_name": "tests.test_basics._hello_world_counter"},
        {"qualified_name": "time.sleep"},
        {"qualified_name": "collections.Counter.most_common"},
    ]
    
    sentry_sdk.init(
        dsn="...",
        traces_sample_rate=1.0,
        functions_to_trace=functions_to_trace,
    )
    antonpirker authored Mar 28, 2023
    Configuration menu
    Copy the full SHA
    dc730ed View commit details
    Browse the repository at this point in the history
  2. release: 1.18.0

    getsentry-bot committed Mar 28, 2023
    Configuration menu
    Copy the full SHA
    70cbb25 View commit details
    Browse the repository at this point in the history
  3. Updated changelog

    antonpirker committed Mar 28, 2023
    Configuration menu
    Copy the full SHA
    fefb454 View commit details
    Browse the repository at this point in the history
Loading