Skip to content

adds renovate#769

Merged
bvst merged 2 commits intomainfrom
chore/add-renovate
Dec 17, 2025
Merged

adds renovate#769
bvst merged 2 commits intomainfrom
chore/add-renovate

Conversation

@bvst
Copy link
Copy Markdown
Contributor

@bvst bvst commented Dec 17, 2025

No description provided.

@bvst bvst self-assigned this Dec 17, 2025
Copilot AI review requested due to automatic review settings December 17, 2025 09:12
@bvst bvst added the internal label Dec 17, 2025
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR adds a Renovate configuration file to enable automated dependency updates for the repository. The configuration extends a shared preset from fhidev/.github and includes a custom package rule to constrain .NET-related packages to versions compatible with .NET 9 (below version 10.0.0).

Key Changes

  • Adds renovate.json with shared preset configuration
  • Implements version constraints for Microsoft packages (ASP.NET Core, EntityFrameworkCore, Extensions) to stay below v10.0.0 until the project upgrades to a newer Target Framework Moniker (TFM)

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread renovate.json
"matchPackageNames": [
"/^Microsoft\\.AspNetCore\\./",
"/^Microsoft\\.Extensions\\./",
"/^Microsoft\\.EntityFrameworkCore/",
Copy link

Copilot AI Dec 17, 2025

Choose a reason for hiding this comment

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

The regex pattern for EntityFrameworkCore is missing a trailing period after "EntityFrameworkCore", which is inconsistent with the patterns on lines 13-14. This could potentially match unintended package names that start with "Microsoft.EntityFrameworkCore" but aren't actual EntityFrameworkCore packages (e.g., "Microsoft.EntityFrameworkCoreMyCustomPackage"). Consider changing it to /^Microsoft\.EntityFrameworkCore\./ to match the pattern used for AspNetCore and Extensions packages.

Suggested change
"/^Microsoft\\.EntityFrameworkCore/",
"/^Microsoft\\.EntityFrameworkCore\\./",

Copilot uses AI. Check for mistakes.
@bvst bvst merged commit d71dc44 into main Dec 17, 2025
3 checks passed
@bvst bvst deleted the chore/add-renovate branch December 17, 2025 09:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants