mirror of
https://github.com/kubernetes/node-problem-detector.git
synced 2026-08-23 22:26:27 +00:00
Fix Grype CVEs: update logrus and prometheus/prometheus
- Update github.com/sirupsen/logrus v1.9.0 -> v1.9.3 in test/go.mod to fix GHSA-4f99-4q7p-p3gh (High) - Update github.com/prometheus/prometheus v0.35.0 -> v0.311.3 to fix GHSA-vffh-x6r8-xx99 (Medium) - Run go mod tidy and go mod vendor to update vendor directory
This commit is contained in:
committed by
Ciprian Hacman
parent
255c6e602c
commit
97bb2fbb44
+34
@@ -0,0 +1,34 @@
|
||||
// SPDX-FileCopyrightText: Copyright 2015-2025 go-swagger maintainers
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
package swag
|
||||
|
||||
import "github.com/go-openapi/swag/stringutils"
|
||||
|
||||
// ContainsStrings searches a slice of strings for a case-sensitive match.
|
||||
//
|
||||
// Deprecated: use [slices.Contains] or [stringutils.ContainsStrings] instead.
|
||||
func ContainsStrings(coll []string, item string) bool {
|
||||
return stringutils.ContainsStrings(coll, item)
|
||||
}
|
||||
|
||||
// ContainsStringsCI searches a slice of strings for a case-insensitive match.
|
||||
//
|
||||
// Deprecated: use [stringutils.ContainsStringsCI] instead.
|
||||
func ContainsStringsCI(coll []string, item string) bool {
|
||||
return stringutils.ContainsStringsCI(coll, item)
|
||||
}
|
||||
|
||||
// JoinByFormat joins a string array by a known format (e.g. swagger's collectionFormat attribute).
|
||||
//
|
||||
// Deprecated: use [stringutils.JoinByFormat] instead.
|
||||
func JoinByFormat(data []string, format string) []string {
|
||||
return stringutils.JoinByFormat(data, format)
|
||||
}
|
||||
|
||||
// SplitByFormat splits a string by a known format.
|
||||
//
|
||||
// Deprecated: use [stringutils.SplitByFormat] instead.
|
||||
func SplitByFormat(data, format string) []string {
|
||||
return stringutils.SplitByFormat(data, format)
|
||||
}
|
||||
Reference in New Issue
Block a user