这是indexloc提供的服务,不要输入任何密码
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-cocoa
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7.21.0
Choose a base ref
...
head repository: getsentry/sentry-cocoa
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7.22.0
Choose a head ref
  • 17 commits
  • 46 files changed
  • 8 contributors

Commits on Jul 15, 2022

  1. Merge branch 'release/7.21.0'

    getsentry-bot committed Jul 15, 2022
    Configuration menu
    Copy the full SHA
    a9749d2 View commit details
    Browse the repository at this point in the history
  2. fix: Remove Sentry keys from cached HTTP request headers (#1975)

    When an HTTP request is happening without a span, it used to just reuse the existing headers, which can include an old and unrelated traceId. This caused weird behavior where the request would seem to happen from a totally different part of the app.
    kevinrenskers authored Jul 15, 2022
    Configuration menu
    Copy the full SHA
    ed11f35 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2022

  1. fix: read free_memory when the event is captured, not only at SDK sta…

    …rtup (#1962)
    
    When we capture an event, we now enhance the data with the actual free memory at that time. Until now we only used the value from when the SDK was initiated.
    kevinrenskers authored Jul 18, 2022
    Configuration menu
    Copy the full SHA
    9640294 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    37e9eab View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2022

  1. Configuration menu
    Copy the full SHA
    5bddfe2 View commit details
    Browse the repository at this point in the history
  2. build(deps): bump actions/stale from 5.0.0 to 5.1.0 (#1985)

    Bumps [actions/stale](https://github.com/actions/stale) from 5.0.0 to 5.1.0.
    - [Release notes](https://github.com/actions/stale/releases)
    - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
    - [Commits](actions/stale@3cc1237...532554b)
    
    ---
    updated-dependencies:
    - dependency-name: actions/stale
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jul 19, 2022
    Configuration menu
    Copy the full SHA
    167de8b View commit details
    Browse the repository at this point in the history
  3. test: Increase wait timeout for ANR tests (#1988)

    The SentryANRTrackerTests sometimes fail because the test expectation
    times out. Increase the timeout from 0.3 to 1.0 seconds in case the CI is
    busy and the test slows down.
    philipphofmann authored Jul 19, 2022
    Configuration menu
    Copy the full SHA
    64a7645 View commit details
    Browse the repository at this point in the history
  4. fix: Collect samples for idle threads in iOS profiler (#1978)

    Remove the check that skips collecting a sample for an idle thread.
    
    We were seeing an issue where we found function frames in profiles that were taking way longer than they should, because of missing samples in between.
    
    That's because we were intentionally skipping collecting samples when the thread was idle (which is frequently the case). Not collecting a sample when the thread is idle means that we will have irregular sample timestamps, which cause an incorrect calculation of the function durations.
    
    Co-authored-by: Sentry Github Bot <bot+github-bot@sentry.io>
    indragiek and getsentry-bot authored Jul 19, 2022
    Configuration menu
    Copy the full SHA
    6781721 View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2022

  1. fix: Remove variable values from Core Data queries (#1982)

    Created a parser for NSPredicate in order to be able to remove variable and other constant values from the query to avoid leaking PII.
    
    Co-authored-by: Philipp Hofmann <philipp.hofmann@sentry.io>
    brustolin and philipphofmann authored Jul 21, 2022
    Configuration menu
    Copy the full SHA
    be6bf25 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    204fa83 View commit details
    Browse the repository at this point in the history
  3. feat: Provide private access to SentryOptions for hybrid SDKs (#1991)

    Hybrid SDKs can now access the options of the current client, or will get an empty SentryOptions object back if no hub/client was set.
    kevinrenskers authored Jul 21, 2022
    Configuration menu
    Copy the full SHA
    825b2e1 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2022

  1. ci: Update available GH actions Xcode link (#1997)

    The current links point to a fixed commit. When GH adds new Xcode
    versions we don't see them as the commit points to the past.
    This is fixed by pointing to the latest version in the readme.
    philipphofmann authored Jul 22, 2022
    Configuration menu
    Copy the full SHA
    f3a8907 View commit details
    Browse the repository at this point in the history
  2. test: Make message for waitForExistence required (#1998)

    Add parameter message to waitForExistence to make it required
    to use an assertion message so we know what is wrong when
    waitForExistence times out.
    philipphofmann authored Jul 22, 2022
    Configuration menu
    Copy the full SHA
    9b7bfbe View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2022

  1. fix: Respect existing baggage header instead of overwriting it (#1995)

    SentryNetworkTracker adds a baggage header with some sentry keys and values, but it does so by completely overwriting any possibly existing baggage header. And when we remove the baggage header when SentrySDK.currentHub.scope.span is nil, we also do that by removing the entire baggage header instead of only the sentry-trace_id key that we actually need to remove.
    
    Now we respect the existing baggage header, if it's there, by modifying it.
    kevinrenskers authored Jul 25, 2022
    Configuration menu
    Copy the full SHA
    2e5ea2c View commit details
    Browse the repository at this point in the history
  2. fix: Don't override already-set timestamp when finishing Span (#1993)

    When you set a specific timestamp on a Span, then calling finish shouldn't override that value.
    kevinrenskers authored Jul 25, 2022
    Configuration menu
    Copy the full SHA
    b025e16 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bf77e6a View commit details
    Browse the repository at this point in the history
  4. release: 7.22.0

    getsentry-bot committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    206f9a8 View commit details
    Browse the repository at this point in the history
Loading