Skip to content

Commit

Permalink
Publish package v3.5.1
Browse files Browse the repository at this point in the history
Update version number and CHANGELOG.md.
  • Loading branch information
luismiramirez committed Oct 16, 2024
1 parent 87853d7 commit 0fffae8
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 30 deletions.
18 changes: 0 additions & 18 deletions .changesets/add-pino-transport.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changesets/change-primary-download-mirror.md

This file was deleted.

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

## 3.5.1

_Published on 2024-10-16._

### Added

- [46a6ad1](https://github.com/appsignal/appsignal-nodejs/commit/46a6ad14a51cd157ae3fbafe8f2e3e8959b2e89b) patch - A Pino transport is now available. If Pino is your main logger, you can now use the AppSignal pino transport to send those logs to AppSignal.

```js
import pino from "pino"
import { Appsignal, AppsignalPinoTransport } from "@appsignal/nodejs"

const logger = pino(
AppsignalPinoTransport({
client: Appsignal.client,
group: "application",
})
)
```

### Changed

- [1bafde8](https://github.com/appsignal/appsignal-nodejs/commit/1bafde8010cebe3705812311387c2559e372c25f) patch - Change the primary download mirror for integrations.

## 3.5.0

_Published on 2024-09-26._
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.5.0",
"version": "3.5.1",
"main": "dist/index",
"types": "dist/index",
"license": "MIT",
Expand Down

0 comments on commit 0fffae8

Please sign in to comment.