Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump the dependencies group in /provider/secretmanager with 3 updates (…
…#603) Bumps the dependencies group in /provider/secretmanager with 3 updates: [cloud.google.com/go/compute/metadata](https://github.com/googleapis/google-cloud-go), [google.golang.org/api](https://github.com/googleapis/google-api-go-client) and [google.golang.org/grpc](https://github.com/grpc/grpc-go). Updates `cloud.google.com/go/compute/metadata` from 0.5.2 to 0.6.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-cloud-go/releases">cloud.google.com/go/compute/metadata's releases</a>.</em></p> <blockquote> <h2>compute/metadata: v0.6.0</h2> <h2><a href="https://github.com/googleapis/google-cloud-go/compare/compute/metadata/v0.5.2...compute/metadata/v0.6.0">0.6.0</a> (2024-12-13)</h2> <h3>Features</h3> <ul> <li><strong>compute/metadata:</strong> Add debug logging (<a href="https://redirect.github.com/googleapis/google-cloud-go/issues/11078">#11078</a>) (<a href="https://github.com/googleapis/google-cloud-go/commit/a81681463906e4473570a2f426eb0dc2de64e53f">a816814</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md">cloud.google.com/go/compute/metadata's changelog</a>.</em></p> <blockquote> <h2>v0.6.0</h2> <ul> <li> <p>Beta release of BigQuery, DataStore, Logging and Storage. See the <a href="https://cloudplatform.googleblog.com/2016/12/announcing-new-google-cloud-client.html">blog post</a>.</p> </li> <li> <p>bigquery:</p> <ul> <li> <p>struct support. Read a row directly into a struct with <code>RowIterator.Next</code>, and upload a row directly from a struct with <code>Uploader.Put</code>. You can also use field tags. See the [package documentation][cloud-bigquery-ref] for details.</p> </li> <li> <p>The <code>ValueList</code> type was removed. It is no longer necessary. Instead of</p> </li> </ul> <pre lang="go"><code>var v ValueList ... it.Next(&v) .. </code></pre> <p>use</p> <pre lang="go"><code>var v []Value ... it.Next(&v) ... </code></pre> <ul> <li> <p>Previously, repeatedly calling <code>RowIterator.Next</code> on the same <code>[]Value</code> or <code>ValueList</code> would append to the slice. Now each call resets the size to zero first.</p> </li> <li> <p>Schema inference will infer the SQL type BYTES for a struct field of type []byte. Previously it inferred STRING.</p> </li> <li> <p>The types <code>uint</code>, <code>uint64</code> and <code>uintptr</code> are no longer supported in schema inference. BigQuery's integer type is INT64, and those types may hold values that are not correctly represented in a 64-bit signed integer.</p> </li> </ul> </li> </ul> <h2>v0.5.0</h2> <ul> <li>bigquery: <ul> <li>The SQL types DATE, TIME and DATETIME are now supported. They correspond to the <code>Date</code>, <code>Time</code> and <code>DateTime</code> types in the new <code>cloud.google.com/go/civil</code> package.</li> <li>Support for query parameters.</li> <li>Support deleting a dataset.</li> <li>Values from INTEGER columns will now be returned as int64, not int. This will avoid errors arising from large values on 32-bit systems.</li> </ul> </li> <li>datastore: <ul> <li>Nested Go structs encoded as Entity values, instead of a flattened list of the embedded struct's fields. This means that you may now have twice-nested slices, eg. <pre lang="go"><code>type State struct { Cities []struct{ Populations []int </code></pre> </li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/googleapis/google-cloud-go/commit/c116c7972ec94f148459a304d07a67ecbc770d4b"><code>c116c79</code></a> bigquery: cache schema inference</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/dd37f36e6841d2a314add12c93fe9e58aa467e59"><code>dd37f36</code></a> bigquery: check for recursive types during schema inference</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/0c87a68d703e5d09282162da4d4e74bd8f6d454b"><code>0c87a68</code></a> bigquery,logging,storage,datastore: mention beta status in doc comment</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/1e032f388e6fff73e1ce068a900955bfa2cca1d2"><code>1e032f3</code></a> datastore: implement structCodec using internal/fields</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/ee72afcb0653be2197c0e5b61bf2963b8544f02f"><code>ee72afc</code></a> README: change "experimental" to "alpha"</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/9d965e63e8cceb1b5d7977a202f0fcb8866d6525"><code>9d965e6</code></a> README: update status of select clients</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/3d66f77335c9f8a896c902471b6f699b6e0b1b54"><code>3d66f77</code></a> fields: factor out fast cache to separate package.</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/e80926d66a671112c7f04b7a0212f18030e12ad2"><code>e80926d</code></a> bigquery: support uploading structs directly</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/5bfd31360229a54fca5a3221bc32426efc471174"><code>5bfd313</code></a> internal/fields: adds func for validating struct</li> <li><a href="https://github.com/googleapis/google-cloud-go/commit/c9f70e2e8ce34c64319833a871281ec7b4bee6a0"><code>c9f70e2</code></a> bigquery: support struct field tags</li> <li>Additional commits viewable in <a href="https://github.com/googleapis/google-cloud-go/compare/apps/v0.5.2...v0.6.0">compare view</a></li> </ul> </details> <br /> Updates `google.golang.org/api` from 0.210.0 to 0.211.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/releases">google.golang.org/api's releases</a>.</em></p> <blockquote> <h2>v0.211.0</h2> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.210.0...v0.211.0">0.211.0</a> (2024-12-10)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2897">#2897</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/a7a9149289b538150b5ec600a19899ce3b19d3b7">a7a9149</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2899">#2899</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/587a11df23378396e3e174fd7021afcb4c59db0e">587a11d</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2902">#2902</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/d4cb90f490006155566779810a37100c56a57780">d4cb90f</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2903">#2903</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/6528fb2369704b3448dc2144cff0624e40072ca8">6528fb2</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2905">#2905</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/f37ece71d34f784c1b8bd65ec8c17cee4f306deb">f37ece7</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2906">#2906</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/91960b196e5b2dedfc21045964b07944d284a629">91960b1</a>)</li> <li><strong>transport:</strong> Remove deprecated EXPERIMENTAL OpenCensus trace context propagation (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2901">#2901</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/2b3363e799feff4ed8d191bc69cd3afdb70f1f99">2b3363e</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>Remove dep hacks for old cycle deps (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2908">#2908</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/f4c1ac651f453b5970402d2f1d3d918e93d05c44">f4c1ac6</a>), refs <a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2559">#2559</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md">google.golang.org/api's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/googleapis/google-api-go-client/compare/v0.210.0...v0.211.0">0.211.0</a> (2024-12-10)</h2> <h3>Features</h3> <ul> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2897">#2897</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/a7a9149289b538150b5ec600a19899ce3b19d3b7">a7a9149</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2899">#2899</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/587a11df23378396e3e174fd7021afcb4c59db0e">587a11d</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2902">#2902</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/d4cb90f490006155566779810a37100c56a57780">d4cb90f</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2903">#2903</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/6528fb2369704b3448dc2144cff0624e40072ca8">6528fb2</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2905">#2905</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/f37ece71d34f784c1b8bd65ec8c17cee4f306deb">f37ece7</a>)</li> <li><strong>all:</strong> Auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2906">#2906</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/91960b196e5b2dedfc21045964b07944d284a629">91960b1</a>)</li> <li><strong>transport:</strong> Remove deprecated EXPERIMENTAL OpenCensus trace context propagation (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2901">#2901</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/2b3363e799feff4ed8d191bc69cd3afdb70f1f99">2b3363e</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>Remove dep hacks for old cycle deps (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2908">#2908</a>) (<a href="https://github.com/googleapis/google-api-go-client/commit/f4c1ac651f453b5970402d2f1d3d918e93d05c44">f4c1ac6</a>), refs <a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2559">#2559</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/googleapis/google-api-go-client/commit/71a90821956464e97f84bc7cf8aac0ea14f10adf"><code>71a9082</code></a> chore(main): release 0.211.0 (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2898">#2898</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/f4c1ac651f453b5970402d2f1d3d918e93d05c44"><code>f4c1ac6</code></a> fix: remove dep hacks for old cycle deps (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2908">#2908</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/73ee8335a64ec37710e41c1ae67a7b3695726996"><code>73ee833</code></a> chore: bump auth dep (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2907">#2907</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/91960b196e5b2dedfc21045964b07944d284a629"><code>91960b1</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2906">#2906</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/40ca97ec2003da68305e0647ae5794f910e1e856"><code>40ca97e</code></a> chore(all): update all (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2904">#2904</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/f37ece71d34f784c1b8bd65ec8c17cee4f306deb"><code>f37ece7</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2905">#2905</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/6528fb2369704b3448dc2144cff0624e40072ca8"><code>6528fb2</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2903">#2903</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/d4cb90f490006155566779810a37100c56a57780"><code>d4cb90f</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2902">#2902</a>)</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/2b3363e799feff4ed8d191bc69cd3afdb70f1f99"><code>2b3363e</code></a> feat(transport): remove deprecated EXPERIMENTAL OpenCensus trace context prop...</li> <li><a href="https://github.com/googleapis/google-api-go-client/commit/587a11df23378396e3e174fd7021afcb4c59db0e"><code>587a11d</code></a> feat(all): auto-regenerate discovery clients (<a href="https://redirect.github.com/googleapis/google-api-go-client/issues/2899">#2899</a>)</li> <li>Additional commits viewable in <a href="https://github.com/googleapis/google-api-go-client/compare/v0.210.0...v0.211.0">compare view</a></li> </ul> </details> <br /> Updates `google.golang.org/grpc` from 1.68.1 to 1.69.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's releases</a>.</em></p> <blockquote> <h2>Release 1.69.0</h2> <h1>Known Issues</h1> <ul> <li>The recently added <code>grpc.NewClient</code> function is incompatible with forward proxies, because it resolves the target hostname on the client instead of passing the hostname to the proxy. A fix is expected to be a part of grpc-go v1.70. (<a href="https://redirect.github.com/grpc/grpc-go/issues/7556">#7556</a>)</li> </ul> <h1>New Features</h1> <ul> <li>stats/opentelemetry: Introduce new APIs to enable OpenTelemetry instrumentation for metrics on servers and clients (<a href="https://redirect.github.com/grpc/grpc-go/issues/7874">#7874</a>)</li> <li>xdsclient: add support to fallback to lower priority servers when higher priority ones are down (<a href="https://redirect.github.com/grpc/grpc-go/issues/7701">#7701</a>)</li> <li>dns: Add support for link local IPv6 addresses (<a href="https://redirect.github.com/grpc/grpc-go/issues/7889">#7889</a>)</li> <li>The new experimental <code>pickfirst</code> LB policy (disabled by default) supports Happy Eyeballs, interleaving IPv4 and IPv6 address as described in <a href="https://www.rfc-editor.org/rfc/rfc8305#section-4">RFC-8305 section 4</a>, to attempt connections to multiple backends concurrently. The experimental <code>pickfirst</code> policy can be enabled by setting the environment variable <code>GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST</code> to <code>true</code>. (<a href="https://redirect.github.com/grpc/grpc-go/issues/7725">#7725</a>, <a href="https://redirect.github.com/grpc/grpc-go/issues/7742">#7742</a>)</li> <li>balancer/pickfirst: Emit metrics from the <code>pick_first</code> load balancing policy (<a href="https://redirect.github.com/grpc/grpc-go/issues/7839">#7839</a>)</li> <li>grpc: export <code>MethodHandler</code>, which is the type of an already-exported field in <code>MethodDesc</code> (<a href="https://redirect.github.com/grpc/grpc-go/issues/7796">#7796</a>) <ul> <li>Special Thanks: <a href="https://github.com/mohdjishin"><code>@mohdjishin</code></a></li> </ul> </li> </ul> <h1>Bug Fixes</h1> <ul> <li>credentials/google: set scope for application default credentials (<a href="https://redirect.github.com/grpc/grpc-go/issues/7887">#7887</a>) <ul> <li>Special Thanks: <a href="https://github.com/halvards"><code>@halvards</code></a></li> </ul> </li> <li>xds: fix edge-case issues where some clients or servers would not initialize correctly or would not receive errors when resources are invalid or unavailable if another channel or server with the same target was already in use . (<a href="https://redirect.github.com/grpc/grpc-go/issues/7851">#7851</a>, <a href="https://redirect.github.com/grpc/grpc-go/issues/7853">#7853</a>)</li> <li>examples: fix the debugging example, which was broken by a recent change (<a href="https://redirect.github.com/grpc/grpc-go/issues/7833">#7833</a>)</li> </ul> <h1>Behavior Changes</h1> <ul> <li>client: update retry attempt backoff to apply jitter per updates to <a href="https://github.com/grpc/proposal/blob/master/A6-client-retries.md">gRFC A6</a>. (<a href="https://redirect.github.com/grpc/grpc-go/issues/7869">#7869</a>) <ul> <li>Special Thanks: <a href="https://github.com/isgj"><code>@isgj</code></a></li> </ul> </li> <li>balancer/weightedroundrobin: use the <code>pick_first</code> LB policy to manage connections (<a href="https://redirect.github.com/grpc/grpc-go/issues/7826">#7826</a>)</li> </ul> <h1>API Changes</h1> <ul> <li>balancer: An internal method is added to the <code>balancer.SubConn</code> interface to force implementors to embed a delegate implementation. This requirement is present in the interface documentation, but wasn't enforced earlier. (<a href="https://redirect.github.com/grpc/grpc-go/issues/7840">#7840</a>)</li> </ul> <h1>Performance Improvements</h1> <ul> <li>mem: implement a <code>ReadAll()</code> method for more efficient <code>io.Reader</code> consumption (<a href="https://redirect.github.com/grpc/grpc-go/issues/7653">#7653</a>) <ul> <li>Special Thanks: <a href="https://github.com/ash2k"><code>@ash2k</code></a></li> </ul> </li> <li>mem: use slice capacity instead of length to determine whether to pool buffers or directly allocate them (<a href="https://redirect.github.com/grpc/grpc-go/issues/7702">#7702</a>) <ul> <li>Special Thanks: <a href="https://github.com/PapaCharlie"><code>@PapaCharlie</code></a></li> </ul> </li> </ul> <h1>Documentation</h1> <ul> <li>examples/csm_observability: Add xDS Credentials and switch server to be xDS enabled (<a href="https://redirect.github.com/grpc/grpc-go/issues/7875">#7875</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc-go/commit/317271b232677b7869576a49855b01b9f4775d67"><code>317271b</code></a> pickfirst: Register a health listener when used as a leaf policy (<a href="https://redirect.github.com/grpc/grpc-go/issues/7832">#7832</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/5565631455d326987ad3f9dba6d45478cc426c9f"><code>5565631</code></a> balancer/pickfirst: replace grpc.Dial with grpc.NewClient in tests (<a href="https://redirect.github.com/grpc/grpc-go/issues/7879">#7879</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/634497b75899887567d48ff134059443069b8196"><code>634497b</code></a> test: Split import paths for generated message and service code (<a href="https://redirect.github.com/grpc/grpc-go/issues/7891">#7891</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/78aa51be7ea153a6773d421c0ac9852e3c5cd22c"><code>78aa51b</code></a> pickfirst: Stop test servers without closing listeners (<a href="https://redirect.github.com/grpc/grpc-go/issues/7872">#7872</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/00272e8024ccd4adce8500a2f7daf974ab7fe7d9"><code>00272e8</code></a> dns: Support link local IPv6 addresses (<a href="https://redirect.github.com/grpc/grpc-go/issues/7889">#7889</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/17d08f746b51fa70911754d36a799c247a2c4b79"><code>17d08f7</code></a> scripts/gen-deps: filter out grpc modules (<a href="https://redirect.github.com/grpc/grpc-go/issues/7890">#7890</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/ab189b0af7ef5e7aa6e20b5293612bd51ab10fe2"><code>ab189b0</code></a> examples/features/csm_observability: Add xDS Credentials (<a href="https://redirect.github.com/grpc/grpc-go/issues/7875">#7875</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/3ce87dd3800b90da028f08d75023144c03f5706f"><code>3ce87dd</code></a> credentials/google: Add cloud-platform scope for ADC (<a href="https://redirect.github.com/grpc/grpc-go/issues/7887">#7887</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/3c0586a427dd1fb8ba66f8c4dbd038273a406bbe"><code>3c0586a</code></a> stats/opentelemetry: Cleanup OpenTelemetry API's before stabilization (<a href="https://redirect.github.com/grpc/grpc-go/issues/7874">#7874</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/4c07bca27377feb808912b844b3fa95ad10f946b"><code>4c07bca</code></a> stream: add jitter to retry backoff in accordance with gRFC A6 (<a href="https://redirect.github.com/grpc/grpc-go/issues/7869">#7869</a>)</li> <li>Additional commits viewable in <a href="https://github.com/grpc/grpc-go/compare/v1.68.1...v1.69.0">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will 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 version` will 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 </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information