Socket
Socket
Sign inDemoInstall

prom-client

Package Overview
Dependencies
Maintainers
2
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prom-client - npm Package Compare versions

Comparing version 11.5.1 to 11.5.2

12

CHANGELOG.md

@@ -16,2 +16,14 @@ # Changelog

## [11.5.2] - 2019-06-20
### Changed
- fix: avoid mutation bug in registry
## [11.5.1] - 2019-06-13
### Changed
- fix: guard against missing constructor
## [11.5.0] - 2019-06-04

@@ -18,0 +30,0 @@

@@ -39,2 +39,8 @@ 'use strict';

val.labels = val.labels || {};
if (defaultLabelNames.length > 0) {
// Make a copy before mutating
val.labels = Object.assign({}, val.labels);
}
for (const labelName of defaultLabelNames) {

@@ -41,0 +47,0 @@ val.labels[labelName] =

2

package.json
{
"name": "prom-client",
"version": "11.5.1",
"version": "11.5.2",
"description": "Client for prometheus",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc