ecosyste-ms / repos

An open API service providing repository metadata for many open source software ecosystems.
https://repos.ecosyste.ms
GNU Affero General Public License v3.0
9 stars 1 forks source link

Bump appsignal from 4.1.3 to 4.2.0 #711

Closed dependabot[bot] closed 1 week ago

dependabot[bot] commented 1 week ago

Bumps appsignal from 4.1.3 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 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)
dependabot[bot] commented 1 week ago

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