Skip to content

Commit 329bc85

Browse files
authored
fix(deps): lock file maintenance vulnfeeds (#3976)
This PR contains the following updates: | Package | Type | Update | Change | Age | Confidence | |---|---|---|---|---|---| | | | lockFileMaintenance | All locks refreshed | | | | gcr.io/google.com/cloudsdktool/google-cloud-cli | final | digest | `af3dac7` -> `cf7a564` | | | | [github.com/charmbracelet/lipgloss](https://redirect.github.com/charmbracelet/lipgloss) | require | minor | `v1.0.0` -> `v1.1.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcharmbracelet%2flipgloss/v1.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcharmbracelet%2flipgloss/v1.0.0/v1.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/ossf/osv-schema/bindings/go](https://redirect.github.com/ossf/osv-schema) | require | digest | `695987a` -> `f1e868d` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fossf%2fosv-schema%2fbindings%2fgo/v0.0.0-20250918060136-f1e868d0beb6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fossf%2fosv-schema%2fbindings%2fgo/v0.0.0-20250902063920-695987a6b7da/v0.0.0-20250918060136-f1e868d0beb6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | golang | stage | patch | `1.25.0-alpine` -> `1.25.1-alpine` | [![age](https://developer.mend.io/api/mc/badges/age/docker/golang/1.25.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/docker/golang/1.25.0/1.25.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Release Notes <details> <summary>charmbracelet/lipgloss (github.com/charmbracelet/lipgloss)</summary> ### [`v1.1.0`](https://redirect.github.com/charmbracelet/lipgloss/releases/tag/v1.1.0) [Compare Source](https://redirect.github.com/charmbracelet/lipgloss/compare/v1.0.0...v1.1.0) #### Tables, Improved In this release, the inimitable [@&#8203;andreynering](https://redirect.github.com/andreynering) and [@&#8203;bashbunni](https://redirect.github.com/bashbunni) majorly overhauled on the table sizing and content wrapping algorithms. Tables will now be much smarter on deciding the ideal width of each column, and contents now wraps by default inside cells. ```go // Table content wraps by default. t := table.New(). Headers(someHeaders...). Rows(someRows...). Width(80) fmt.Println(t) ``` <img width="790" src="https://github.com/user-attachments/assets/64a4e6b3-d9b4-4e2f-85a8-77b7f2894819" /> ```go // Actually, let's not wrap the content. t := table.New(). Headers(someHeaders...). Rows(someRows...). Width(80). Wrap(false) fmt.Println(t) ``` <img width="790" src="https://github.com/user-attachments/assets/def6b76d-04cd-499a-85a7-3b0bc833e0ce" /> #### New Border Styles Also, we added two new border styles that you can use to generate tables in Markdown and ASCII styles. ##### Markdown Tables To render tables correctly for Markdown you'll want to use [`lipgloss.MarkdownBorder`](https://pkg.go.dev/github.com/charmbracelet/[email protected]#MarkdownBorder) *and* disable the top and bottom borders. ```go t := table.New(). Headers(someHeaders...). Rows(someRows). Border(lipgloss.MarkdownBorder()). BorderTop(false). BorderBottom(false) fmt.Println(t) ``` <img width="425" src="https://github.com/user-attachments/assets/459de35b-ba9e-4334-b647-b496337b4061" /> ##### ASCII Tables To render an ASCII-style table use [`lipgloss.ASCIIBorder`](https://pkg.go.dev/github.com/charmbracelet/[email protected]#ASCIIBorder). ```go t := table.New(). Headers(someHeaders...). Rows(someRows). Border(lipgloss.ASCIIBorder()) fmt.Println(t) ``` <img width="450" src="https://github.com/user-attachments/assets/9abefd4f-195c-4b37-a024-2a397094b338" /> #### Thanks everyone Special thanks to [@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas), [@&#8203;bashbunni](https://redirect.github.com/bashbunni), [@&#8203;andreynering](https://redirect.github.com/andreynering), and [@&#8203;caarlos0](https://redirect.github.com/caarlos0) for or all the work on this release! *** #### Changelog ##### New Features - [`7862f52`](https://redirect.github.com/charmbracelet/lipgloss/commit/7862f5293d37c466f48d7a5f8520305257b9356f): feat(table): improve sizing and behavior: wrap by default, overflow optionally ([@&#8203;andreynering](https://redirect.github.com/andreynering)) - [`1f1209e`](https://redirect.github.com/charmbracelet/lipgloss/commit/1f1209e8be34adf156ed35bed6aded58410f071b): feat(table): use cellbuf to preserve styles for wrapped content ([@&#8203;bashbunni](https://redirect.github.com/bashbunni)) - [`c454a0a`](https://redirect.github.com/charmbracelet/lipgloss/commit/c454a0adaafcf9ff18704e8b27aa8fe4a2d22026): feat(tables): add markdown and ascii border style for tables ([#&#8203;480](https://redirect.github.com/charmbracelet/lipgloss/issues/480)) ([@&#8203;andreynering](https://redirect.github.com/andreynering)) - [`bafb8fd`](https://redirect.github.com/charmbracelet/lipgloss/commit/bafb8fd00083f5f8f25badf85e19cae9162d8ce0): feat(tree): hide children ([#&#8203;460](https://redirect.github.com/charmbracelet/lipgloss/issues/460)) ([@&#8203;bashbunni](https://redirect.github.com/bashbunni)) - [`9942166`](https://redirect.github.com/charmbracelet/lipgloss/commit/99421664af19e293501170dc3971acf569e9cead): feat: style ranges ([#&#8203;458](https://redirect.github.com/charmbracelet/lipgloss/issues/458)) ([@&#8203;caarlos0](https://redirect.github.com/caarlos0)) ##### Bug fixes - [`9500f10`](https://redirect.github.com/charmbracelet/lipgloss/commit/9500f10a6b9145b4d3ed9b317ad952ca162dbde3): fix(table): ensure we're passing the right row index to `styleFunc` ([@&#8203;andreynering](https://redirect.github.com/andreynering)) - [`7b191c5`](https://redirect.github.com/charmbracelet/lipgloss/commit/7b191c57d42d0bb7e73873719ad5d572aced14ec): fix(test): make table wrapping tests use golden files ([@&#8203;bashbunni](https://redirect.github.com/bashbunni)) - [`9b8304f`](https://redirect.github.com/charmbracelet/lipgloss/commit/9b8304fa373da3258031a13e2ad19b0d1ec264eb): fix: border size getters when implicit borders are present ([#&#8203;411](https://redirect.github.com/charmbracelet/lipgloss/issues/411)) ([@&#8203;meowgorithm](https://redirect.github.com/meowgorithm)) - [`022e967`](https://redirect.github.com/charmbracelet/lipgloss/commit/022e96717265bb4650a770f5abf2b3c5fcc85e58): fix: range test ([@&#8203;caarlos0](https://redirect.github.com/caarlos0)) ##### Other work - [`ecc1bd0`](https://redirect.github.com/charmbracelet/lipgloss/commit/ecc1bd014d511a81d0f46628c9c177f299231d6a): fix: comment on min func in utils ([@&#8203;derezzolution](https://redirect.github.com/derezzolution)) - [`5cd2074`](https://redirect.github.com/charmbracelet/lipgloss/commit/5cd2074b01fe997f9ce16189dbe39680c11f96d0): style(table): improve naming of the resizer functions ([@&#8203;andreynering](https://redirect.github.com/andreynering)) - [`9cfb7dd`](https://redirect.github.com/charmbracelet/lipgloss/commit/9cfb7dd7998c648cbe502b96bac83ddb8ca2a38c): test(table): check truncation logic for overflow and nowrap ([@&#8203;bashbunni](https://redirect.github.com/bashbunni)) - [`2aa2eb0`](https://redirect.github.com/charmbracelet/lipgloss/commit/2aa2eb0349ddb873dcd4548a642cc3b3e6809d90): test(table): test wrapping cell styles ([@&#8203;bashbunni](https://redirect.github.com/bashbunni)) - [`ca67d0f`](https://redirect.github.com/charmbracelet/lipgloss/commit/ca67d0fd5d54e4b171c3c1867e6e00d82e34183d): chore(lint): apply De Morgans law to the if statement ([@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas)) - [`0fbb070`](https://redirect.github.com/charmbracelet/lipgloss/commit/0fbb0700f064a7b7b2821b20e35e8d2fd5add307): chore(lint): fix lint ignore comments ([@&#8203;andreynering](https://redirect.github.com/andreynering)) *** <a href="https://charm.sh/"><img alt="The Charm logo" src="https://stuff.charm.sh/charm-badge.jpg" width="400"></a> Thoughts? Questions? We love hearing from you. Feel free to reach out on [Twitter](https://twitter.com/charmcli), [The Fediverse](https://mastodon.technology/@&#8203;charm), or on [Discord](https://charm.sh/chat). </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 6am on wednesday" in timezone Australia/Sydney, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/google/osv.dev). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjk3LjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==-->
1 parent da536d8 commit 329bc85

File tree

12 files changed

+119
-103
lines changed

12 files changed

+119
-103
lines changed

vulnfeeds/cmd/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.25.0-alpine@sha256:f18a072054848d87a8077455f0ac8a25886f2397f88bfdd222d6fafbb5bba440 AS GO_BUILD
15+
FROM golang:1.25.1-alpine@sha256:b6ed3fd0452c0e9bcdef5597f29cc1418f61672e9d3a2f55bf02e7222c014abd AS GO_BUILD
1616

1717
RUN mkdir /src
1818
WORKDIR /src
@@ -25,7 +25,7 @@ COPY ./ /src/
2525
RUN go build -o alpine-osv ./cmd/alpine/
2626

2727

28-
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:alpine@sha256:af3dac7ae5f9d28fee1c2ec738f616467a99f9f23bc31a49bb8a297af5f1eabf
28+
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:alpine@sha256:cf7a564b01721aeff7fa6128569ff1fa1cd7b47538fb034228fbdb99b9b07835
2929

3030
WORKDIR /root/
3131
COPY --from=GO_BUILD /src/alpine-osv ./

vulnfeeds/cmd/combine-to-osv/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.25.0-alpine@sha256:f18a072054848d87a8077455f0ac8a25886f2397f88bfdd222d6fafbb5bba440 AS GO_BUILD
15+
FROM golang:1.25.1-alpine@sha256:b6ed3fd0452c0e9bcdef5597f29cc1418f61672e9d3a2f55bf02e7222c014abd AS GO_BUILD
1616

1717
RUN mkdir /src
1818
WORKDIR /src
@@ -26,7 +26,7 @@ RUN go build -o combine-to-osv ./cmd/combine-to-osv/
2626
RUN go build -o download-cves ./cmd/download-cves/
2727

2828

29-
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:alpine@sha256:af3dac7ae5f9d28fee1c2ec738f616467a99f9f23bc31a49bb8a297af5f1eabf
29+
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:alpine@sha256:cf7a564b01721aeff7fa6128569ff1fa1cd7b47538fb034228fbdb99b9b07835
3030
RUN apk --no-cache add jq
3131

3232
WORKDIR /root/

vulnfeeds/cmd/cpe-repo-gen/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.25.0-alpine@sha256:f18a072054848d87a8077455f0ac8a25886f2397f88bfdd222d6fafbb5bba440 AS GO_BUILD
15+
FROM golang:1.25.1-alpine@sha256:b6ed3fd0452c0e9bcdef5597f29cc1418f61672e9d3a2f55bf02e7222c014abd AS GO_BUILD
1616

1717
RUN mkdir /src
1818
WORKDIR /src
@@ -24,7 +24,7 @@ RUN go mod download
2424
COPY ./ /src/
2525
RUN CGO_ENABLED=0 go build -o cpe-repo-gen ./cmd/cpe-repo-gen
2626

27-
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:alpine@sha256:af3dac7ae5f9d28fee1c2ec738f616467a99f9f23bc31a49bb8a297af5f1eabf
27+
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:alpine@sha256:cf7a564b01721aeff7fa6128569ff1fa1cd7b47538fb034228fbdb99b9b07835
2828

2929
RUN apk add --no-cache unzip
3030

vulnfeeds/cmd/cve-bulk-converter/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.25.0-alpine@sha256:f18a072054848d87a8077455f0ac8a25886f2397f88bfdd222d6fafbb5bba440 AS go_build
15+
FROM golang:1.25.1-alpine@sha256:b6ed3fd0452c0e9bcdef5597f29cc1418f61672e9d3a2f55bf02e7222c014abd AS go_build
1616

1717
RUN mkdir /src
1818
WORKDIR /src
@@ -25,7 +25,7 @@ RUN go mod download && go mod verify
2525
COPY ./ /src/
2626
RUN go build -o cve-bulk-converter ./cmd/cve-bulk-converter/
2727

28-
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:alpine@sha256:f2b7bf7556ac1d266c3b4563507d3c7aec1464ec3f6d3cbd114f01011d02f1c3
28+
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:alpine@sha256:cf7a564b01721aeff7fa6128569ff1fa1cd7b47538fb034228fbdb99b9b07835
2929
RUN apk --no-cache add jq
3030

3131
WORKDIR /root/

vulnfeeds/cmd/debian-copyright-mirror/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:alpine@sha256:af3dac7ae5f9d28fee1c2ec738f616467a99f9f23bc31a49bb8a297af5f1eabf
15+
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:alpine@sha256:cf7a564b01721aeff7fa6128569ff1fa1cd7b47538fb034228fbdb99b9b07835
1616

1717
RUN apk add py3-yaml
1818

vulnfeeds/cmd/debian/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.25.0-alpine@sha256:f18a072054848d87a8077455f0ac8a25886f2397f88bfdd222d6fafbb5bba440 AS GO_BUILD
15+
FROM golang:1.25.1-alpine@sha256:b6ed3fd0452c0e9bcdef5597f29cc1418f61672e9d3a2f55bf02e7222c014abd AS GO_BUILD
1616

1717
RUN mkdir /src
1818
WORKDIR /src
@@ -25,7 +25,7 @@ COPY ./ /src/
2525
RUN go build -o debian ./cmd/debian/
2626

2727

28-
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:alpine@sha256:af3dac7ae5f9d28fee1c2ec738f616467a99f9f23bc31a49bb8a297af5f1eabf
28+
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:alpine@sha256:cf7a564b01721aeff7fa6128569ff1fa1cd7b47538fb034228fbdb99b9b07835
2929

3030
WORKDIR /root/
3131
COPY --from=GO_BUILD /src/debian ./

vulnfeeds/cmd/download-cves/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.25.0-alpine@sha256:f18a072054848d87a8077455f0ac8a25886f2397f88bfdd222d6fafbb5bba440 AS GO_BUILD
15+
FROM golang:1.25.1-alpine@sha256:b6ed3fd0452c0e9bcdef5597f29cc1418f61672e9d3a2f55bf02e7222c014abd AS GO_BUILD
1616

1717
RUN mkdir /src
1818
WORKDIR /src
@@ -24,7 +24,7 @@ RUN go mod download
2424
COPY ./ /src/
2525
RUN go build -o download-cves ./cmd/download-cves/
2626

27-
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:alpine@sha256:af3dac7ae5f9d28fee1c2ec738f616467a99f9f23bc31a49bb8a297af5f1eabf
27+
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:alpine@sha256:cf7a564b01721aeff7fa6128569ff1fa1cd7b47538fb034228fbdb99b9b07835
2828

2929
WORKDIR /usr/local/bin
3030
COPY --from=GO_BUILD /src/download-cves ./

vulnfeeds/cmd/nvd-cve-osv/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.25.0-alpine@sha256:f18a072054848d87a8077455f0ac8a25886f2397f88bfdd222d6fafbb5bba440 AS GO_BUILD
15+
FROM golang:1.25.1-alpine@sha256:b6ed3fd0452c0e9bcdef5597f29cc1418f61672e9d3a2f55bf02e7222c014abd AS GO_BUILD
1616

1717
WORKDIR /go/src
1818

@@ -22,7 +22,7 @@ RUN go mod download && go mod verify
2222
COPY . .
2323
RUN CGO_ENABLED=0 go build -v -o /usr/local/bin ./cmd/nvd-cve-osv ./cmd/download-cves
2424

25-
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:alpine@sha256:af3dac7ae5f9d28fee1c2ec738f616467a99f9f23bc31a49bb8a297af5f1eabf
25+
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:alpine@sha256:cf7a564b01721aeff7fa6128569ff1fa1cd7b47538fb034228fbdb99b9b07835
2626
RUN apk --no-cache add jq
2727

2828
COPY --from=GO_BUILD /usr/local/bin/ ./usr/local/bin/

vulnfeeds/go.mod

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ require (
77
cloud.google.com/go/storage v1.56.2
88
github.com/aquasecurity/go-pep440-version v0.0.1
99
github.com/atombender/go-jsonschema v0.20.0
10-
github.com/charmbracelet/lipgloss v1.0.0
10+
github.com/charmbracelet/lipgloss v1.1.0
1111
github.com/go-git/go-git/v5 v5.16.2
1212
github.com/google/go-cmp v0.7.0
1313
github.com/google/osv-scanner v1.9.2
1414
github.com/knqyf263/go-cpe v0.0.0-20230627041855-cb0794d06872
15-
github.com/ossf/osv-schema/bindings/go v0.0.0-20250902063920-695987a6b7da
15+
github.com/ossf/osv-schema/bindings/go v0.0.0-20250918060136-f1e868d0beb6
1616
github.com/sethvargo/go-retry v0.3.0
1717
gopkg.in/dnaeon/go-vcr.v4 v4.0.5
1818
gopkg.in/yaml.v2 v2.4.0
@@ -35,7 +35,10 @@ require (
3535
github.com/aquasecurity/go-version v0.0.1 // indirect
3636
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
3737
github.com/cespare/xxhash/v2 v2.3.0 // indirect
38-
github.com/charmbracelet/x/ansi v0.4.5 // indirect
38+
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect
39+
github.com/charmbracelet/x/ansi v0.8.0 // indirect
40+
github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd // indirect
41+
github.com/charmbracelet/x/term v0.2.1 // indirect
3942
github.com/cloudflare/circl v1.6.1 // indirect
4043
github.com/cncf/xds/go v0.0.0-20250501225837-2ac532fd4443 // indirect
4144
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
@@ -58,7 +61,8 @@ require (
5861
github.com/kevinburke/ssh_config v1.2.0 // indirect
5962
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
6063
github.com/mattn/go-isatty v0.0.20 // indirect
61-
github.com/muesli/termenv v0.15.3-0.20240618155329-98d742f6907a // indirect
64+
github.com/mattn/go-runewidth v0.0.16 // indirect
65+
github.com/muesli/termenv v0.16.0 // indirect
6266
github.com/package-url/packageurl-go v0.1.3 // indirect
6367
github.com/pjbgf/sha1cd v0.3.2 // indirect
6468
github.com/pkg/errors v0.9.1 // indirect
@@ -68,6 +72,7 @@ require (
6872
github.com/skeema/knownhosts v1.3.1 // indirect
6973
github.com/spiffe/go-spiffe/v2 v2.5.0 // indirect
7074
github.com/xanzy/ssh-agent v0.3.3 // indirect
75+
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
7176
github.com/zeebo/errs v1.4.0 // indirect
7277
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
7378
go.opentelemetry.io/contrib/detectors/gcp v1.36.0 // indirect

vulnfeeds/go.sum

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,16 @@ github.com/aymanbagabas/go-osc52/v2 v2.0.1 h1:HwpRHbFMcZLEVr42D4p7XBqjyuxQH5SMiE
5151
github.com/aymanbagabas/go-osc52/v2 v2.0.1/go.mod h1:uYgXzlJ7ZpABp8OJ+exZzJJhRNQ2ASbcXHWsFqH8hp8=
5252
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
5353
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
54-
github.com/charmbracelet/lipgloss v1.0.0 h1:O7VkGDvqEdGi93X+DeqsQ7PKHDgtQfF8j8/O2qFMQNg=
55-
github.com/charmbracelet/lipgloss v1.0.0/go.mod h1:U5fy9Z+C38obMs+T+tJqst9VGzlOYGj4ri9reL3qUlo=
56-
github.com/charmbracelet/x/ansi v0.4.5 h1:LqK4vwBNaXw2AyGIICa5/29Sbdq58GbGdFngSexTdRM=
57-
github.com/charmbracelet/x/ansi v0.4.5/go.mod h1:dk73KoMTT5AX5BsX0KrqhsTqAnhZZoCBjs7dGWp4Ktw=
54+
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc h1:4pZI35227imm7yK2bGPcfpFEmuY1gc2YSTShr4iJBfs=
55+
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc/go.mod h1:X4/0JoqgTIPSFcRA/P6INZzIuyqdFY5rm8tb41s9okk=
56+
github.com/charmbracelet/lipgloss v1.1.0 h1:vYXsiLHVkK7fp74RkV7b2kq9+zDLoEU4MZoFqR/noCY=
57+
github.com/charmbracelet/lipgloss v1.1.0/go.mod h1:/6Q8FR2o+kj8rz4Dq0zQc3vYf7X+B0binUUBwA0aL30=
58+
github.com/charmbracelet/x/ansi v0.8.0 h1:9GTq3xq9caJW8ZrBTe0LIe2fvfLR/bYXKTx2llXn7xE=
59+
github.com/charmbracelet/x/ansi v0.8.0/go.mod h1:wdYl/ONOLHLIVmQaxbIYEC/cRKOQyjTkowiI4blgS9Q=
60+
github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd h1:vy0GVL4jeHEwG5YOXDmi86oYw2yuYUGqz6a8sLwg0X8=
61+
github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd/go.mod h1:xe0nKWGd3eJgtqZRaN9RjMtK7xUYchjzPr7q6kcvCCs=
62+
github.com/charmbracelet/x/term v0.2.1 h1:AQeHeLZ1OqSXhrAWpYUtZyX1T3zVxfpZuEQMIQaGIAQ=
63+
github.com/charmbracelet/x/term v0.2.1/go.mod h1:oQ4enTYFV7QN4m0i9mzHrViD7TQKvNEEkHUMCmsxdUg=
5864
github.com/cloudflare/circl v1.6.1 h1:zqIqSPIndyBh1bjLVVDHMPpVKqp8Su/V+6MeDzzQBQ0=
5965
github.com/cloudflare/circl v1.6.1/go.mod h1:uddAzsPgqdMAYatqJ0lsjX1oECcQLIlRpzZh3pJrofs=
6066
github.com/cncf/xds/go v0.0.0-20250501225837-2ac532fd4443 h1:aQ3y1lwWyqYPiWZThqv1aFbZMiM9vblcSArJRf2Irls=
@@ -141,12 +147,14 @@ github.com/maruel/natural v1.1.1 h1:Hja7XhhmvEFhcByqDoHz9QZbkWey+COd9xWfCfn1ioo=
141147
github.com/maruel/natural v1.1.1/go.mod h1:v+Rfd79xlw1AgVBjbO0BEQmptqb5HvL/k9GRHB7ZKEg=
142148
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
143149
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
144-
github.com/muesli/termenv v0.15.3-0.20240618155329-98d742f6907a h1:2MaM6YC3mGu54x+RKAA6JiFFHlHDY1UbkxqppT7wYOg=
145-
github.com/muesli/termenv v0.15.3-0.20240618155329-98d742f6907a/go.mod h1:hxSnBBYLK21Vtq/PHd0S2FYCxBXzBua8ov5s1RobyRQ=
150+
github.com/mattn/go-runewidth v0.0.16 h1:E5ScNMtiwvlvB5paMFdw9p4kSQzbXFikJ5SQO6TULQc=
151+
github.com/mattn/go-runewidth v0.0.16/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
152+
github.com/muesli/termenv v0.16.0 h1:S5AlUN9dENB57rsbnkPyfdGuWIlkmzJjbFf0Tf5FWUc=
153+
github.com/muesli/termenv v0.16.0/go.mod h1:ZRfOIKPFDYQoDFF4Olj7/QJbW60Ol/kL1pU3VfY/Cnk=
146154
github.com/onsi/gomega v1.34.1 h1:EUMJIKUjM8sKjYbtxQI9A4z2o+rruxnzNvpknOXie6k=
147155
github.com/onsi/gomega v1.34.1/go.mod h1:kU1QgUvBDLXBJq618Xvm2LUX6rSAfRaFRTcdOeDLwwY=
148-
github.com/ossf/osv-schema/bindings/go v0.0.0-20250902063920-695987a6b7da h1:qGkE7vUL5650h3E8ncrZepDjgU166LlVXhNrmZXYFlk=
149-
github.com/ossf/osv-schema/bindings/go v0.0.0-20250902063920-695987a6b7da/go.mod h1:lILztSxHU7VsdlYqCnwgxSDBhbXMf7iEQWtldJCDXPo=
156+
github.com/ossf/osv-schema/bindings/go v0.0.0-20250918060136-f1e868d0beb6 h1:14ZiBIrV43JJ40YIqxi2RWbxnPoZmPCfnZmyLzPSSEs=
157+
github.com/ossf/osv-schema/bindings/go v0.0.0-20250918060136-f1e868d0beb6/go.mod h1:/ypmJBpoMvgNp4g93snzyYoyIPmZfLdSiGn/Vq07Dfo=
150158
github.com/package-url/packageurl-go v0.1.3 h1:4juMED3hHiz0set3Vq3KeQ75KD1avthoXLtmE3I0PLs=
151159
github.com/package-url/packageurl-go v0.1.3/go.mod h1:nKAWB8E6uk1MHqiS/lQb9pYBGH2+mdJ2PJc2s50dQY0=
152160
github.com/pjbgf/sha1cd v0.3.2 h1:a9wb0bp1oC2TGwStyn0Umc/IGKQnEgF0vVaZ8QF8eo4=
@@ -159,6 +167,7 @@ github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10/go.mod h1
159167
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
160168
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U=
161169
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
170+
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
162171
github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ=
163172
github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
164173
github.com/rogpeppe/go-internal v1.14.1 h1:UQB4HGPB6osV0SQTLymcB4TgvyWu6ZyliaW0tI/otEQ=
@@ -187,6 +196,8 @@ github.com/tidwall/sjson v1.2.5 h1:kLy8mja+1c9jlljvWTlSazM7cKDRfJuR/bOJhcY5NcY=
187196
github.com/tidwall/sjson v1.2.5/go.mod h1:Fvgq9kS/6ociJEDnK0Fk1cpYF4FIW6ZF7LAe+6jwd28=
188197
github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM=
189198
github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw=
199+
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e h1:JVG44RsyaB9T2KIHavMF/ppJZNG9ZpyihvCd0w101no=
200+
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e/go.mod h1:RbqR21r5mrJuqunuUZ/Dhy/avygyECGrLceyNeo4LiM=
190201
github.com/zeebo/errs v1.4.0 h1:XNdoD/RRMKP7HD0UhJnIzUy74ISdGGxURlYG8HSWSfM=
191202
github.com/zeebo/errs v1.4.0/go.mod h1:sgbWHsvVuTPHcqJJGQ1WhI5KbWlHYz+2+2C/LSEtCw4=
192203
go.opentelemetry.io/auto/sdk v1.1.0 h1:cH53jehLUN6UFLY71z+NDOiNJqDdPRaXzTel0sJySYA=

0 commit comments

Comments
 (0)