Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
4364097
chore(deps): bump dependabot/fetch-metadata from 2.4.0 to 2.5.0
dependabot[bot] Jan 5, 2026
b48add3
Bump Microsoft.IdentityModel.Protocols.OpenIdConnect and Microsoft.Id…
dependabot[bot] Feb 13, 2026
b4a98c7
Bump System.Net.Http.WinHttpHandler from 6.0.0 to 9.0.14
dependabot[bot] Mar 10, 2026
73f01e9
Bump Microsoft.SourceLink.GitHub from 8.0.0 to 10.0.201
dependabot[bot] Mar 12, 2026
3d34246
chore(deps): bump actions/create-github-app-token from 2 to 3
dependabot[bot] Mar 16, 2026
aad7834
Bump coverlet.collector and coverlet.msbuild
dependabot[bot] Mar 17, 2026
a135734
Bump Microsoft.Kiota.Abstractions and 6 others
dependabot[bot] Mar 19, 2026
846bd2c
Merge remote-tracking branch 'origin/dependabot/nuget/tests/Microsoft…
gavinbarron Apr 17, 2026
7050971
Merge remote-tracking branch 'origin/dependabot/nuget/src/Microsoft.G…
gavinbarron Apr 17, 2026
37ef621
Merge remote-tracking branch 'origin/dependabot/nuget/src/Microsoft.G…
gavinbarron Apr 17, 2026
0406d19
Merge remote-tracking branch 'origin/dependabot/nuget/src/Microsoft.G…
gavinbarron Apr 17, 2026
2edcd4e
Merge remote-tracking branch 'origin/dependabot/github_actions/action…
gavinbarron Apr 17, 2026
a079dfa
Merge remote-tracking branch 'origin/dependabot/github_actions/depend…
gavinbarron Apr 17, 2026
17c57c2
Revert Microsoft.SourceLink.GitHub to 8.0.0 (10.x incompatible with n…
gavinbarron Apr 17, 2026
fbe6fd8
Merge branch 'main' into chore/aggregate-dependabot-updates
gavinbarron Apr 18, 2026
22aa370
fix: downgrade coverlet packages to 6.0.4 for net6.0 compatibility
gavinbarron Apr 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/auto-merge-dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2.4.0
uses: dependabot/fetch-metadata@v2.5.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/project-auto-add.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- name: Generate token
id: generate_token
uses: actions/create-github-app-token@v2
uses: actions/create-github-app-token@v3
with:
app-id: ${{ secrets.GRAPHBOT_APP_ID }}
private-key: ${{ secrets.GRAPHBOT_APP_PEM }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-please-gha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Generate GitHub App token
id: app-token
uses: actions/create-github-app-token@v2
uses: actions/create-github-app-token@v3
with:
app-id: ${{ vars.RELEASE_PLEASE_TOKEN_PROVIDER_APP_ID }}
private-key: ${{ secrets.RELEASE_PLEASE_TOKEN_PROVIDER_PEM }}
Expand Down
20 changes: 10 additions & 10 deletions src/Microsoft.Graph.Core/Microsoft.Graph.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -64,22 +64,22 @@
</ItemGroup>
<!-- Verify all PackageReferences here are up to date before releasing new version -->
<ItemGroup>
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="8.15.0" />
<PackageReference Include="Microsoft.IdentityModel.Validators" Version="8.6.1" />
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="8.16.0" />
<PackageReference Include="Microsoft.IdentityModel.Validators" Version="8.16.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.21.1" />
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.21.1" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.21.1" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.21.1" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.21.1" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.21.1" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.21.1" />
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.22.1" />
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" Version="1.22.1" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.22.1" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.22.1" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.22.1" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.22.1" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.22.1" />
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.14.15">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' ">
<PackageReference Include="System.Net.Http.WinHttpHandler" Version="[6.0,)" />
<PackageReference Include="System.Net.Http.WinHttpHandler" Version="9.0.14" />
</ItemGroup>
</Project>
Loading