Skip to content

Commit

Permalink
Prepare v0.11.4 for release (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr0grog authored Nov 10, 2024
1 parent 6d49b78 commit 9f87676
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,26 @@ npm test

## Release History

* 0.11.4 (2024-11-10)

This release updates the TypeScript types for this project, and doesn’t include any changes to functionality. There are also no changes since v0.11.4-a.1.

**Bug Fixes:**

* `BufferedMetricsLogger` is now an actual class & type when you import it in TypeScript. That is, you can now do:

```typescript
import { BufferedMetricsLogger } from 'datadog-metrics';

function useLogger(logger: BufferedMetricsLogger) {
// ...
}
```

Previously, you would have had to declare the type for `logger` as `typeof BufferedMetricsLogger.prototype`. (#120)

[View diff](https://github.com/dbader/node-datadog-metrics/compare/v0.11.3...v0.11.4)

* 0.11.4-a.1 (2024-10-31)

This pre-release is meant for testing a fix for #119.
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": "datadog-metrics",
"version": "0.11.4-a.1",
"version": "0.11.4",
"description": "Buffered metrics reporting via the Datadog HTTP API",
"main": "index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 9f87676

Please sign in to comment.