Bump NuGet dependencies (Dependabot PRs #278–#282) + fix session-start hook#283
Merged
Conversation
- MudBlazor 9.5.0 → 9.6.0 (Web, Client, ComponentTests) - Scalar.AspNetCore 2.16.4 → 2.16.6 (Web) - Mapster 10.0.8 → 10.0.10 (Web) - Microsoft.Playwright.Xunit 1.60.0 → 1.61.0 (Playwright) - Microsoft.NET.Test.Sdk 18.6.0 → 18.7.0 (Tests, ComponentTests, Playwright) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017KZdRP8XfCXAP62kMuYgqS
The hook was calling apt-get install dotnet-sdk-10.0 without first adding the Microsoft package repository, so apt couldn't find the package. Now downloads packages-microsoft-prod.deb for the detected Ubuntu version before running apt-get update. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017KZdRP8XfCXAP62kMuYgqS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.claude/hooks/session-start.sh: the hook was failing silently because it calledapt-get install dotnet-sdk-10.0without first registering the Microsoft package feed. Added a step to download and installpackages-microsoft-prod.debfor the detected Ubuntu version before runningapt-get update.Closes #278, #279, #280, #281, #282
Test plan
dotnet test TimeTracker.Tests --filter "Category!=Container")dotnet test TimeTracker.ComponentTests)Generated by Claude Code