New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@mittwald/kubernetes

Package Overview
Dependencies
Maintainers
2
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mittwald/kubernetes - npm Package Compare versions

Comparing version 3.3.0 to 3.3.5

7

label.d.ts

@@ -0,4 +1,9 @@

export declare type AllowedOperator = "in" | "notin";
export interface MatchExpression {
operator: AllowedOperator;
values: string[];
}
export interface Selector {
[l: string]: string;
[l: string]: string | MatchExpression;
}
export declare function selectorToQueryString(selector: Selector): string;

@@ -14,3 +14,8 @@ "use strict";

_.forEach(selector, (value, label) => {
v.push(label + "=" + value);
if (typeof value === "string") {
v.push(label + "=" + value);
}
else {
v.push(label + " " + value.operator + " (" + value.values.join(",") + ")");
}
});

@@ -17,0 +22,0 @@ return v.join(",");

4

package.json

@@ -28,3 +28,3 @@ {

"jsonschema": "^1.2.6",
"lodash": "^4.17.19",
"lodash": "^4.17.21",
"prom-client": "^12.0.0",

@@ -65,3 +65,3 @@ "request": "^2.88.2",

},
"version": "3.3.0"
"version": "3.3.5"
}

Sorry, the diff of this file is not supported yet

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