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

chore(deps): bump appsignal from 2.9.2 to 2.10.0 #11

Merged
merged 1 commit into from
Apr 23, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps appsignal from 2.9.2 to 2.10.0.

Changelog

Sourced from appsignal's changelog.

2.10.0

Published on 2024-04-22.

Added

  • 840e6c0b minor - Heartbeats are currently only available to beta testers. If you are interested in trying it out, send an email to [email protected]!


    Add heartbeats support. You can send heartbeats directly from your code, to track the execution of certain processes:

    def send_invoices do
      # ... your code here ...
      Appsignal.heartbeat("send_invoices")
    end

    You can pass a function to Appsignal.heartbeat, to report to AppSignal both when the process starts, and when it finishes, allowing you to see the duration of the process:

    def send_invoices do
      Appsignal.heartbeat("send_invoices", fn ->
        # ... your code here ...
      end)
    end

    If an exception is thrown within the function, the finish event will not be reported to AppSignal, triggering a notification about the missing heartbeat. The exception will bubble outside of the heartbeat function.

  • d56d3ebd patch - Implement the ignore_logs configuration option, which can also be configured as the APPSIGNAL_IGNORE_LOGS environment variable.

    The value of ignore_logs is a list (comma-separated, when using the environment variable) of log line messages that should be ignored. For example, the value "start" will cause any message containing the word "start" to be ignored. Any log line message containing a value in ignore_logs will not be reported to AppSignal.

    The values can use a small subset of regular expression syntax (specifically, ^, $ and .*) to narrow or expand the scope of lines that should be matched.

    For example, the value "^start$" can be used to ignore any message that is exactly the word "start", but not messages that merely contain it, like "Process failed to start". The value "Task .* succeeded" can be used to ignore messages about task success regardless of the specific task name.

Fixed

  • 38511da4 patch - Remove broken link about 1.x upgrade
Commits
  • f64fc23 Publish package v2.10.0
  • f38cc76 Merge pull request #934 from appsignal/ignore-logs
  • d56d3eb Bump agent to version 0.35.2
  • df3cd03 Merge pull request #933 from appsignal/heartbeats
  • 840e6c0 Amend changeset to minor bump
  • 37f90ae Add ignore_logs configuration option
  • eba8349 Do not attempt to transmit when not active
  • 07c3881 Implement heartbeats
  • f877b49 Add regression test for function_clause errors (#929)
  • fe64027 Implement Transmitter.transmit method
  • 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-elixir) from 2.9.2 to 2.10.0.
- [Release notes](https://github.com/appsignal/appsignal-elixir/releases)
- [Changelog](https://github.com/appsignal/appsignal-elixir/blob/main/CHANGELOG.md)
- [Commits](appsignal/appsignal-elixir@v2.9.2...v2.10.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 23, 2024
@zachdaniel zachdaniel merged commit 67bcd59 into main Apr 23, 2024
15 checks passed
@dependabot dependabot bot deleted the dependabot/hex/appsignal-2.10.0 branch April 23, 2024 14:24
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.

1 participant