forked from k8sgateway/k8sgateway
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
32 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
changelog: | ||
- type: DEPENDENCY_BUMP | ||
dependencyOwner: moby | ||
dependencyRepo: moby | ||
dependencyTag: v26.0.0 | ||
issueLink: https://github.com/solo-io/gloo/issues/10430 | ||
resolvesIssue: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{{$file := .Get "file"}} | ||
|
||
{{- if and (eq (.Get "type") "SECURITY_SCAN") .Site.Params.noSecurityScan -}} | ||
skip reading security scan for file <em>{{ $file }}</em> | ||
<br/> | ||
|
||
{{- else -}} | ||
|
||
{{$file := .Get "file"}} | ||
{{ if (fileExists $file ) -}} | ||
{{- if eq (.Get "markdown") "true" -}} | ||
{{- $file | readFile | markdownify -}} | ||
{{- else -}} | ||
{{ $file | readFile | safeHTML }} | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
{{- end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,6 +143,7 @@ require ( | |
github.com/containerd/cgroups v1.1.0 // indirect | ||
github.com/containerd/containerd v1.7.12 // indirect | ||
github.com/containerd/continuity v0.4.3 // indirect | ||
github.com/containerd/log v0.1.0 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect | ||
github.com/creack/pty v1.1.18 // indirect | ||
github.com/cyphar/filepath-securejoin v0.3.1 // indirect | ||
|
@@ -156,7 +157,6 @@ require ( | |
github.com/docker/docker-credential-helpers v0.8.2 // indirect | ||
github.com/docker/go-connections v0.5.0 // indirect | ||
github.com/docker/go-metrics v0.0.1 // indirect | ||
github.com/docker/go-units v0.5.0 // indirect | ||
github.com/emicklei/go-restful/v3 v3.12.0 // indirect | ||
github.com/emicklei/proto v1.13.2 // indirect | ||
github.com/emirpasic/gods v1.12.0 // indirect | ||
|
@@ -270,7 +270,6 @@ require ( | |
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect | ||
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect | ||
github.com/oklog/run v1.0.0 // indirect | ||
|
@@ -361,7 +360,7 @@ replace ( | |
// using the pseudo version of github.com/form3tech-oss/[email protected] instead of the version directly, | ||
// to avoid error about it being used for two different module paths | ||
github.com/dgrijalva/jwt-go => github.com/form3tech-oss/jwt-go v0.0.0-20210511163231-5b2d2b5f6c34 | ||
github.com/docker/docker => github.com/moby/moby v24.0.7+incompatible | ||
github.com/docker/docker => github.com/moby/moby v26.0.0+incompatible | ||
|
||
// Pin this to a version compatible with protoc-gen-openapi | ||
github.com/getkin/kin-openapi => github.com/getkin/kin-openapi v0.107.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters