Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps appsignal from 3.7.5 to 3.11.0.

Changelog

Sourced from appsignal's changelog.

3.11.0

Published on 2024-07-15.

Added

  • Add Appsignal.monitor and Appsignal.monitor_and_stop instrumentation helpers. These helpers are a replacement for the Appsignal.monitor_transaction and Appsignal.monitor_single_transaction helpers.

    Use these new helpers to create an AppSignal transaction and track any exceptions that occur within the instrumented block. This new helper supports custom namespaces and has a simpler way to set an action name. Use this helper in combination with our other Appsignal.set_* helpers to add more metadata to the transaction.

    # New helper
    Appsignal.monitor(
      :namespace => "my_namespace",
      :action => "MyClass#my_method"
    ) do
      # Track an instrumentation event
      Appsignal.instrument("my_event.my_group") do
        # Some code
      end
    end
    Old helper
    Appsignal.monitor_transaction(
    "process_action.my_group",
    :class_name => "MyClass",
    :action_name => "my_method"
    ) do
    Some code
    end

    The Appsignal.monitor_and_stop helper can be used in the same scenarios as the Appsignal.monitor_single_transaction helper is used. One-off Ruby scripts that are not part of a long running process.

    Read our instrumentation documentation for more information about using theAppsignal.monitor helper.

    (minor f38f0cff)

  • Add Appsignal.set_session_data helper. Set custom session data on the current transaction with the Appsignal.set_session_data helper. Note that this will overwrite any request session data that would be set automatically on the transaction. When this method is called multiple times, it will overwrite the previously set value.

    Appsignal.set_session_data("data1" => "value1", "data2" => "value2")

    (patch 48c76635)

  • Add Appsignal.set_headers helper. Set custom request headers on the current transaction with the Appsignal.set_headers helper. Note that this will overwrite any request headers that would be set automatically on the transaction. When this method is called multiple times, it will overwrite the previously set value.

    Appsignal.set_headers("PATH_INFO" => "/some-path", "HTTP_USER_AGENT" => "Firefox")

... (truncated)

Commits
  • b47f5bd Publish package v3.11.0
  • ea0878b Merge pull request #1189 from appsignal/fix-deprecation-warning
  • dee81f5 Improve changeset text
  • 66e5f74 Print Transaction deprecation warnings to STDERR
  • 47ced16 Fix deprecation warning always being printed
  • 470d581 Deprecate the monitor_transaction helpers (#1188)
  • 119152d Merge pull request #1161 from appsignal/monitor-helper
  • 6727452 Make action argument required for monitor helper
  • b40d66d Improve Appsignal.monitor API docs
  • c427c73 Simplify monitor helper when Transaction is active
  • 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)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 15, 2024
Bumps [appsignal](https://github.com/appsignal/appsignal-ruby) from 3.7.5 to 3.11.0.
- [Changelog](https://github.com/appsignal/appsignal-ruby/blob/main/CHANGELOG.md)
- [Commits](appsignal/appsignal-ruby@v3.7.5...v3.11.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 force-pushed the dependabot/bundler/appsignal-3.11.0 branch from 8eb25ee to 90050b0 Compare July 20, 2024 18:45
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 23, 2024

Superseded by #169.

@dependabot dependabot bot closed this Jul 23, 2024
@dependabot dependabot bot deleted the dependabot/bundler/appsignal-3.11.0 branch July 23, 2024 11:13
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