Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 5 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -367,31 +367,21 @@ Contributions are always welcome! For more info on how to contribute or develop

## Release History

### In Development:
### **(Pre-release)** 0.13.0-pre.1 (2025-08-31)

This is a pre-release of v0.13.0 for testing. There are no new features, but this contains significant under-the-hood changes. We’ve slimmed things down by no longer relying on the official Datadog client, which is pretty heavy. If your app is pushing size or resource constraints, this update may help.

**Breaking Changes:**

* The minimum required Node.js version is now v14.0.0.

* The `code` property on `AuthorizationError` instances has been changed to `DATADOG_METRICS_AUTHORIZATION_ERROR` to make names more clear and consistent (it was previously `DATADOG_AUTHORIZATION_ERROR`). If you are using `errorInstance.code` to check types, make sure to update the string you are looking for.

**New Features:**

TBD

**Deprecations:**

TBD

**Bug Fixes:**

TBD
* The `code` property on `AuthorizationError` instances has been changed to `DATADOG_METRICS_AUTHORIZATION_ERROR` for clarity and consistency (it was previously `DATADOG_AUTHORIZATION_ERROR`). If you are using `errorInstance.code` to check types, make sure to update the string you were looking for.

**Maintenance:**

* Under the hood, we’ve removed a dependency on the official Datadog client (`@datadog/datadog-api-client`). This is an attempt to streamline the package, since the official client comes at a sizeable 15 MB of code for you to download and then load in your application. (#144)

[View diff](https://github.com/dbader/node-datadog-metrics/compare/v0.12.1...main)
[View diff](https://github.com/dbader/node-datadog-metrics/compare/v0.12.1...v0.13.0-pre.1)


### 0.12.1 (2024-12-18)
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.12.2-dev",
"version": "0.13.0-pre.1",
"description": "Buffered metrics reporting via the Datadog HTTP API",
"main": "index.js",
"types": "dist/index.d.ts",
Expand Down