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.7.5 to 4.2.0 #237

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 Nov 14, 2024

Bumps appsignal from 3.7.5 to 4.2.0.

Changelog

Sourced from appsignal's changelog.

4.2.0

Published on 2024-11-13.

Added

  • Add config/appsignal.rb config file support. When a config/appsignal.rb file is present in the app, the Ruby gem will automatically load it when Appsignal.start is called.

    The config/appsignal.rb config file is a replacement for the config/appsignal.yml config file. When both files are present, only the config/appsignal.rb config file is loaded when the configuration file is automatically loaded by AppSignal when the configuration file is automatically loaded by AppSignal.

    Example config/appsignal.rb config file:

    # config/appsignal.rb
    Appsignal.configure do |config|
      config.name = "My app name"
    end

    To configure different option values for environments in the config/appsignal.rb config file, use if-statements:

    # config/appsignal.rb
    Appsignal.configure do |config|
      config.name = "My app name"
      if config.env == "production"
        config.ignore_actions << "My production action"
      end
      if config.env == "staging"
        config.ignore_actions << "My staging action"
      end
    end

    (minor f81248bc, 48d16c7a)

  • Add the config/appsignal.rb Ruby config file method to installer, appsignal install. (patch 0d2e2bde)

  • Add Appsignal.set_empty_params! helper method. This helper method can be used to unset parameters on a transaction and to prevent the Appsignal instrumentation from adding parameters to a transaction.

    Example usage:

    class PaymentsController < ApplicationController
      def create
        Appsignal.set_empty_params!
    # Do things with sensitive parameters
    
    end
    end

... (truncated)

Commits
  • 04f1b7e Publish package v4.2.0
  • 5bd8d1b Merge pull request #1334 from appsignal/addDefaultAttributesToLogger
  • ce40e82 Fix format argument in JRuby
  • 8be7c79 Ensure the log line attributes take priority
  • ae5b83b Ensure the original hashes are not modified
  • 6244731 Rename default_attributes parameter
  • 27e05af Add default_attributes to Logger
  • 8b234ca Add Appsignal.configure .env? helper (#1333)
  • f5381a0 Merge pull request #1327 from appsignal/config-rb-install
  • d6a0fbd Simplify the appsignal.rb template
  • Additional commits viewable in compare view

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.7.5 to 4.2.0.
- [Changelog](https://github.com/appsignal/appsignal-ruby/blob/main/CHANGELOG.md)
- [Commits](appsignal/appsignal-ruby@v3.7.5...v4.2.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 14, 2024
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants