Skip to content

Commit 4a2ebc9

Browse files
committed
Prepare for continued development
Includes an update to the repo URL in `package.json` based on NPM publishing changes.
1 parent 2b03156 commit 4a2ebc9

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,33 @@ Contributions are always welcome! For more info on how to contribute or develop
367367

368368
## Release History
369369

370+
### In Development:
371+
372+
**Breaking Changes:**
373+
374+
* The minimum required Node.js version is now v14.0.0.
375+
376+
* 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.
377+
378+
**New Features:**
379+
380+
TBD
381+
382+
**Deprecations:**
383+
384+
TBD
385+
386+
**Bug Fixes:**
387+
388+
TBD
389+
390+
**Maintenance:**
391+
392+
* 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)
393+
394+
[View diff](https://github.com/dbader/node-datadog-metrics/compare/v0.12.1...main)
395+
396+
370397
### **(Pre-release)** 0.13.0-pre.1 (2025-08-31)
371398

372399
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.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "datadog-metrics",
3-
"version": "0.13.0-pre.1",
3+
"version": "0.13.0-dev",
44
"description": "Buffered metrics reporting via the Datadog HTTP API",
55
"main": "index.js",
66
"types": "dist/index.d.ts",
77
"repository": {
88
"type": "git",
9-
"url": "[email protected]:dbader/node-datadog-metrics.git"
9+
"url": "git+ssh://git@github.com/dbader/node-datadog-metrics.git"
1010
},
1111
"bugs": {
1212
"url": "https://github.com/dbader/node-datadog-metrics/issues"

0 commit comments

Comments
 (0)