Bump the go_modules group across 6 directories with 7 updates
Bumps the go_modules group with 1 update in the /base/cvd/cuttlefish/host/commands/cvd/cli/parser/golang directory: google.golang.org/protobuf. Bumps the go_modules group with 2 updates in the /e2etests directory: github.com/docker/docker and golang.org/x/crypto. Bumps the go_modules group with 3 updates in the /frontend/src/host_orchestrator directory: google.golang.org/protobuf, golang.org/x/net and google.golang.org/grpc. Bumps the go_modules group with 2 updates in the /frontend/src/libhoclient directory: golang.org/x/crypto and golang.org/x/net. Bumps the go_modules group with 3 updates in the /frontend/src/liboperator directory: google.golang.org/protobuf, golang.org/x/net and google.golang.org/grpc. Bumps the go_modules group with 3 updates in the /frontend/src/operator directory: google.golang.org/protobuf, golang.org/x/net and google.golang.org/grpc.
Updates google.golang.org/protobuf from 1.32.0 to 1.33.0
Updates github.com/docker/docker from 25.0.7+incompatible to 28.0.0+incompatible
Release notes
Sourced from github.com/docker/docker's releases.
v28.0.0
28.0.0
For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:
- docker/cli, 28.0.0 milestone
- moby/moby, 28.0.0 milestone
- Deprecated and removed features, see Deprecated Features.
- Changes to the Engine API, see API version history.
New
- Add ability to mount an image inside a container via
--mount type=image. moby/moby#48798
- You can also specify
--mount type=image,image-subpath=[subpath],...option to mount a specific path from the image. docker/cli#5755docker images --treenow shows metadata badges. docker/cli#5744docker load,docker save, anddocker historynow support a--platformflag allowing you to choose a specific platform for single-platform operations on multi-platform images. docker/cli#5331- Add
OOMScoreAdjtodocker service createanddocker stack. docker/cli#5145docker buildx prunenow supportsreserved-space,max-used-space,min-free-spaceandkeep-bytesfilters. moby/moby#48720- Windows: Add support for running containerd as a child process of the daemon, instead of using a system-installed containerd. moby/moby#47955
Networking
- The
docker-proxybinary has been updated, older versions will not work with the updateddockerd. moby/moby#48132
- Close a window in which the userland proxy (
docker-proxy) could accept TCP connections, that would then fail afteriptablesNAT rules were set up.- The executable
rootlesskit-docker-proxyis no longer used, it has been removed from the build and distribution.- DNS nameservers read from the host's
/etc/resolv.confare now always accessed from the host's network namespace. moby/moby#48290
- When the host's
/etc/resolv.confcontains no nameservers and there are no--dnsoverrides, Google's DNS servers are no longer used, apart from by the default bridge network and in build containers.- Container interfaces in bridge and macvlan networks now use randomly generated MAC addresses. moby/moby#48808
- Gratuitous ARP / Neighbour Advertisement messages will be sent when the interfaces are started so that, when IP addresses are reused, they're associated with the newly generated MAC address.
- IPv6 addresses in the default bridge network are now IPAM-assigned, rather than being derived from the MAC address.
- The deprecated OCI
prestarthook is now only used by build containers. For other containers, network interfaces are added to the network namespace after task creation is complete, before the container task is started. moby/moby#47406- Add a new
gw-priorityoption todocker run,docker container create, anddocker network connect. This option will be used by the Engine to determine which network provides the default gateway for a container. Ondocker run, this option is only available through the extended--networksyntax. docker/cli#5664- Add a new netlabel
com.docker.network.endpoint.ifnameto customize the interface name used when connecting a container to a network. It's supported by all built-in network drivers on Linux. moby/moby#49155
- When a container is created with multiple networks specified, there's no guarantee on the order networks will be connected to the container. So, if a custom interface name uses the same prefix as the auto-generated names, for example
eth, the container might fail to start.- The recommended practice is to use a different prefix, for example
en0, or a numerical suffix high enough to never collide, for exampleeth100.- This label can be specified on
docker network connectvia the--driver-optflag, for exampledocker network connect --driver-opt=com.docker.network.endpoint.ifname=foobar ….- Or via the long-form
--networkflag ondocker run, for exampledocker run --network=name=bridge,driver-opt=com.docker.network.endpoint.ifname=foobar …- If a custom network driver reports capability
GwAllocCheckerthen, before a network is created, it will get aGwAllocCheckerRequestwith the network's options. The custom driver may then reply that no gateway IP address should be allocated. moby/moby#49372Port publishing in bridge networks
dockerdnow requiresipsetsupport in the Linux kernel. moby/moby#48596
- The
iptablesandip6tablesrules used to implement port publishing and network isolation have been extensively modified. This enables some of the following functional changes, and is a first step in refactoring to enable nativenftablessupport in a future release. moby/moby#48815- If it becomes necessary to downgrade to an earlier version of the daemon, some manual cleanup of the new rules will be necessary. The simplest and surest approach is to reboot the host, or use
iptables -Fandip6tables -Fto flush all existingiptablesrules from thefiltertable before starting the older version of the daemon. When that is not possible, run the following commands as root:
iptables -D FORWARD -m set --match-set docker-ext-bridges-v4 dst -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT; ip6tables -D FORWARD -m set --match-set docker-ext-bridges-v6 dst -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPTiptables -D FORWARD -m set --match-set docker-ext-bridges-v4 dst -j DOCKER; ip6tables -D FORWARD -m set --match-set docker-ext-bridges-v6 dst -j DOCKER- If you were previously running with the iptables filter-FORWARD policy set to
ACCEPTand need to restore access to unpublished ports, also delete per-bridge-network rules from theDOCKERchains. For example,iptables -D DOCKER ! -i docker0 -o docker0 -j DROP.- Fix a security issue that was allowing remote hosts to connect directly to a container on its published ports. moby/moby#49325
- Fix a security issue that was allowing neighbor hosts to connect to ports mapped on a loopback address. moby/moby#49325
... (truncated)
Commits
af898abMerge pull request #49495 from vvoland/update-buildkitd67f035vendor: github.com/moby/buildkit v0.20.000ab386Merge pull request #49491 from vvoland/update-buildkit1fde8c4builder-next: fix cdi managercde9f07vendor: github.com/moby/buildkit v0.20.0-rc389e1429Merge pull request #49490 from thaJeztah/dockerfile_lintingb2b5590Dockerfile: fix linting warnings62bc597Merge pull request #49480 from thaJeztah/docs_api_1.48670cd81Merge pull request #49485 from vvoland/c8d-list-panica3628f3docs/api: add documentation for API v1.48- Additional commits viewable in compare view
Updates golang.org/x/crypto from 0.35.0 to 0.41.0
Commits
ef5341bgo.mod: update golang.org/x dependenciesb999374acme: fix pebble subprocess output data racec247deax509roots/fallback: store bundle certs directly in DER1fda731acme: increase pebble test waitForServer attempts1b4c3d2x509roots/fallback: update bundleb903b53acme: capture pebble test subprocess stdout/stderr459a9dbgo.mod: update golang.org/x dependencies74e709assh: add AlgorithmNegotiationErrorb3790b8acme: fix TLSALPN01ChallengeCert for IP address identifiers1dc4269acme: add Pebble integration testing- Additional commits viewable in compare view
Updates golang.org/x/net from 0.30.0 to 0.42.0
Commits
- See full diff in compare view
Updates golang.org/x/sys from 0.30.0 to 0.35.0
Commits
5b936e1unix/linux: update to Linux kernel 6.16, Go to 1.24.53a82703unix: remove redundant xnu version check for {p}readv/{p}writev9920300unix: add missing nft conntrack constantsad4e0fcunix: remove redundant word in comment084ad87unix: fix //sys decl after CL 548795751c3c6unix: add missing NFT_PAYLOAD_* consts on linux0c740ccunix: update Go to 1.24.3d62d31cunix: update Linux constants and types to v6.143d9a6b8windows: add WSADuplicateSocketc0a9559cpu: add crypto extensions detection for riscv64- Additional commits viewable in compare view
Updates google.golang.org/protobuf from 1.30.0 to 1.33.0
Updates golang.org/x/net from 0.0.0-20200822124328-c89045814202 to 0.38.0
Commits
- See full diff in compare view
Updates golang.org/x/sys from 0.0.0-20200323222414-85ca7c5b95cd to 0.31.0
Commits
5b936e1unix/linux: update to Linux kernel 6.16, Go to 1.24.53a82703unix: remove redundant xnu version check for {p}readv/{p}writev9920300unix: add missing nft conntrack constantsad4e0fcunix: remove redundant word in comment084ad87unix: fix //sys decl after CL 548795751c3c6unix: add missing NFT_PAYLOAD_* consts on linux0c740ccunix: update Go to 1.24.3d62d31cunix: update Linux constants and types to v6.143d9a6b8windows: add WSADuplicateSocketc0a9559cpu: add crypto extensions detection for riscv64- Additional commits viewable in compare view
Updates golang.org/x/text from 0.3.0 to 0.23.0
Commits
566b44fgo.mod: update golang.org/x dependenciesd5156dacollate/build: do not use println in tests221d88cx/text: fix scientific notation by removing extraneous spacesb18c107internal/export/unicode: change C comment to mention unassigned code points835f8aclanguage: use a more straightforward return valueae68efbinternal/export/unicode: add CategoryAliases, Cn, and LC518d9c0all: upgrade go directive to at least 1.23.0 [generated]3b64043go.mod: update golang.org/x dependencies1e59086message/pipeline: add two Unalias callsd42948ego.mod: update golang.org/x dependencies- Additional commits viewable in compare view
Updates google.golang.org/grpc from 1.40.0 to 1.56.3
Release notes
Sourced from google.golang.org/grpc's releases.
Release 1.56.3
Security
server: prohibit more than MaxConcurrentStreams handlers from running at once (CVE-2023-44487)
In addition to this change, applications should ensure they do not leave running tasks behind related to the RPC before returning from method handlers, or should enforce appropriate limits on any such work.
Release 1.56.2
- status: To fix a panic,
status.FromErrornow returns an error withcodes.Unknownwhen the error implements theGRPCStatus()method, and callingGRPCStatus()returnsnil. (#6374)Release 1.56.1
- client: handle empty address lists correctly in addrConn.updateAddrs
Release 1.56.0
New Features
- client: support channel idleness using
WithIdleTimeoutdial option (#6263)
- This feature is currently disabled by default, but will be enabled with a 30 minute default in the future.
- client: when using pickfirst, keep channel state in TRANSIENT_FAILURE until it becomes READY (gRFC A62) (#6306)
- xds: Add support for Custom LB Policies (gRFC A52) (#6224)
- xds: support pick_first Custom LB policy (gRFC A62) (#6314) (#6317)
- client: add support for pickfirst address shuffling (gRFC A62) (#6311)
- xds: Add support for String Matcher Header Matcher in RDS (#6313)
- xds/outlierdetection: Add Channelz Logger to Outlier Detection LB (#6145)
- Special Thanks:
@s-matyukevich- xds: enable RLS in xDS by default (#6343)
- orca: add support for application_utilization field and missing range checks on several metrics setters
- balancer/weightedroundrobin: add new LB policy for balancing between backends based on their load reports (gRFC A58) (#6241)
- authz: add conversion of json to RBAC Audit Logging config (#6192)
- authz: add support for stdout logger (#6230 and #6298)
- authz: support customizable audit functionality for authorization policy (#6192 #6230 #6298 #6158 #6304 and #6225)
Bug Fixes
- orca: fix a race at startup of out-of-band metric subscriptions that would cause the report interval to request 0 (#6245)
- xds/xdsresource: Fix Outlier Detection Config Handling and correctly set xDS Defaults (#6361)
- xds/outlierdetection: Fix Outlier Detection Config Handling by setting defaults in ParseConfig() (#6361)
API Changes
- orca: allow a ServerMetricsProvider to be passed to the ORCA service and ServerOption (#6223)
Release 1.55.1
- status: To fix a panic,
status.FromErrornow returns an error withcodes.Unknownwhen the error implements theGRPCStatus()method, and callingGRPCStatus()returnsnil. (#6374)Release 1.55.0
Behavior Changes
... (truncated)
Commits
1055b48Update version.go to 1.56.3 (#6713)5efd7bdserver: prohibit more than MaxConcurrentStreams handlers from running at once...bd1f038Upgrade version.go to 1.56.3-dev (#6434)faab873Update version.go to v1.56.2 (#6432)6b0b291status: fix panic when servers return a wrapped error with status OK (#6374) ...ed56401[PSM interop] Don't fail target if sub-target already failed (#6390) (#6405)cd6a794Update version.go to v1.56.2-dev (#6387)5b67e5eUpdate version.go to v1.56.1 (#6386)d0f5150client: handle empty address lists correctly in addrConn.updateAddrs (#6354) ...997c1eaChange version to 1.56.1-dev (#6345)- Additional commits viewable in compare view
Updates golang.org/x/crypto from 0.21.0 to 0.35.0
Commits
ef5341bgo.mod: update golang.org/x dependenciesb999374acme: fix pebble subprocess output data racec247deax509roots/fallback: store bundle certs directly in DER1fda731acme: increase pebble test waitForServer attempts1b4c3d2x509roots/fallback: update bundleb903b53acme: capture pebble test subprocess stdout/stderr459a9dbgo.mod: update golang.org/x dependencies74e709assh: add AlgorithmNegotiationErrorb3790b8acme: fix TLSALPN01ChallengeCert for IP address identifiers1dc4269acme: add Pebble integration testing- Additional commits viewable in compare view
Updates golang.org/x/net from 0.23.0 to 0.38.0
Commits
- See full diff in compare view
Updates golang.org/x/sys from 0.30.0 to 0.31.0
Commits
5b936e1unix/linux: update to Linux kernel 6.16, Go to 1.24.53a82703unix: remove redundant xnu version check for {p}readv/{p}writev9920300unix: add missing nft conntrack constantsad4e0fcunix: remove redundant word in comment084ad87unix: fix //sys decl after CL 548795751c3c6unix: add missing NFT_PAYLOAD_* consts on linux0c740ccunix: update Go to 1.24.3d62d31cunix: update Linux constants and types to v6.143d9a6b8windows: add WSADuplicateSocketc0a9559cpu: add crypto extensions detection for riscv64- Additional commits viewable in compare view
Updates google.golang.org/protobuf from 1.30.0 to 1.33.0
Updates golang.org/x/net from 0.0.0-20200822124328-c89045814202 to 0.38.0
Commits
- See full diff in compare view
Updates golang.org/x/sys from 0.0.0-20200323222414-85ca7c5b95cd to 0.31.0
Commits
5b936e1unix/linux: update to Linux kernel 6.16, Go to 1.24.53a82703unix: remove redundant xnu version check for {p}readv/{p}writev9920300unix: add missing nft conntrack constantsad4e0fcunix: remove redundant word in comment084ad87unix: fix //sys decl after CL 548795751c3c6unix: add missing NFT_PAYLOAD_* consts on linux0c740ccunix: update Go to 1.24.3d62d31cunix: update Linux constants and types to v6.143d9a6b8windows: add WSADuplicateSocketc0a9559cpu: add crypto extensions detection for riscv64- Additional commits viewable in compare view
Updates golang.org/x/text from 0.3.0 to 0.23.0
Commits
566b44fgo.mod: update golang.org/x dependenciesd5156dacollate/build: do not use println in tests221d88cx/text: fix scientific notation by removing extraneous spacesb18c107internal/export/unicode: change C comment to mention unassigned code points835f8aclanguage: use a more straightforward return valueae68efbinternal/export/unicode: add CategoryAliases, Cn, and LC518d9c0all: upgrade go directive to at least 1.23.0 [generated]3b64043go.mod: update golang.org/x dependencies1e59086message/pipeline: add two Unalias callsd42948ego.mod: update golang.org/x dependencies- Additional commits viewable in compare view
Updates google.golang.org/grpc from 1.40.0 to 1.56.3
Release notes
Sourced from google.golang.org/grpc's releases.
Release 1.56.3
Security
server: prohibit more than MaxConcurrentStreams handlers from running at once (CVE-2023-44487)
In addition to this change, applications should ensure they do not leave running tasks behind related to the RPC before returning from method handlers, or should enforce appropriate limits on any such work.
Release 1.56.2
- status: To fix a panic,
status.FromErrornow returns an error withcodes.Unknownwhen the error implements theGRPCStatus()method, and callingGRPCStatus()returnsnil. (#6374)Release 1.56.1
- client: handle empty address lists correctly in addrConn.updateAddrs
Release 1.56.0
New Features
- client: support channel idleness using
WithIdleTimeoutdial option (#6263)
- This feature is currently disabled by default, but will be enabled with a 30 minute default in the future.
- client: when using pickfirst, keep channel state in TRANSIENT_FAILURE until it becomes READY (gRFC A62) (#6306)
- xds: Add support for Custom LB Policies (gRFC A52) (#6224)
- xds: support pick_first Custom LB policy (gRFC A62) (#6314) (#6317)
- client: add support for pickfirst address shuffling (gRFC A62) (#6311)
- xds: Add support for String Matcher Header Matcher in RDS (#6313)
- xds/outlierdetection: Add Channelz Logger to Outlier Detection LB (#6145)
- Special Thanks:
@s-matyukevich- xds: enable RLS in xDS by default (#6343)
- orca: add support for application_utilization field and missing range checks on several metrics setters
- balancer/weightedroundrobin: add new LB policy for balancing between backends based on their load reports (gRFC A58) (#6241)
- authz: add conversion of json to RBAC Audit Logging config (#6192)
- authz: add support for stdout logger (#6230 and #6298)
- authz: support customizable audit functionality for authorization policy (#6192 #6230 #6298 #6158 #6304 and #6225)
Bug Fixes
- orca: fix a race at startup of out-of-band metric subscriptions that would cause the report interval to request 0 (#6245)
- xds/xdsresource: Fix Outlier Detection Config Handling and correctly set xDS Defaults (#6361)
- xds/outlierdetection: Fix Outlier Detection Config Handling by setting defaults in ParseConfig() (#6361)
API Changes
- orca: allow a ServerMetricsProvider to be passed to the ORCA service and ServerOption (#6223)
Release 1.55.1
- status: To fix a panic,
status.FromErrornow returns an error withcodes.Unknownwhen the error implements theGRPCStatus()method, and callingGRPCStatus()returnsnil. (#6374)Release 1.55.0
Behavior Changes
... (truncated)
Commits
1055b48Update version.go to 1.56.3 (#6713)5efd7bdserver: prohibit more than MaxConcurrentStreams handlers from running at once...bd1f038Upgrade version.go to 1.56.3-dev (#6434)faab873Update version.go to v1.56.2 (#6432)6b0b291status: fix panic when servers return a wrapped error with status OK (#6374) ...ed56401[PSM interop] Don't fail target if sub-target already failed (#6390) (#6405)cd6a794Update version.go to v1.56.2-dev (#6387)5b67e5eUpdate version.go to v1.56.1 (#6386)d0f5150client: handle empty address lists correctly in addrConn.updateAddrs (#6354) ...997c1eaChange version to 1.56.1-dev (#6345)- Additional commits viewable in compare view
Updates google.golang.org/protobuf from 1.30.0 to 1.33.0
Updates golang.org/x/net from 0.0.0-20200822124328-c89045814202 to 0.38.0
Commits
- See full diff in compare view
Updates golang.org/x/sys from 0.0.0-20200323222414-85ca7c5b95cd to 0.31.0
Commits
5b936e1unix/linux: update to Linux kernel 6.16, Go to 1.24.53a82703unix: remove redundant xnu version check for {p}readv/{p}writev9920300unix: add missing nft conntrack constantsad4e0fcunix: remove redundant word in comment084ad87unix: fix //sys decl after CL 548795751c3c6unix: add missing NFT_PAYLOAD_* consts on linux0c740ccunix: update Go to 1.24.3d62d31cunix: update Linux constants and types to v6.143d9a6b8windows: add WSADuplicateSocketc0a9559cpu: add crypto extensions detection for riscv64- Additional commits viewable in compare view
Updates golang.org/x/text from 0.3.0 to 0.23.0
Commits
566b44fgo.mod: update golang.org/x dependenciesd5156dacollate/build: do not use println in tests221d88cx/text: fix scientific notation by removing extraneous spacesb18c107internal/export/unicode: change C comment to mention unassigned code points835f8aclanguage: use a more straightforward return valueae68efbinternal/export/unicode: add CategoryAliases, Cn, and LC518d9c0all: upgrade go directive to at least 1.23.0 [generated]3b64043go.mod: update golang.org/x dependencies1e59086message/pipeline: add two Unalias callsd42948ego.mod: update golang.org/x dependencies- Additional commits viewable in compare view
Updates google.golang.org/grpc from 1.40.0 to 1.56.3
Release notes
Sourced from google.golang.org/grpc's releases.
Release 1.56.3
Security
server: prohibit more than MaxConcurrentStreams handlers from running at once (CVE-2023-44487)
In addition to this change, applications should ensure they do not leave running tasks behind related to the RPC before returning from method handlers, or should enforce appropriate limits on any such work.
Release 1.56.2
- status: To fix a panic,
status.FromErrornow returns an error withcodes.Unknownwhen the error implements theGRPCStatus()method, and callingGRPCStatus()returnsnil. (#6374)Release 1.56.1
- client: handle empty address lists correctly in addrConn.updateAddrs
Release 1.56.0
New Features
- client: support channel idleness using
WithIdleTimeoutdial option (#6263)
- This feature is currently disabled by default, but will be enabled with a 30 minute default in the future.
- client: when using pickfirst, keep channel state in TRANSIENT_FAILURE until it becomes READY (gRFC A62) (#6306)
- xds: Add support for Custom LB Policies (gRFC A52) (#6224)
- xds: support pick_first Custom LB policy (gRFC A62) (#6314) (#6317)
- client: add support for pickfirst address shuffling (gRFC A62) (#6311)
- xds: Add support for String Matcher Header Matcher in RDS (#6313)
- xds/outlierdetection: Add Channelz Logger to Outlier Detection LB (#6145)
- Special Thanks:
@s-matyukevich- xds: enable RLS in xDS by default (#6343)
- orca: add support for application_utilization field and missing range checks on several metrics setters
- balancer/weightedroundrobin: add new LB policy for balancing between backends based on their load reports (gRFC A58) (#6241)
- authz: add conversion of json to RBAC Audit Logging config (#6192)
- authz: add support for stdout logger (#6230 and #6298)
- authz: support customizable audit functionality for authorization policy (#6192 #6230 #6298 #6158 #6304 and #6225)
Bug Fixes
- orca: fix a race at startup of out-of-band metric subscriptions that would cause the report interval to request 0 (#6245)
- xds/xdsresource: Fix Outlier Detection Config Handling and correctly set xDS Defaults (#6361)
- xds/outlierdetection: Fix Outlier Detection Config Handling by setting defaults in ParseConfig() (#6361)
API Changes
- orca: allow a ServerMetricsProvider to be passed to the ORCA service and ServerOption (#6223)
Release 1.55.1
- status: To fix a panic,
status.FromErrornow returns an error withcodes.Unknownwhen the error implements theGRPCStatus()method, and callingGRPCStatus()returnsnil. (#6374)Release 1.55.0
Behavior Changes
... (truncated)
Commits
1055b48Update version.go to 1.56.3 (#6713)5efd7bdserver: prohibit more than MaxConcurrentStreams handlers from running at once...bd1f038Upgrade version.go to 1.56.3-dev (#6434)faab873Update version.go to v1.56.2 (#6432)6b0b291status: fix panic when servers return a wrapped error with status OK (#6374) ...ed56401[PSM interop] Don't fail target if sub-target already failed (#6390) (#6405)cd6a794Update version.go to v1.56.2-dev (#6387)5b67e5eUpdate version.go to v1.56.1 (#6386)d0f5150client: handle empty address lists correctly in addrConn.updateAddrs (#6354) ...997c1eaChange version to 1.56.1-dev (#6345)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) -
@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) -
@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) -
@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency -
@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions You can disable automated security fix PRs for this repo from the Security Alerts page.