Skip to content

chore: Bump the nuget-minor-and-patch group with 4 updates - #43

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/nuget-minor-and-patch-0c0312fbdb
Open

chore: Bump the nuget-minor-and-patch group with 4 updates#43
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/nuget-minor-and-patch-0c0312fbdb

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor

Updated Avalonia from 12.1.1 to 12.1.2.

Release notes

Sourced from Avalonia's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated DotNext from 6.6.2 to 6.7.0.

Release notes

Sourced from DotNext's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Testing.Platform.MSBuild from 2.3.3 to 2.4.0.

Release notes

Sourced from Microsoft.Testing.Platform.MSBuild's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated SvcSystems.UI.Terminal from 1.1.2 to 1.1.4.

Release notes

Sourced from SvcSystems.UI.Terminal's releases.

1.1.4

1.1.4 (2026-09-03)

Bug Fixes

1.1.3

1.1.3 (2026-08-29)

Bug Fixes

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @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

Bumps Avalonia from 12.1.1 to 12.1.2
Bumps DotNext from 6.6.2 to 6.7.0
Bumps Microsoft.Testing.Platform.MSBuild from 2.3.3 to 2.4.0
Bumps SvcSystems.UI.Terminal from 1.1.2 to 1.1.4

---
updated-dependencies:
- dependency-name: DotNext
  dependency-version: 6.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Microsoft.Testing.Platform.MSBuild
  dependency-version: 2.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget-minor-and-patch
- dependency-name: Avalonia
  dependency-version: 12.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
- dependency-name: SvcSystems.UI.Terminal
  dependency-version: 1.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Sep 7, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@codeant-ai

codeant-ai Bot commented Sep 7, 2026

Copy link
Copy Markdown

Skipping PR review because a bot author is detected.

If you want to trigger CodeAnt AI, comment @codeant-ai review to trigger a manual review.

Comment thread Directory.Packages.props
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Avalonia" Version="12.1.1" />
<PackageVersion Include="Avalonia" Version="12.1.2" />

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CRITICAL: Avalonia bumped in wrong dependabot group — creates version mismatch

Avalonia is explicitly excluded from the nuget-minor-and-patch group by .github/dependabot.yml line 31 (exclude-patterns: ["Avalonia*", ...]). All Avalonia* packages are designated for the separate avalonia group (lines 24–25), whose own comment states: "a major split across PRs cannot build."

A dedicated avalonia group PR already correctly bumps all five packages together: Avalonia, Avalonia.Desktop, Avalonia.Headless, Avalonia.Themes.Fluent (12.1.1→12.1.2), and ReactiveUI.Avalonia (12.0.3→12.1.1).

Bumping only Avalonia to 12.1.2 here leaves Avalonia.Desktop (line 7), Avalonia.Headless (line 8), and Avalonia.Themes.Fluent (line 9) at 12.1.1 — a version mismatch within the same release train that can cause assembly resolution conflicts or MissingMethodException/TypeLoadException at runtime. If merged, this also guarantees merge conflicts with the dedicated avalonia PR.

Remove the Avalonia bump from this PR; the avalonia group PR already handles it correctly.

Suggested change
<PackageVersion Include="Avalonia" Version="12.1.2" />
<PackageVersion Include="Avalonia" Version="12.1.1" />

Reply with @kilocode-bot fix it to have Kilo Code address this issue.

@kilo-code-bot

kilo-code-bot Bot commented Sep 7, 2026

Copy link
Copy Markdown

Code Review Summary

Status: 1 Issue Found | Recommendation: Address before merge

Overview

Severity Count
CRITICAL 1
WARNING 0
SUGGESTION 0
Issue Details (click to expand)

CRITICAL

File Line Issue
Directory.Packages.props 6 Avalonia bumped to 12.1.2 in the nuget-minor-and-patch group, but it is excluded from that group by dependabot.yml (line 31) and all Avalonia* packages belong in the separate avalonia group. Companion packages Avalonia.Desktop, Avalonia.Headless, Avalonia.Themes.Fluent (lines 7–9) remain at 12.1.1, creating a version mismatch. A dedicated avalonia group PR already correctly bumps all five Avalonia ecosystem packages together.
Files Reviewed (1 files)
  • Directory.Packages.props - 1 issue

Fix these issues in Kilo Cloud


Reviewed by laguna-s-2.1:free · Input: 155.3K · Output: 22.8K · Cached: 438.3K

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.

0 participants