fix(deps): update dependency prom-client to v14
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
prom-client | dependencies | major | ^13.2.0 -> ^14.0.0 |
Release Notes
siimon/prom-client
v14.0.1
What's Changed
- Update pushgateway type def by @adilhafeez in https://github.com/siimon/prom-client/pull/469
New Contributors
- @adilhafeez made their first contribution in https://github.com/siimon/prom-client/pull/469
Full Changelog: https://github.com/siimon/prom-client/compare/v14.0.0...v14.0.1
v14.0.0
Breaking
-
changed:
linearBuckets
does not propagate rounding errors anymore.Fewer bucket bounds will be affected by rounding errors. Histogram bucket labels may change.
6f1f3b2
-
changed: The push gateway methods
pushAdd()
,push()
anddelete()
now return Promises instead of accepting a callback:// Old: gateway.pushAdd({ jobName: 'test' }, (err, resp, body) => {}); // New: gateway .pushAdd({ jobName: 'test' }) .then(({ resp, body }) => {}) .catch(err => {}); // or const { resp, body } = await gateway.pushAdd({ jobName: 'test' });
-
changed: The default
nodejs_eventloop_lag_*
metrics are now reset every time they are observed. This prevents these metrics from "stabilizing" over a long period of time and becoming insensitive to small changes. For more info, see #370.0f444cd
Changed
Configuration
-
If you want to rebase/retry this MR, click this checkbox.
This MR has been generated by Renovate Bot. The local configuration can be found in the SI Renovate Bot repository.