Thanks to visit codestin.com
Credit goes to github.com

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: 0.14.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: 0.14.3
Choose a head ref
  • 13 commits
  • 41 files changed
  • 5 contributors

Commits on Feb 26, 2020

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

Commits on Feb 27, 2020

  1. fix: Use monotonic clock to compute durations (#631)

    * fix: Use monotonic clock to compute durations
    
    In summary, care must be taken when computing durations. Monotonic
    clocks are not subject to system clock adjustments or system clock skew.
    The difference between any two chronologically recorded time values is
    guaranteed to never be negative.
    
    The same guarantee above does not exist for the difference between two
    calls to datetime.now() and friends.
    
    More details and rationale see PEP 418.
    
    Resources:
    
    PEP 418 -- Add monotonic time, performance counter, and process time functions
    https://www.python.org/dev/peps/pep-0418/
    
    PEP 564 -- Add new time functions with nanosecond resolution
    https://www.python.org/dev/peps/pep-0564/
    
    * fix: Remove camelCasing
    
    Co-authored-by: Markus Unterwaditzer <[email protected]>
    rhcarvalho and untitaker authored Feb 27, 2020
    Configuration menu
    Copy the full SHA
    d31e805 View commit details
    Browse the repository at this point in the history
  2. fix: Do not overwrite User data if already set (#637)

    Turns out some users manually set user.id and other fields in the scope,
    and those values get overwritten by integrations.
    
    Glanced over places where we could be inadvertently overwriting user
    data and changed to use setdefault to avoid overwriting existing values.
    rhcarvalho authored Feb 27, 2020
    Configuration menu
    Copy the full SHA
    4112000 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2020

  1. Configuration menu
    Copy the full SHA
    e680a75 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    427ddb0 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2020

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

Commits on Mar 13, 2020

  1. fix(tracing) Omit the top level status tag (#644)

    In the product side we don't really want people to search by this tag as
    it is far more expensive than the `transaction.status` property which is
    indexed separately. By not emitting this tag and only including it in
    the trace context we won't end up with poor performing tags for users to
    click on.
    
    To workaround get_trace_context() being called multiple times I needed
    an additional non-tags place to store the status. I've had to shim the
    status back into tags as non-transaction spans expect to have status as
    a tag.
    
    Co-authored-by: Markus Unterwaditzer <[email protected]>
    markstory and untitaker authored Mar 13, 2020
    Configuration menu
    Copy the full SHA
    909ecaa View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2020

  1. ref: Introduce linter for proper naming conventions (#636)

    * ref: Introduce linter for proper naming conventions
    
    * ref: Document reasons for ignoring lints
    untitaker authored Mar 16, 2020
    Configuration menu
    Copy the full SHA
    03a5e65 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e9e7238 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2020

  1. test: Add RQ 1.3 to test matrix (#649)

    * test: Add RQ 1.3 to test matrix
    
    * fix: add fakeredis
    untitaker authored Mar 17, 2020
    Configuration menu
    Copy the full SHA
    5a1867e View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2020

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

Commits on Mar 20, 2020

  1. doc: Changelog for 0.14.3

    untitaker committed Mar 20, 2020
    Configuration menu
    Copy the full SHA
    fa72dc3 View commit details
    Browse the repository at this point in the history
  2. release: 0.14.3

    untitaker committed Mar 20, 2020
    Configuration menu
    Copy the full SHA
    de0b2f9 View commit details
    Browse the repository at this point in the history
Loading