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 appsignal from 3.11.0 to 3.12.0 #826

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 23, 2024

Bumps appsignal from 3.11.0 to 3.12.0.

Changelog

Sourced from appsignal's changelog.

3.12.0

Published on 2024-07-22.

Added

  • Add a Rails configuration option to start AppSignal after Rails is initialized. By default, AppSignal will start before the Rails initializers are run. This way it is not possible to configure AppSignal in a Rails initializer using Ruby. To configure AppSignal in a Rails initializer, configure Rails to start AppSignal after it is initialized.

    # config/application.rb
    ...
    module MyApp
    class Application < Rails::Application
    # Add this line
    config.appsignal.start_at = :after_initialize
    # Other config
    
    end
    end

    Then, in the initializer:

    # config/initializers/appsignal.rb
    Appsignal.configure do |config|
    config.ignore_actions = ["My action"]
    end

    Be aware that when start_at is set to after_initialize, AppSignal will not track any errors that occur when the initializers are run and the app fails to start.

    See our Rails documentation for more information.

    (minor b84a6a36)

  • Add a new method of configuring AppSignal: Appsignal.configure. This new method allows apps to configure AppSignal in Ruby.

    # The environment will be auto detected
    Appsignal.configure do |config|
      config.activejob_report_errors = "discard"
      config.sidekiq_report_errors = :discard
      config.ignore_actions = ["My ignored action", "My other ignored action"]
      config.request_headers << "MY_HTTP_HEADER"
      config.send_params = true
      config.enable_host_metrics = false
    end

... (truncated)

Commits

Dependabot compatibility score

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Bumps [appsignal](https://github.com/appsignal/appsignal-ruby) from 3.11.0 to 3.12.0.
- [Changelog](https://github.com/appsignal/appsignal-ruby/blob/main/CHANGELOG.md)
- [Commits](appsignal/appsignal-ruby@v3.11.0...v3.12.0)

---
updated-dependencies:
- dependency-name: appsignal
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Jul 23, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 24, 2024

Looks like appsignal is up-to-date now, so this is no longer needed.

@dependabot dependabot bot closed this Jul 24, 2024
@dependabot dependabot bot deleted the dependabot/bundler/appsignal-3.12.0 branch July 24, 2024 16:09
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.

0 participants