Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump sentry-rails and sentry-ruby #609

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 22, 2022

Bumps sentry-rails and sentry-ruby. These dependencies needed to be updated together.
Updates sentry-rails from 4.9.2 to 5.2.1

Changelog

Sourced from sentry-rails's changelog.

5.2.1

Bug Fixes

  • Also check stringified breadcrumbs key when reducing payload size #1758
  • Ignore internal Sidekiq::JobRetry::Skip exception #1763

Miscellaneous

  • Warn user if any integration is required after SDK initialization #1759

5.2.0

Features

  • Log Redis command arguments when sending PII is enabled #1726

  • Add request env to sampling context #1749

    Example

    Sentry.init do |config|
      config.traces_sampler = lambda do |sampling_context|
        env = sampling_context[:env]
    if env["REQUEST_METHOD"] == "GET"
      0.01
    else
      0.1
    end
    
    end
    end

  • Check envelope size before sending it #1747

    The SDK will now check if the envelope's event items are oversized before sending the envelope. It goes like this:

    1. If an event is oversized (200kb), the SDK will remove its breadcrumbs (which in our experience is the most common cause).
    2. If the event size now falls within the limit, it'll be sent.
    3. Otherwise, the event will be thrown away. The SDK will also log a debug message about the event's attributes size (in bytes) breakdown. For example,
    {event_id: 34, level: 7, timestamp: 22, environment: 13, server_name: 14, modules: 935, message: 5, user: 2, tags: 2, contexts: 820791, extra: 2, fingerprint: 2, platform: 6, sdk: 40, threads: 51690}
    

    This will help users report size-related issues in the future.

... (truncated)

Commits
  • 67f27e4 release: 5.2.1
  • f32bf90 Update changelog
  • 723b1c9 fix(perf): TransactionEvent should not set level to :error (#1762)
  • 624edcd Update changelog
  • ff48788 Ignore internal Sidekiq::JobRetry::Skip exception (#1763)
  • 1e71de0 Explicitly use https as github-sourced gems' protocol (#1764)
  • 30d6500 Warn user if any integration is required after SDK initialization (#1759)
  • df531f0 Also check stringified breadcrumbs key when reducing payload size (#1758)
  • 614a436 ci: Change stale GitHub workflow to run once a day (#1755)
  • 9c5bdb8 Merge branch 'release/5.2.0'
  • Additional commits viewable in compare view

Updates sentry-ruby from 4.9.2 to 5.2.1

Changelog

Sourced from sentry-ruby's changelog.

5.2.1

Bug Fixes

  • Also check stringified breadcrumbs key when reducing payload size #1758
  • Ignore internal Sidekiq::JobRetry::Skip exception #1763

Miscellaneous

  • Warn user if any integration is required after SDK initialization #1759

5.2.0

Features

  • Log Redis command arguments when sending PII is enabled #1726

  • Add request env to sampling context #1749

    Example

    Sentry.init do |config|
      config.traces_sampler = lambda do |sampling_context|
        env = sampling_context[:env]
    if env["REQUEST_METHOD"] == "GET"
      0.01
    else
      0.1
    end
    
    end
    end

  • Check envelope size before sending it #1747

    The SDK will now check if the envelope's event items are oversized before sending the envelope. It goes like this:

    1. If an event is oversized (200kb), the SDK will remove its breadcrumbs (which in our experience is the most common cause).
    2. If the event size now falls within the limit, it'll be sent.
    3. Otherwise, the event will be thrown away. The SDK will also log a debug message about the event's attributes size (in bytes) breakdown. For example,
    {event_id: 34, level: 7, timestamp: 22, environment: 13, server_name: 14, modules: 935, message: 5, user: 2, tags: 2, contexts: 820791, extra: 2, fingerprint: 2, platform: 6, sdk: 40, threads: 51690}
    

    This will help users report size-related issues in the future.

... (truncated)

Commits
  • 67f27e4 release: 5.2.1
  • f32bf90 Update changelog
  • 723b1c9 fix(perf): TransactionEvent should not set level to :error (#1762)
  • 624edcd Update changelog
  • ff48788 Ignore internal Sidekiq::JobRetry::Skip exception (#1763)
  • 1e71de0 Explicitly use https as github-sourced gems' protocol (#1764)
  • 30d6500 Warn user if any integration is required after SDK initialization (#1759)
  • df531f0 Also check stringified breadcrumbs key when reducing payload size (#1758)
  • 614a436 ci: Change stale GitHub workflow to run once a day (#1755)
  • 9c5bdb8 Merge branch 'release/5.2.0'
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Mar 22, 2022
@dependabot dependabot bot force-pushed the dependabot/bundler/sentry-rails-and-sentry-ruby-5.2.1 branch from 9670bd5 to 186a718 Compare March 31, 2022 22:26
Bumps [sentry-rails](https://github.com/getsentry/sentry-ruby) and [sentry-ruby](https://github.com/getsentry/sentry-ruby). These dependencies needed to be updated together.

Updates `sentry-rails` from 4.9.2 to 5.2.1
- [Release notes](https://github.com/getsentry/sentry-ruby/releases)
- [Changelog](https://github.com/getsentry/sentry-ruby/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-ruby@4.9.2...5.2.1)

Updates `sentry-ruby` from 4.9.2 to 5.2.1
- [Release notes](https://github.com/getsentry/sentry-ruby/releases)
- [Changelog](https://github.com/getsentry/sentry-ruby/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-ruby@4.9.2...5.2.1)

---
updated-dependencies:
- dependency-name: sentry-rails
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: sentry-ruby
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/bundler/sentry-rails-and-sentry-ruby-5.2.1 branch from 186a718 to d878bff Compare April 7, 2022 21:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants