Skip to content

Commit

Permalink
Publish package v3.13.0
Browse files Browse the repository at this point in the history
Update version number and CHANGELOG.md.
  • Loading branch information
unflxw committed Aug 14, 2024
1 parent 584fcea commit e05e2cb
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 39 deletions.
6 changes: 0 additions & 6 deletions .changesets/deprecate-heartbeats.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changesets/remove-http-gem-exception-handling.md

This file was deleted.

18 changes: 0 additions & 18 deletions .changesets/rename-heartbeats-to-cron-check-ins.md

This file was deleted.

37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,42 @@
# AppSignal for Ruby gem Changelog

## 3.13.0

_Published on 2024-08-14._

### Changed

- Remove the HTTP gem's exception handling. Errors from the HTTP gem will no longer always be reported. The error will be reported only when an HTTP request is made in an instrumented context. This gives applications the opportunity to add their own custom exception handling.

```ruby
begin
HTTP.get("https://appsignal.com/error")
rescue => error
# Either handle the error or report it to AppSignal
end
```

(minor [2a452ff0](https://github.com/appsignal/appsignal-ruby/commit/2a452ff07e0b0938b1623fa8846af6ef37917ec2))
- Rename heartbeats to cron check-ins. Calls to `Appsignal.heartbeat` and `Appsignal::Heartbeat` should be replaced with calls to `Appsignal::CheckIn.cron` and `Appsignal::CheckIn::Cron`, for example:

```ruby
# Before
Appsignal.heartbeat("do_something") do
do_something
end

# After
Appsignal::CheckIn.cron("do_something") do
do_something
end
```

(patch [2f686cd0](https://github.com/appsignal/appsignal-ruby/commit/2f686cd00d5daa6e0854a8cacfe0e874a3a7c146))

### Deprecated

- Calls to `Appsignal.heartbeat` and `Appsignal::Heartbeat` will emit a deprecation warning. (patch [2f686cd0](https://github.com/appsignal/appsignal-ruby/commit/2f686cd00d5daa6e0854a8cacfe0e874a3a7c146))

## 3.12.6

_Published on 2024-08-05._
Expand Down
2 changes: 1 addition & 1 deletion lib/appsignal/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Appsignal
VERSION = "3.12.6"
VERSION = "3.13.0"
end

0 comments on commit e05e2cb

Please sign in to comment.