Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump FakeVersion from 5.23.1 to 6.1.3 #298

Open
wants to merge 1 commit into
base: mainstream
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 30, 2024

Bumps FakeVersion from 5.23.1 to 6.1.3.
Updates Fake.Api.GitHub from 5.23.1 to 6.1.3

Release notes

Sourced from Fake.Api.GitHub's releases.

6.1.3

ENHANCEMENT: SdkAssemblyResolver. Support using the latest installed SDK.

6.1.2

ENHANCEMENT: Updated runtime-identifier to more recent runtimes. LEGACY: Removed .NETFrameworkAssembly attribute fix on detecting .NET assemblies. ENHANCEMENT: SdkAssemblyResolver. Support detecting multiple .NET paths.

6.1.1

BUGFIX: Assembly resolver to pick a found SDK instead of first SDK, thanks @​Thorium - fsprojects/FAKE#2797 BUGFIX: Fix issue parsing global.json when using prerelease .NET SDKs, thanks @​numpsy - fsprojects/FAKE#2803 BUGFIX: Allow RunSettingsArguments to be set, thanks @​TheAngryByrd - fsprojects/FAKE#2771

6.1.0

BUGFIX: MSBuild.build adds a bad string at the end of properties, thanks @​0x53A - fsprojects/FAKE#2738 BUGFIX: Allow setting Msbuild max cpu on Linux, thanks @​TheAngryByrd - fsprojects/FAKE#2772 ENHANCEMENT: Added shorthash to git functions, thanks @​voronoipotato - fsprojects/FAKE#2752 ENHANCEMENT: Support for /tl:[auto:on:off] msbuild flag, thanks @​smoothdeveloper - fsprojects/FAKE#2768 ENHANCEMENT: Fixes for usage in .NET 8.0 enviroment projects. ENHANCEMENT: Add Context.setExecutionContextFromCommandLineArgs, thanks @​cataggar - fsprojects/FAKE#2750

6.0.0

ENHANCEMENT: Site UI fixes and documentation link fixes.

6.0.0-beta001

BUGFIX: Error detecting msbuild version on Linux, thanks @​yazeedobaid - fsprojects/FAKE#2709 ENHANCEMENT: Add ignoreConflicts parameter to paket push, thanks @​gdziadkiewicz - fsprojects/FAKE#2720 ENHANCEMENT: Add GitHub API to create a pull request, thanks @​yazeedobaid - fsprojects/FAKE#2724

6.0.0-alpha004

BUGFIX: Fix build by pinning Microsoft.build packages now that .NET 7 is out and fix links in website, thanks @​yazeedobaid - fsprojects/FAKE#2721 BUGFIX: Fix docs URL in Choco template., thanks @​yazeedobaid - fsprojects/FAKE#2718

6.0.0-alpha003

6.0.0-alpha002

  • ENHANCEMENT: Fix website assets loading

6.0.0-alpha001

Changelog

Sourced from Fake.Api.GitHub's changelog.

6.1.3 - 2024-09-26

  • ENHANCEMENT: SdkAssemblyResolver. Support using the latest installed SDK.

6.1.2 - 2024-09-24

  • ENHANCEMENT: Updated runtime-identifier to more recent runtimes.
  • LEGACY: Removed .NETFrameworkAssembly attribute fix on detecting .NET assemblies.
  • ENHANCEMENT: SdkAssemblyResolver. Support detecting multiple .NET paths.

6.1.1 - 2024-08-30

6.1.0 - 2024-07-27

6.0.0 - 2023-02-20

  • ENHANCEMENT: Site UI fixes and documentation link fixes.

6.0.0-beta001 - 2022-12-21

6.0.0-alpha004 - 2022-11-17

6.0.0-alpha003 - 2022-11-11

6.0.0-alpha002 - 2022-11-02

  • ENHANCEMENT: Fix website assets loading

6.0.0-alpha001 - 2022-11-01

Commits
  • 1e9cc79 Add 6.1.3 release notes
  • 04c2b47 Yet another SdkAssemblyResolver fix (#2835)
  • e36d8be Updated 6.1.2 release notes
  • f67f06e ResolveDotNetRoots to support resoving multiple .NET version paths (#2832)
  • 4d0bf7d Some maintenance updates to help upcoming .NET 8 migration (#2826)
  • 4fe8bcf Fix a few more FS3548 warnings (#2828)
  • d4d76bc Remove Expecto.TestResults (#2831)
  • 050e199 Add Femto as an example of running FAKE with a build project (#2806)
  • 223ab63 build.fsx: Reference System.Reactive instead of System.Reactive.Compatibility...
  • 96914ba Mac CI debugging (#2827)
  • Additional commits viewable in compare view

Updates FSharp.Core from 7.0.200 to 8.0.301

Changelog

Sourced from FSharp.Core's changelog.

Copyright (c) Microsoft Corporation. All Rights Reserved. See License.txt in the project root for license information.

About the release notes

For the most recent release notes see: /docs/release-notes

This document contains historical release notes information. They are preserved in their original form.

Current release notes

These release notes track our current efforts to document changes to the F# project over time. They are split into the language, core library, compiler/tools, and compiler service.

FSharp Compiler Service (main)

  • In FSharpParsingOptions, rename ConditionalCompilationDefines --> ConditionalDefines
  • Some syntax tree nodes have changed, e.g. introduction of SyntaxTree trivia
  • Resolved expressions (FSharpExpr) now reveal debug points, you must match them explicitly using DebugPoint(dp, expr)
  • Some node types in FSharpExpr (e.g. Let, While, TryFinally, TryWith) reveal additional debug points
  • In FSharpExpr, FastIntegerForLoop has been renamed to IntegerForLoop
  • SynModuleDecl.DoExpr --> SynModuleDecl.Expr because it was not corresponding to a 'do expr' declaration. A 'do expr' declaration in a module will correspond to a SynModuleDecl.Expr enclosing a SynExpr.Do This constructor also loses the debug point as it was always None. The debug point is always implicit for this construct.
  • In FCS API, FSharpParsingOptions, CompilingFsLib --> CompilingFSharpCore
  • In FCS API, FSharpParsingOptions, ErrorSeverityOptions --> DiagnosticOptions
  • SynIdent was introduced in the Untyped Syntax Tree. This represent an Ident with potential additional information, stored as IdentTrivia).
  • LongIdentWithDots was renamed to SynLongIdent and also could contain IdentTrivia. Due to this change, infix operators are stored as SynExpr.LongIdent instead of SynExpr.Ident. a + b is parsed as SynLongIdent([op_Addition], [], [Some (OriginalNotation "+")]).
  • SynMeasure was extended with SynMeasure.Paren case.
  • Dynamic expressions (like x?y) are now represented as SynExpr.Dynamic in the Untyped Syntax Tree.
  • Members with get and/or set are now represented as SynMemberDefn.GetSetMember in the Untyped Syntax Tree.
  • DoesIdentifierNeedBackticks is removed, it should always be sufficient to call NormalizeIdentifierBackticks or else call something in PrettyNaming
  • AddBackticksToIdentifierIfNeeded is removed, it should always be sufficient to call NormalizeIdentifierBackticks
  • DeclarationListItem.Name --> DeclarationListItem.NameInList

F# 6.0 / Visual Studio 17.0

FSharp.Core 6.0.0

... (truncated)

Commits

Updates Fake.BuildServer.GitHubActions from 5.23.1 to 6.1.3

Release notes

Sourced from Fake.BuildServer.GitHubActions's releases.

6.1.3

ENHANCEMENT: SdkAssemblyResolver. Support using the latest installed SDK.

6.1.2

ENHANCEMENT: Updated runtime-identifier to more recent runtimes. LEGACY: Removed .NETFrameworkAssembly attribute fix on detecting .NET assemblies. ENHANCEMENT: SdkAssemblyResolver. Support detecting multiple .NET paths.

6.1.1

BUGFIX: Assembly resolver to pick a found SDK instead of first SDK, thanks @​Thorium - fsprojects/FAKE#2797 BUGFIX: Fix issue parsing global.json when using prerelease .NET SDKs, thanks @​numpsy - fsprojects/FAKE#2803 BUGFIX: Allow RunSettingsArguments to be set, thanks @​TheAngryByrd - fsprojects/FAKE#2771

6.1.0

BUGFIX: MSBuild.build adds a bad string at the end of properties, thanks @​0x53A - fsprojects/FAKE#2738 BUGFIX: Allow setting Msbuild max cpu on Linux, thanks @​TheAngryByrd - fsprojects/FAKE#2772 ENHANCEMENT: Added shorthash to git functions, thanks @​voronoipotato - fsprojects/FAKE#2752 ENHANCEMENT: Support for /tl:[auto:on:off] msbuild flag, thanks @​smoothdeveloper - fsprojects/FAKE#2768 ENHANCEMENT: Fixes for usage in .NET 8.0 enviroment projects. ENHANCEMENT: Add Context.setExecutionContextFromCommandLineArgs, thanks @​cataggar - fsprojects/FAKE#2750

6.0.0

ENHANCEMENT: Site UI fixes and documentation link fixes.

6.0.0-beta001

BUGFIX: Error detecting msbuild version on Linux, thanks @​yazeedobaid - fsprojects/FAKE#2709 ENHANCEMENT: Add ignoreConflicts parameter to paket push, thanks @​gdziadkiewicz - fsprojects/FAKE#2720 ENHANCEMENT: Add GitHub API to create a pull request, thanks @​yazeedobaid - fsprojects/FAKE#2724

6.0.0-alpha004

BUGFIX: Fix build by pinning Microsoft.build packages now that .NET 7 is out and fix links in website, thanks @​yazeedobaid - fsprojects/FAKE#2721 BUGFIX: Fix docs URL in Choco template., thanks @​yazeedobaid - fsprojects/FAKE#2718

6.0.0-alpha003

6.0.0-alpha002

  • ENHANCEMENT: Fix website assets loading

6.0.0-alpha001

Changelog

Sourced from Fake.BuildServer.GitHubActions's changelog.

6.1.3 - 2024-09-26

  • ENHANCEMENT: SdkAssemblyResolver. Support using the latest installed SDK.

6.1.2 - 2024-09-24

  • ENHANCEMENT: Updated runtime-identifier to more recent runtimes.
  • LEGACY: Removed .NETFrameworkAssembly attribute fix on detecting .NET assemblies.
  • ENHANCEMENT: SdkAssemblyResolver. Support detecting multiple .NET paths.

6.1.1 - 2024-08-30

6.1.0 - 2024-07-27

6.0.0 - 2023-02-20

  • ENHANCEMENT: Site UI fixes and documentation link fixes.

6.0.0-beta001 - 2022-12-21

6.0.0-alpha004 - 2022-11-17

6.0.0-alpha003 - 2022-11-11

6.0.0-alpha002 - 2022-11-02

  • ENHANCEMENT: Fix website assets loading

6.0.0-alpha001 - 2022-11-01

Commits
  • 1e9cc79 Add 6.1.3 release notes
  • 04c2b47 Yet another SdkAssemblyResolver fix (#2835)
  • e36d8be Updated 6.1.2 release notes
  • f67f06e ResolveDotNetRoots to support resoving multiple .NET version paths (#2832)
  • 4d0bf7d Some maintenance updates to help upcoming .NET 8 migration (#2826)
  • 4fe8bcf Fix a few more FS3548 warnings (#2828)
  • d4d76bc Remove Expecto.TestResults (#2831)
  • 050e199 Add Femto as an example of running FAKE with a build project (#2806)
  • 223ab63 build.fsx: Reference System.Reactive instead of System.Reactive.Compatibility...
  • 96914ba Mac CI debugging (#2827)
  • Additional commits viewable in compare view

Updates Fake.Core.ReleaseNotes from 5.23.1 to 6.1.3

Release notes

Sourced from Fake.Core.ReleaseNotes's releases.

6.1.3

ENHANCEMENT: SdkAssemblyResolver. Support using the latest installed SDK.

6.1.2

ENHANCEMENT: Updated runtime-identifier to more recent runtimes. LEGACY: Removed .NETFrameworkAssembly attribute fix on detecting .NET assemblies. ENHANCEMENT: SdkAssemblyResolver. Support detecting multiple .NET paths.

6.1.1

BUGFIX: Assembly resolver to pick a found SDK instead of first SDK, thanks @​Thorium - fsprojects/FAKE#2797 BUGFIX: Fix issue parsing global.json when using prerelease .NET SDKs, thanks @​numpsy - fsprojects/FAKE#2803 BUGFIX: Allow RunSettingsArguments to be set, thanks @​TheAngryByrd - fsprojects/FAKE#2771

6.1.0

BUGFIX: MSBuild.build adds a bad string at the end of properties, thanks @​0x53A - fsprojects/FAKE#2738 BUGFIX: Allow setting Msbuild max cpu on Linux, thanks @​TheAngryByrd - fsprojects/FAKE#2772 ENHANCEMENT: Added shorthash to git functions, thanks @​voronoipotato - fsprojects/FAKE#2752 ENHANCEMENT: Support for /tl:[auto:on:off] msbuild flag, thanks @​smoothdeveloper - fsprojects/FAKE#2768 ENHANCEMENT: Fixes for usage in .NET 8.0 enviroment projects. ENHANCEMENT: Add Context.setExecutionContextFromCommandLineArgs, thanks @​cataggar - fsprojects/FAKE#2750

6.0.0

ENHANCEMENT: Site UI fixes and documentation link fixes.

6.0.0-beta001

BUGFIX: Error detecting msbuild version on Linux, thanks @​yazeedobaid - fsprojects/FAKE#2709 ENHANCEMENT: Add ignoreConflicts parameter to paket push, thanks @​gdziadkiewicz - fsprojects/FAKE#2720 ENHANCEMENT: Add GitHub API to create a pull request, thanks @​yazeedobaid - fsprojects/FAKE#2724

6.0.0-alpha004

BUGFIX: Fix build by pinning Microsoft.build packages now that .NET 7 is out and fix links in website, thanks @​yazeedobaid - fsprojects/FAKE#2721 BUGFIX: Fix docs URL in Choco template., thanks @​yazeedobaid - fsprojects/FAKE#2718

6.0.0-alpha003

6.0.0-alpha002

  • ENHANCEMENT: Fix website assets loading

6.0.0-alpha001

Changelog

Sourced from Fake.Core.ReleaseNotes's changelog.

6.1.3 - 2024-09-26

  • ENHANCEMENT: SdkAssemblyResolver. Support using the latest installed SDK.

6.1.2 - 2024-09-24

  • ENHANCEMENT: Updated runtime-identifier to more recent runtimes.
  • LEGACY: Removed .NETFrameworkAssembly attribute fix on detecting .NET assemblies.
  • ENHANCEMENT: SdkAssemblyResolver. Support detecting multiple .NET paths.

6.1.1 - 2024-08-30

6.1.0 - 2024-07-27

6.0.0 - 2023-02-20

  • ENHANCEMENT: Site UI fixes and documentation link fixes.

6.0.0-beta001 - 2022-12-21

6.0.0-alpha004 - 2022-11-17

6.0.0-alpha003 - 2022-11-11

6.0.0-alpha002 - 2022-11-02

  • ENHANCEMENT: Fix website assets loading

6.0.0-alpha001 - 2022-11-01

Commits
  • 1e9cc79 Add 6.1.3 release notes
  • 04c2b47 Yet another SdkAssemblyResolver fix (#2835)
  • e36d8be Updated 6.1.2 release notes
  • f67f06e ResolveDotNetRoots to support resoving multiple .NET version paths (#2832)
  • 4d0bf7d Some maintenance updates to help upcoming .NET 8 migration (#2826)
  • 4fe8bcf Fix a few more FS3548 warnings (#2828)
  • d4d76bc Remove Expecto.TestResults (#2831)
  • 050e199 Add Femto as an example of running FAKE with a build project (#2806)
  • 223ab63 build.fsx: Reference System.Reactive instead of System.Reactive.Compatibility...
  • 96914ba Mac CI debugging (#2827)
  • Additional commits viewable in compare view

Updates Fake.Core.Target from 5.23.1 to 6.1.3

Release notes

Sourced from Fake.Core.Target's releases.

6.1.3

ENHANCEMENT: SdkAssemblyResolver. Support using the latest installed SDK.

6.1.2

ENHANCEMENT: Updated runtime-identifier to more recent runtimes. LEGACY: Removed .NETFrameworkAssembly attribute fix on detecting .NET assemblies. ENHANCEMENT: SdkAssemblyResolver. Support detecting multiple .NET paths.

6.1.1

BUGFIX: Assembly resolver to pick a found SDK instead of first SDK, thanks @​Thorium - fsprojects/FAKE#2797 BUGFIX: Fix issue parsing global.json when using prerelease .NET SDKs, thanks @​numpsy - fsprojects/FAKE#2803 BUGFIX: Allow RunSettingsArguments to be set, thanks @​TheAngryByrd - fsprojects/FAKE#2771

6.1.0

BUGFIX: MSBuild.build adds a bad string at the end of properties, thanks @​0x53A - fsprojects/FAKE#2738 BUGFIX: Allow setting Msbuild max cpu on Linux, thanks @​TheAngryByrd - fsprojects/FAKE#2772 ENHANCEMENT: Added shorthash to git functions, thanks @​voronoipotato - fsprojects/FAKE#2752 ENHANCEMENT: Support for /tl:[auto:on:off] msbuild flag, thanks @​smoothdeveloper - fsprojects/FAKE#2768 ENHANCEMENT: Fixes for usage in .NET 8.0 enviroment projects. ENHANCEMENT: Add Context.setExecutionContextFromCommandLineArgs, thanks @​cataggar - fsprojects/FAKE#2750

6.0.0

ENHANCEMENT: Site UI fixes and documentation link fixes.

6.0.0-beta001

BUGFIX: Error detecting msbuild version on Linux, thanks @​yazeedobaid - fsprojects/FAKE#2709 ENHANCEMENT: Add ignoreConflicts parameter to paket push, thanks @​gdziadkiewicz - fsprojects/FAKE#2720 ENHANCEMENT: Add GitHub API to create a pull request, thanks @​yazeedobaid - fsprojects/FAKE#2724

6.0.0-alpha004

BUGFIX: Fix build by pinning Microsoft.build packages now that .NET 7 is out and fix links in website, thanks @​yazeedobaid - fsprojects/FAKE#2721 BUGFIX: Fix docs URL in Choco template., thanks @​yazeedobaid - fsprojects/FAKE#2718

6.0.0-alpha003

6.0.0-alpha002

  • ENHANCEMENT: Fix website assets loading

6.0.0-alpha001

Changelog

Sourced from Fake.Core.Target's changelog.

6.1.3 - 2024-09-26

  • ENHANCEMENT: SdkAssemblyResolver. Support using the latest installed SDK.

6.1.2 - 2024-09-24

  • ENHANCEMENT: Updated runtime-identifier to more recent runtimes.
  • LEGACY: Removed .NETFrameworkAssembly attribute fix on detecting .NET assemblies.
  • ENHANCEMENT: SdkAssemblyResolver. Support detecting multiple .NET paths.

6.1.1 - 2024-08-30

6.1.0 - 2024-07-27

6.0.0 - 2023-02-20

  • ENHANCEMENT: Site UI fixes and documentation link fixes.

6.0.0-beta001 - 2022-12-21

6.0.0-alpha004 - 2022-11-17

6.0.0-alpha003 - 2022-11-11

6.0.0-alpha002 - 2022-11-02

  • ENHANCEMENT: Fix website assets loading

6.0.0-alpha001 - 2022-11-01

Bumps `FakeVersion` from 5.23.1 to 6.1.3.

Updates `Fake.Api.GitHub` from 5.23.1 to 6.1.3
- [Release notes](https://github.com/fsprojects/Fake/releases)
- [Changelog](https://github.com/fsprojects/FAKE/blob/master/RELEASE_NOTES.md)
- [Commits](fsprojects/FAKE@5.23.1...6.1.3)

Updates `FSharp.Core` from 7.0.200 to 8.0.301
- [Release notes](https://github.com/dotnet/fsharp/releases)
- [Changelog](https://github.com/dotnet/fsharp/blob/main/release-notes.md)
- [Commits](https://github.com/dotnet/fsharp/commits)

Updates `Fake.BuildServer.GitHubActions` from 5.23.1 to 6.1.3
- [Release notes](https://github.com/fsprojects/Fake/releases)
- [Changelog](https://github.com/fsprojects/FAKE/blob/master/RELEASE_NOTES.md)
- [Commits](fsprojects/FAKE@5.23.1...6.1.3)

Updates `Fake.Core.ReleaseNotes` from 5.23.1 to 6.1.3
- [Release notes](https://github.com/fsprojects/Fake/releases)
- [Changelog](https://github.com/fsprojects/FAKE/blob/master/RELEASE_NOTES.md)
- [Commits](fsprojects/FAKE@5.23.1...6.1.3)

Updates `Fake.Core.Target` from 5.23.1 to 6.1.3
- [Release notes](https://github.com/fsprojects/Fake/releases)
- [Changelog](https://github.com/fsprojects/FAKE/blob/master/RELEASE_NOTES.md)
- [Commits](fsprojects/FAKE@5.23.1...6.1.3)

Updates `Fake.IO.FileSystem` from 5.23.1 to 6.1.3
- [Release notes](https://github.com/fsprojects/Fake/releases)
- [Changelog](https://github.com/fsprojects/FAKE/blob/master/RELEASE_NOTES.md)
- [Commits](fsprojects/FAKE@5.23.1...6.1.3)

Updates `Fake.Core.UserInput` from 5.23.1 to 6.1.3
- [Release notes](https://github.com/fsprojects/Fake/releases)
- [Changelog](https://github.com/fsprojects/FAKE/blob/master/RELEASE_NOTES.md)
- [Commits](fsprojects/FAKE@5.23.1...6.1.3)

Updates `Fake.DotNet.Cli` from 5.23.1 to 6.1.3
- [Release notes](https://github.com/fsprojects/Fake/releases)
- [Changelog](https://github.com/fsprojects/FAKE/blob/master/RELEASE_NOTES.md)
- [Commits](fsprojects/FAKE@5.23.1...6.1.3)

Updates `System.Text.Json` from 4.7.0 to 7.0.3
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](https://github.com/dotnet/runtime/commits/v7.0.3)

Updates `Fake.DotNet.FsFormatting` from 5.23.1 to 6.1.3
- [Release notes](https://github.com/fsprojects/Fake/releases)
- [Changelog](https://github.com/fsprojects/FAKE/blob/master/RELEASE_NOTES.md)
- [Commits](fsprojects/FAKE@5.23.1...6.1.3)

Updates `Fake.IO.Zip` from 5.23.1 to 6.1.3
- [Release notes](https://github.com/fsprojects/Fake/releases)
- [Changelog](https://github.com/fsprojects/FAKE/blob/master/RELEASE_NOTES.md)
- [Commits](fsprojects/FAKE@5.23.1...6.1.3)

Updates `Fake.Tools.Git` from 5.23.1 to 6.1.3
- [Release notes](https://github.com/fsprojects/Fake/releases)
- [Changelog](https://github.com/fsprojects/FAKE/blob/master/RELEASE_NOTES.md)
- [Commits](fsprojects/FAKE@5.23.1...6.1.3)

---
updated-dependencies:
- dependency-name: Fake.Api.GitHub
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: FSharp.Core
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Fake.BuildServer.GitHubActions
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Fake.Core.ReleaseNotes
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Fake.Core.Target
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Fake.IO.FileSystem
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Fake.Core.UserInput
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Fake.DotNet.Cli
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: System.Text.Json
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Fake.DotNet.FsFormatting
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Fake.IO.Zip
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Fake.Tools.Git
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Sep 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file .NET Pull requests that update .net code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants