Skip to content

Conversation

JamesNK
Copy link
Member

@JamesNK JamesNK commented Aug 19, 2024

No description provided.

@JamesNK
Copy link
Member Author

JamesNK commented Aug 20, 2024

@apolcyn @jskeet Interop tests pass after downgrading Google.Apis.Auth.

Does that mean the change in Google.Apis.Auth that causes the interop error is intentional or a regression?

Problematic line:

Assert.IsFalse(googleCredential.IsCreateScopedRequired);

@JamesNK JamesNK requested a review from apolcyn August 20, 2024 00:17
@jskeet
Copy link

jskeet commented Aug 20, 2024

cc @amanda-tarafa who is on holiday at the moment, but will want to look at this later.

I strongly suspect this is basically just a test issue, due to the change in googleapis/google-api-dotnet-client@bd80f0a which introduced the feature of Compute Credentials accepting scopes. (The name of IsCreateScopedRequired is unfortunate - it's more "permitted" than "required" IMO, but Amanda can give more details.)

If I'm right, then we should be able to narrow down the version range: I'd expect the current test to pass with 1.57.0 and fail with 1.58.0.

I suspect you could invert the assertion, or just remove it.

@apolcyn
Copy link
Contributor

apolcyn commented Aug 20, 2024

I think I see what happened here.

The "compute_engine_creds" test creates credentials via GoogleCredential.GetApplicationDefaultAsync();. This walks through an ordered list of credential mechanisms and picks the first one that works (depends on what's available). The way the "compute_engine_creds" test is run, we expect it to create a ComputeCredential (fetches a token from the GCE metadata server). I'm guessing the now-failing check was trying to do a sanity check that we did in fact resolve a ComputeCredential - because prior to https://github.com/googleapis/google-api-dotnet-client/pull/2103/files#diff-4ac910358ab8f456aef208d4ce8d2dc532d341bdc145c238683b3cb1bdee1af8, that type of credential did not support explicit scoping and so would have always been false.

googleapis/google-api-dotnet-client#2103 added support for explicit scoping (in some environments). That type of credential now always has SupportsExplicitScopes == true, so the check will of course fail.

Assuming this is all intentional, perhaps all we need for this test is a different, safer way to sanity check that we did resolve a ComputeCredential (if possible). We could perhaps remove it, the only downside is the test would be slightly fragile since it might not be using the credential we think it's using.

cc @jskeet

@jskeet
Copy link

jskeet commented Aug 20, 2024

I'm guessing the now-failing check was trying to do a sanity check that we did in fact resolve a ComputeCredential

If that's the case, there's a much simpler alternative, at least now - fetch googleCredential.UnderlyingCredential and check that it's a ComputeCredential.

@JamesNK JamesNK changed the title Downgrade Google auth Fix Google auth interop test Aug 20, 2024
@JamesNK JamesNK marked this pull request as ready for review August 20, 2024 06:44
@JamesNK
Copy link
Member Author

JamesNK commented Aug 20, 2024

Test is fixed. @apolcyn feel free to approve and merge.

@apolcyn apolcyn merged commit dd4adce into grpc:master Aug 20, 2024
2 checks passed
@amanda-tarafa
Copy link

I'm back now, just catching up.

The name IsCreateScopeRequired is indeed very unfortunate but legacy and we cannot remove it without a significant breaking change. For reference, we internally call this SupportsExplicitScopes which is a way better name.

Although I cannot comment on the original intention of testing for "IsCreateScopeRequired" to be false, I can confirm the rest of @apolcyn's comment. ComputeCredential.IsCreateScopeRequired will always be true now because some (but we cannot tell which) ComputeCredentials support explicit scoping. The best way to check the credential to be a ComputeCredential is Jon's suggestion that's been implemented, so all good here.

oguzhand95 referenced this pull request in cerbos/cerbos-sdk-net Sep 23, 2024
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[Google.Protobuf](https://redirect.github.com/protocolbuffers/protobuf)
| `3.28.1` -> `3.28.2` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Google.Protobuf/3.28.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Google.Protobuf/3.28.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Google.Protobuf/3.28.1/3.28.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Google.Protobuf/3.28.1/3.28.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [Grpc.Net.Client](https://redirect.github.com/grpc/grpc-dotnet) |
`2.65.0` -> `2.66.0` |
[![age](https://developer.mend.io/api/mc/badges/age/nuget/Grpc.Net.Client/2.66.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/nuget/Grpc.Net.Client/2.66.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/nuget/Grpc.Net.Client/2.65.0/2.66.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Grpc.Net.Client/2.65.0/2.66.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>grpc/grpc-dotnet (Grpc.Net.Client)</summary>

###
[`v2.66.0`](https://redirect.github.com/grpc/grpc-dotnet/releases/tag/v2.66.0)

#### What's Changed

- Bump version on master to 2.66.0-dev by
[@&#8203;stanley-cheung](https://redirect.github.com/stanley-cheung) in
[https://github.com/grpc/grpc-dotnet/pull/2491](https://redirect.github.com/grpc/grpc-dotnet/pull/2491)
- Fix failure to create GrpcChannel under Wine compatibility layer
(including Steam Proton and Apple Game Porting Toolkit) by
[@&#8203;mayuki](https://redirect.github.com/mayuki) in
[https://github.com/grpc/grpc-dotnet/pull/2496](https://redirect.github.com/grpc/grpc-dotnet/pull/2496)
- Update .NET 9 SDK and resolve warnings by
[@&#8203;sebastienros](https://redirect.github.com/sebastienros) in
[https://github.com/grpc/grpc-dotnet/pull/2502](https://redirect.github.com/grpc/grpc-dotnet/pull/2502)
- Bump braces from 3.0.2 to 3.0.3 in
/testassets/InteropTestsGrpcWebWebsite/Tests by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/grpc/grpc-dotnet/pull/2504](https://redirect.github.com/grpc/grpc-dotnet/pull/2504)
- Bump axios from 1.6.2 to 1.7.4 in
/testassets/InteropTestsGrpcWebWebsite/Tests by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/grpc/grpc-dotnet/pull/2505](https://redirect.github.com/grpc/grpc-dotnet/pull/2505)
- Update puppeteer by
[@&#8203;JamesNK](https://redirect.github.com/JamesNK) in
[https://github.com/grpc/grpc-dotnet/pull/2507](https://redirect.github.com/grpc/grpc-dotnet/pull/2507)
- Remove internal_ci flag from interop test script by
[@&#8203;JamesNK](https://redirect.github.com/JamesNK) in
[https://github.com/grpc/grpc-dotnet/pull/2509](https://redirect.github.com/grpc/grpc-dotnet/pull/2509)
- Fix Google auth interop test by
[@&#8203;JamesNK](https://redirect.github.com/JamesNK) in
[https://github.com/grpc/grpc-dotnet/pull/2512](https://redirect.github.com/grpc/grpc-dotnet/pull/2512)
- \[testing] improve sanity check in jwt_token_creds interop test by
[@&#8203;apolcyn](https://redirect.github.com/apolcyn) in
[https://github.com/grpc/grpc-dotnet/pull/2513](https://redirect.github.com/grpc/grpc-dotnet/pull/2513)
- Add HTTP version configuration to GrpcChannelOptions by
[@&#8203;JamesNK](https://redirect.github.com/JamesNK) in
[https://github.com/grpc/grpc-dotnet/pull/2514](https://redirect.github.com/grpc/grpc-dotnet/pull/2514)
- Bump grpc.tools version to 2.66 by
[@&#8203;apolcyn](https://redirect.github.com/apolcyn) in
[https://github.com/grpc/grpc-dotnet/pull/2523](https://redirect.github.com/grpc/grpc-dotnet/pull/2523)
- Bump webpack from 5.76.0 to 5.94.0 in /examples/Browser/Server/wwwroot
by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/grpc/grpc-dotnet/pull/2522](https://redirect.github.com/grpc/grpc-dotnet/pull/2522)
- Bump elliptic from 6.5.4 to 6.5.7 in /examples/Spar/Server/ClientApp
by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/grpc/grpc-dotnet/pull/2525](https://redirect.github.com/grpc/grpc-dotnet/pull/2525)
- Bump micromatch from 4.0.7 to 4.0.8 in
/testassets/InteropTestsGrpcWebWebsite/Tests by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/grpc/grpc-dotnet/pull/2524](https://redirect.github.com/grpc/grpc-dotnet/pull/2524)
- Bump v2.66.x branch to 2.66.0.pre1 by
[@&#8203;apolcyn](https://redirect.github.com/apolcyn) in
[https://github.com/grpc/grpc-dotnet/pull/2526](https://redirect.github.com/grpc/grpc-dotnet/pull/2526)
- Bump v2.66.x to v2.66.0 by
[@&#8203;apolcyn](https://redirect.github.com/apolcyn) in
[https://github.com/grpc/grpc-dotnet/pull/2539](https://redirect.github.com/grpc/grpc-dotnet/pull/2539)

**Full Changelog**:
grpc/grpc-dotnet@v2.65.0...v2.66.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC),
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/cerbos/cerbos-sdk-net).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXJlYS9jaSIsImJvdHMiLCJraW5kL2Nob3JlIl19-->

---------

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Oğuzhan Durgun <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Oğuzhan Durgun <[email protected]>
CurtHagenlocher pushed a commit to apache/arrow-dotnet that referenced this pull request Sep 27, 2025
Updated [Grpc.Net.Client](https://github.com/grpc/grpc-dotnet) from
2.65.0 to 2.71.0.

<details>
<summary>Release notes</summary>

_Sourced from [Grpc.Net.Client's
releases](https://github.com/grpc/grpc-dotnet/releases)._

## 2.71.0

## What's Changed
* Remove old dotnet-core feed by @​JamesNK in
grpc/grpc-dotnet#2611
* Bump axios from 1.7.4 to 1.8.4 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot in
grpc/grpc-dotnet#2615
* Bump @​babel/helpers from 7.25.0 to 7.27.0 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot in
grpc/grpc-dotnet#2616
* Bump tar-fs from 3.0.6 to 3.0.8 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot in
grpc/grpc-dotnet#2619
* Fix race condition that caused inprogress connect to be canceled by
@​JamesNK in grpc/grpc-dotnet#2618
* Bump tools package to 2.71 by @​apolcyn in
grpc/grpc-dotnet#2621
* Update NuGet package versions by @​JamesNK in
grpc/grpc-dotnet#2620
* bump version to 2.71.0-pre1 by @​apolcyn in
grpc/grpc-dotnet#2622
* Bump version on 2.71 for final release by @​apolcyn in
grpc/grpc-dotnet#2627


**Full Changelog**:
grpc/grpc-dotnet@v2.70.0...v2.71.0

## 2.71.0-pre1

## What's Changed
* Remove old dotnet-core feed by @​JamesNK in
grpc/grpc-dotnet#2611
* Bump axios from 1.7.4 to 1.8.4 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot in
grpc/grpc-dotnet#2615
* Bump @​babel/helpers from 7.25.0 to 7.27.0 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot in
grpc/grpc-dotnet#2616
* Bump tar-fs from 3.0.6 to 3.0.8 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot in
grpc/grpc-dotnet#2619
* Fix race condition that caused inprogress connect to be canceled by
@​JamesNK in grpc/grpc-dotnet#2618
* Bump tools package to 2.71 by @​apolcyn in
grpc/grpc-dotnet#2621
* Update NuGet package versions by @​JamesNK in
grpc/grpc-dotnet#2620
* bump version to 2.71.0-pre1 by @​apolcyn in
grpc/grpc-dotnet#2622


**Full Changelog**:
grpc/grpc-dotnet@v2.70.0...v2.71.0-pre1

## 2.70.0

## What's Changed
* update ArgumentNullException.ThrowIfNull usage by @​WeihanLi in
grpc/grpc-dotnet#2563
* use nameof for CallerArgumentExpression by @​WeihanLi in
grpc/grpc-dotnet#2562
* Correctness: Make some private & internal classes sealed where
possible by @​Henr1k80 in grpc/grpc-dotnet#2559
* Bump vue from 2.6.14 to 3.0.0 in /examples/Spar/Server/ClientApp by
@​dependabot in grpc/grpc-dotnet#2565
* Bump cross-spawn from 7.0.3 to 7.0.6 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot in
grpc/grpc-dotnet#2574
* [vote]Added Active maintainers into MAINTAINERS.md. by @​subhraOffGit
in grpc/grpc-dotnet#2449
* Refactor: Use `await using` for `packageVersionStream` to ensure
proper disposal of async resources by @​dexcompiler in
grpc/grpc-dotnet#2521
* Performance microoptimizations by @​Henr1k80 in
grpc/grpc-dotnet#2558
* Complete health checks watch service on server shutting down by
@​JamesNK in grpc/grpc-dotnet#2582
* Avoid using ConcurrentDictionary for channels with few methods by
@​JamesNK in grpc/grpc-dotnet#2597
* Bump elliptic from 6.6.0 to 6.6.1 in /examples/Spar/Server/ClientApp
by @​dependabot in grpc/grpc-dotnet#2599
* Move updating connectivity state outside of subchannel lock by
@​JamesNK in grpc/grpc-dotnet#2601
* Bump Grpc.Tools dependency by @​apolcyn in
grpc/grpc-dotnet#2603
* bump version on v2.70.x branch by @​apolcyn in
grpc/grpc-dotnet#2604
* Change version to 2.70.0 by @​JamesNK in
grpc/grpc-dotnet#2610

## New Contributors
* @​Henr1k80 made their first contribution in
grpc/grpc-dotnet#2559
* @​subhraOffGit made their first contribution in
grpc/grpc-dotnet#2449
* @​dexcompiler made their first contribution in
grpc/grpc-dotnet#2521

**Full Changelog**:
grpc/grpc-dotnet@v2.67.0...v2.70.0

## 2.67.0

## What's Changed
* precompile condition clean by @​Varorbc in
grpc/grpc-dotnet#2528
* Log server cancellation errors at info level by @​JamesNK in
grpc/grpc-dotnet#2527
* Update logging to use generated logs by @​wabalubdub in
grpc/grpc-dotnet#2531
* Bump serve-static from 1.14.2 to 1.16.2 in
/examples/Spar/Server/ClientApp by @​dependabot in
grpc/grpc-dotnet#2536
* Update to Grpc.Tools 2.67.0-pre1 by @​JamesNK in
grpc/grpc-dotnet#2547
* Cleanup gRPC unit testing helpers in tester sample by @​JamesNK in
grpc/grpc-dotnet#2548
* Fix UpdateBalancingState not called when address attributes are
modified by @​JamesNK in grpc/grpc-dotnet#2553
* Update Grpc.Tools to 2.67.0 by @​JamesNK in
grpc/grpc-dotnet#2554
* Fix System.Text.Json vulnerability warning by @​JamesNK in
grpc/grpc-dotnet#2556
* Update package dependencies to 9.0 RC2 by @​JamesNK in
grpc/grpc-dotnet#2560
* Bump elliptic from 6.5.7 to 6.6.0 in /examples/Spar/Server/ClientApp
by @​dependabot in grpc/grpc-dotnet#2567
* Update to .NET 9 RTM by @​JamesNK in
grpc/grpc-dotnet#2571

## New Contributors
* @​wabalubdub made their first contribution in
grpc/grpc-dotnet#2531

**Full Changelog**:
grpc/grpc-dotnet@v2.66.0...v2.67.0

## 2.67.0-pre1

## What's Changed
* precompile condition clean by @​Varorbc in
grpc/grpc-dotnet#2528
* Log server cancellation errors at info level by @​JamesNK in
grpc/grpc-dotnet#2527
* Update logging to use generated logs by @​wabalubdub in
grpc/grpc-dotnet#2531
* Bump serve-static from 1.14.2 to 1.16.2 in
/examples/Spar/Server/ClientApp by @​dependabot in
grpc/grpc-dotnet#2536
* Update to Grpc.Tools 2.67.0-pre1 by @​JamesNK in
grpc/grpc-dotnet#2547
* Cleanup gRPC unit testing helpers in tester sample by @​JamesNK in
grpc/grpc-dotnet#2548
* Fix UpdateBalancingState not called when address attributes are
modified by @​JamesNK in grpc/grpc-dotnet#2553
* Update Grpc.Tools to 2.67.0 by @​JamesNK in
grpc/grpc-dotnet#2554
* Bump version for 2.67 RC by @​apolcyn in
grpc/grpc-dotnet#2555

## New Contributors
* @​wabalubdub made their first contribution in
grpc/grpc-dotnet#2531

**Full Changelog**:
grpc/grpc-dotnet@v2.66.0...v2.67.0-pre1

## 2.66.0

## What's Changed
* Bump version on master to 2.66.0-dev by @​stanley-cheung in
grpc/grpc-dotnet#2491
* Fix failure to create GrpcChannel under Wine compatibility layer
(including Steam Proton and Apple Game Porting Toolkit) by @​mayuki in
grpc/grpc-dotnet#2496
* Update .NET 9 SDK and resolve warnings by @​sebastienros in
grpc/grpc-dotnet#2502
* Bump braces from 3.0.2 to 3.0.3 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot in
grpc/grpc-dotnet#2504
* Bump axios from 1.6.2 to 1.7.4 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot in
grpc/grpc-dotnet#2505
* Update puppeteer by @​JamesNK in
grpc/grpc-dotnet#2507
* Remove internal_ci flag from interop test script by @​JamesNK in
grpc/grpc-dotnet#2509
* Fix Google auth interop test by @​JamesNK in
grpc/grpc-dotnet#2512
* [testing] improve sanity check in jwt_token_creds interop test by
@​apolcyn in grpc/grpc-dotnet#2513
* Add HTTP version configuration to GrpcChannelOptions by @​JamesNK in
grpc/grpc-dotnet#2514
* Bump grpc.tools version to 2.66 by @​apolcyn in
grpc/grpc-dotnet#2523
* Bump webpack from 5.76.0 to 5.94.0 in /examples/Browser/Server/wwwroot
by @​dependabot in grpc/grpc-dotnet#2522
* Bump elliptic from 6.5.4 to 6.5.7 in /examples/Spar/Server/ClientApp
by @​dependabot in grpc/grpc-dotnet#2525
* Bump micromatch from 4.0.7 to 4.0.8 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot in
grpc/grpc-dotnet#2524
* Bump v2.66.x branch to 2.66.0.pre1 by @​apolcyn in
grpc/grpc-dotnet#2526
* Bump v2.66.x to v2.66.0 by @​apolcyn in
grpc/grpc-dotnet#2539


**Full Changelog**:
grpc/grpc-dotnet@v2.65.0...v2.66.0

## 2.66.0-pre1

## What's Changed
* Bump version on master to 2.66.0-dev by @​stanley-cheung in
grpc/grpc-dotnet#2491
* Fix failure to create GrpcChannel under Wine compatibility layer
(including Steam Proton and Apple Game Porting Toolkit) by @​mayuki in
grpc/grpc-dotnet#2496
* Update .NET 9 SDK and resolve warnings by @​sebastienros in
grpc/grpc-dotnet#2502
* Bump braces from 3.0.2 to 3.0.3 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot in
grpc/grpc-dotnet#2504
* Bump axios from 1.6.2 to 1.7.4 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot in
grpc/grpc-dotnet#2505
* Update puppeteer by @​JamesNK in
grpc/grpc-dotnet#2507
* Remove internal_ci flag from interop test script by @​JamesNK in
grpc/grpc-dotnet#2509
* Fix Google auth interop test by @​JamesNK in
grpc/grpc-dotnet#2512
* [testing] improve sanity check in jwt_token_creds interop test by
@​apolcyn in grpc/grpc-dotnet#2513
* Add HTTP version configuration to GrpcChannelOptions by @​JamesNK in
grpc/grpc-dotnet#2514
* Bump grpc.tools version to 2.66 by @​apolcyn in
grpc/grpc-dotnet#2523
* Bump webpack from 5.76.0 to 5.94.0 in /examples/Browser/Server/wwwroot
by @​dependabot in grpc/grpc-dotnet#2522
* Bump elliptic from 6.5.4 to 6.5.7 in /examples/Spar/Server/ClientApp
by @​dependabot in grpc/grpc-dotnet#2525
* Bump micromatch from 4.0.7 to 4.0.8 in
/testassets/InteropTestsGrpcWebWebsite/Tests by @​dependabot in
grpc/grpc-dotnet#2524


**Full Changelog**:
grpc/grpc-dotnet@v2.65.0...v2.66.0-pre1

Commits viewable in [compare
view](grpc/grpc-dotnet@v2.65.0...v2.71.0).
</details>

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Grpc.Net.Client&package-manager=nuget&previous-version=2.65.0&new-version=2.71.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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 this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants