Skip to content

Commit

Permalink
Publish package v3.4.9
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 458ea80 commit 3cf4204
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 35 deletions.
6 changes: 0 additions & 6 deletions .changesets/deprecate-heartbeats.md

This file was deleted.

This file was deleted.

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

This file was deleted.

34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# AppSignal for Node.js Changelog

## 3.4.9

_Published on 2024-08-14._

### Changed

- 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:

```js
// Before
import { heartbeat } from "@appsignal/nodejs"

heartbeat("do_something", () => {
do_something()
})

// After
import { checkIn } from "@appsignal/nodejs"

checkIn.cron("do_something", () => {
do_something
})
```

(patch [fc9abba](https://github.com/appsignal/appsignal-nodejs/commit/fc9abbab04d071edea36ec7440236165529e57be))

### Deprecated

- Calls to `Appsignal.heartbeat` and to the `Appsignal.Heartbeat` constructor will emit a deprecation warning. (patch [fc9abba](https://github.com/appsignal/appsignal-nodejs/commit/fc9abbab04d071edea36ec7440236165529e57be))

### Fixed

- Prevent internal AppSignal requests from being instrumented and appearing in the "Slow API requests" panel. (patch [95bf139](https://github.com/appsignal/appsignal-nodejs/commit/95bf1397226864704843a6354fe49e3971511e72))

## 3.4.8

_Published on 2024-07-04._
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@appsignal/nodejs",
"version": "3.4.8",
"version": "3.4.9",
"main": "dist/index",
"types": "dist/index",
"license": "MIT",
Expand Down

0 comments on commit 3cf4204

Please sign in to comment.