From 32c431fd526eeae822d45ff2cdd21a598b4d1f80 Mon Sep 17 00:00:00 2001
From: Woody <2997336+MWGMorningwood@users.noreply.github.com>
Date: Sat, 12 Jul 2025 00:24:39 -0400
Subject: [PATCH 01/24] Enhance Agent Service with .NET 9 optimizations and
command processing
- Updated AgentService to utilize Channel for command processing, improving performance and responsiveness.
- Refactored command handling logic to support new command types and improved error handling.
- Introduced SystemInfoProvider enhancements for better system information retrieval with semaphore for concurrency control.
- Updated TelemetryCollector to streamline telemetry data collection and support specific metrics requests.
- Migrated project to .NET 9, updating package references and ensuring compatibility with new features.
- Removed obsolete DTOs and consolidated data transfer objects for system information and performance metrics.
- Improved logging and error handling throughout the service for better observability.
---
.../Signal9.Agent.Functions.csproj | 11 +-
src/Signal9.Agent/Program.cs | 32 +-
src/Signal9.Agent/Services/AgentService.cs | 241 +++++++------
src/Signal9.Agent/Services/IAgentServices.cs | 35 --
.../Services/SystemInfoProvider.cs | 85 +++--
.../Services/TelemetryCollector.cs | 340 ++++--------------
src/Signal9.Agent/Signal9.Agent.csproj | 18 +-
src/Signal9.Shared/DTOs/AgentDTOs.cs | 55 ++-
src/Signal9.Shared/Models/AgentCommand.cs | 115 ++++--
src/Signal9.Shared/Signal9.Shared.csproj | 4 +-
.../Signal9.Web.Functions.csproj | 11 +-
src/Signal9.Web/Signal9.Web.csproj | 3 +-
12 files changed, 442 insertions(+), 508 deletions(-)
diff --git a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
index cbad82b..deb883e 100644
--- a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
+++ b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
@@ -1,24 +1,29 @@
- net8.0
+ net9.0
v4
Exe
enable
enable
Signal9.Agent.Functions
Signal9.Agent.Functions
+ default
-
-
+
+
+<<<<<<< Updated upstream
+=======
+
+>>>>>>> Stashed changes
diff --git a/src/Signal9.Agent/Program.cs b/src/Signal9.Agent/Program.cs
index ba54f7a..ec825b3 100644
--- a/src/Signal9.Agent/Program.cs
+++ b/src/Signal9.Agent/Program.cs
@@ -4,40 +4,53 @@
using Microsoft.Extensions.Configuration;
using Signal9.Agent.Services;
using Signal9.Shared.Configuration;
+using System.Text.Json;
var builder = Host.CreateApplicationBuilder(args);
-// Add configuration
+// Add configuration with .NET 9 enhancements
builder.Configuration
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile($"appsettings.{builder.Environment.EnvironmentName}.json", optional: true, reloadOnChange: true)
- .AddEnvironmentVariables();
+ .AddEnvironmentVariables()
+ .AddUserSecrets(optional: true);
-// Add logging
+// Add enhanced logging with .NET 9 structured logging
builder.Services.AddLogging(logging =>
{
logging.ClearProviders();
logging.AddConsole();
- if (OperatingSystem.IsWindows())
+
+ // Add structured logging with .NET 9 improvements
+ logging.AddSimpleConsole(options =>
{
- logging.AddEventLog();
- }
+ options.IncludeScopes = true;
+ options.SingleLine = true;
+ options.TimestampFormat = "[yyyy-MM-dd HH:mm:ss] ";
+ });
});
-// Add configuration options
+// Add configuration options with validation
builder.Services.Configure(
builder.Configuration.GetSection("AgentConfiguration"));
-// Add services
+// Add services with .NET 9 performance improvements
builder.Services.AddSingleton();
builder.Services.AddSingleton();
builder.Services.AddHostedService();
+// Add HttpClient with .NET 9 optimizations
+builder.Services.AddHttpClient("Signal9Api", client =>
+{
+ client.BaseAddress = new Uri(builder.Configuration["Signal9Api:BaseUrl"] ?? "https://api.signal9.com");
+ client.Timeout = TimeSpan.FromSeconds(30);
+});
+
var host = builder.Build();
// Create logger for startup
var logger = host.Services.GetRequiredService>();
-logger.LogInformation("Signal9 Agent starting up");
+logger.LogInformation("Signal9 Agent starting up with .NET 9 optimizations");
try
{
@@ -51,4 +64,5 @@
finally
{
logger.LogInformation("Signal9 Agent shutting down");
+ await host.StopAsync();
}
diff --git a/src/Signal9.Agent/Services/AgentService.cs b/src/Signal9.Agent/Services/AgentService.cs
index ab92719..e226cb8 100644
--- a/src/Signal9.Agent/Services/AgentService.cs
+++ b/src/Signal9.Agent/Services/AgentService.cs
@@ -7,10 +7,14 @@
using Signal9.Shared.Models;
using System.Text.Json;
using System.Text;
+using System.Threading.Channels;
-namespace Signal9.Agent.Services; ///
- /// Main agent service that handles communication with the Agent Functions and SignalR service
- ///
+namespace Signal9.Agent.Services;
+
+///
+/// Main agent service that handles communication with the Agent Functions and SignalR service
+/// Enhanced with .NET 9 performance optimizations
+///
public class AgentService : BackgroundService
{
private readonly ILogger _logger;
@@ -24,6 +28,11 @@ public class AgentService : BackgroundService
private string _agentId;
private int _reconnectAttempts = 0;
private readonly JsonSerializerOptions _jsonOptions;
+
+ // .NET 9 Channel-based command processing for better performance
+ private readonly Channel _commandChannel;
+ private readonly ChannelWriter _commandWriter;
+ private readonly ChannelReader _commandReader;
public AgentService(
ILogger logger,
@@ -38,50 +47,123 @@ public AgentService(
_agentId = Environment.MachineName + "_" + Guid.NewGuid().ToString("N")[..8];
_httpClient = new HttpClient();
_jsonOptions = new JsonSerializerOptions { PropertyNamingPolicy = JsonNamingPolicy.CamelCase };
+
+ // Initialize high-performance command channel
+ var channelOptions = new BoundedChannelOptions(1000)
+ {
+ FullMode = BoundedChannelFullMode.Wait,
+ SingleReader = true,
+ SingleWriter = false
+ };
+ _commandChannel = Channel.CreateBounded(channelOptions);
+ _commandWriter = _commandChannel.Writer;
+ _commandReader = _commandChannel.Reader;
}
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
_logger.LogInformation("Agent service starting with ID: {AgentId}", _agentId);
+ // Start command processing task
+ var commandProcessingTask = ProcessCommandsAsync(stoppingToken);
+
while (!stoppingToken.IsCancellationRequested)
{
try
{
// Register agent with Agent Functions
- await RegisterWithAgentFunctions();
+ await RegisterWithAgentFunctions().ConfigureAwait(false);
- // Connect to SignalR for real-time communication
- await ConnectToSignalR();
-
- // Start periodic tasks
+ // Connect to SignalR hub
+ await ConnectToSignalRHub().ConfigureAwait(false);
+
+ // Start heartbeat and telemetry timers
StartTimers();
-
- // Keep the service running while connected
- while (_signalRConnection?.State == HubConnectionState.Connected && !stoppingToken.IsCancellationRequested)
- {
- await Task.Delay(1000, stoppingToken);
- }
+
+ // Wait for connection to close or cancellation
+ await Task.Delay(Timeout.Infinite, stoppingToken).ConfigureAwait(false);
+ }
+ catch (OperationCanceledException)
+ {
+ break;
}
catch (Exception ex)
{
_logger.LogError(ex, "Error in agent service execution");
_reconnectAttempts++;
- // Exponential backoff for reconnection attempts
var delaySeconds = Math.Min(Math.Pow(2, _reconnectAttempts), 300); // Max 5 minutes
var delay = TimeSpan.FromSeconds(delaySeconds);
_logger.LogInformation("Reconnecting in {Delay} seconds (attempt {Attempt})", delay.TotalSeconds, _reconnectAttempts);
- await Task.Delay(delay, stoppingToken);
+ await Task.Delay(delay, stoppingToken).ConfigureAwait(false);
+ }
+ }
+
+ await commandProcessingTask.ConfigureAwait(false);
+ }
+
+ private async Task ProcessCommandsAsync(CancellationToken cancellationToken)
+ {
+ await foreach (var command in _commandReader.ReadAllAsync(cancellationToken).ConfigureAwait(false))
+ {
+ try
+ {
+ await ProcessCommandAsync(command).ConfigureAwait(false);
+ }
+ catch (Exception ex)
+ {
+ _logger.LogError(ex, "Error processing command {CommandType}", command.Type);
+ }
+ }
+ }
+
+ private async Task ProcessCommandAsync(AgentCommand command)
+ {
+ _logger.LogInformation("Processing command: {CommandType}", command.Type);
+
+ switch (command.Type)
+ {
+ case "GetSystemInfo":
+ var systemInfo = await _systemInfoProvider.GetSystemInfoAsync().ConfigureAwait(false);
+ await SendCommandResponse(command.Id, systemInfo).ConfigureAwait(false);
+ break;
+
+ case "GetPerformanceMetrics":
+ var metrics = await _systemInfoProvider.GetPerformanceMetricsAsync().ConfigureAwait(false);
+ await SendCommandResponse(command.Id, metrics).ConfigureAwait(false);
+ break;
+
+ case "RestartAgent":
+ _logger.LogInformation("Restart command received");
+ Environment.Exit(0);
+ break;
+
+ default:
+ _logger.LogWarning("Unknown command type: {CommandType}", command.Type);
+ break;
+ }
+ }
+
+ private async Task SendCommandResponse(string commandId, object response)
+ {
+ try
+ {
+ if (_signalRConnection?.State == HubConnectionState.Connected)
+ {
+ await _signalRConnection.SendAsync("CommandResponse", commandId, response).ConfigureAwait(false);
}
}
+ catch (Exception ex)
+ {
+ _logger.LogError(ex, "Error sending command response");
+ }
}
private async Task RegisterWithAgentFunctions()
{
try
{
- var systemInfo = await _systemInfoProvider.GetSystemInfoAsync();
+ var systemInfo = await _systemInfoProvider.GetSystemInfoAsync().ConfigureAwait(false);
var registrationData = new AgentRegistrationDto
{
AgentId = _agentId,
@@ -98,9 +180,10 @@ private async Task RegisterWithAgentFunctions()
var content = new StringContent(json, Encoding.UTF8, "application/json");
var registrationUrl = $"{_config.AgentFunctionsUrl}/api/RegisterAgent";
+ _httpClient.DefaultRequestHeaders.Clear();
_httpClient.DefaultRequestHeaders.Add("x-functions-key", _config.FunctionKey);
- var response = await _httpClient.PostAsync(registrationUrl, content);
+ var response = await _httpClient.PostAsync(registrationUrl, content).ConfigureAwait(false);
if (response.IsSuccessStatusCode)
{
_logger.LogInformation("Agent {AgentId} registered successfully with Agent Functions", _agentId);
@@ -120,21 +203,27 @@ private async Task RegisterWithAgentFunctions()
}
}
- private async Task ConnectToSignalR()
+ private async Task ConnectToSignalRHub()
{
try
- { _signalRConnection = new HubConnectionBuilder()
- .WithUrl($"{_config.AgentFunctionsUrl}/api")
- .WithAutomaticReconnect()
- .Build();
-
- // Set up event handlers
- _signalRConnection.On("ExecuteCommand", ExecuteCommandAsync);
- _signalRConnection.On
diff --git a/src/Signal9.Web/Signal9.WebPortal.csproj b/src/Signal9.Web/Signal9.WebPortal.csproj
deleted file mode 100644
index 5ed14e1..0000000
--- a/src/Signal9.Web/Signal9.WebPortal.csproj
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
- net8.0
- enable
- enable
- Signal9.Web
- Signal9.Web
-
-
-
-
-
-
-
From a37bc95929b8f63993a8364aac9f71d63b5f6b0b Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 14 Jul 2025 03:43:46 +0000
Subject: [PATCH 04/24] Bump Azure.Extensions.AspNetCore.Configuration.Secrets
and 10 others
Bumps Azure.Extensions.AspNetCore.Configuration.Secrets to 1.4.0
Bumps Azure.Identity to 1.14.2
Bumps Microsoft.ApplicationInsights.WorkerService to 2.23.0
Bumps Microsoft.Azure.Functions.Worker.ApplicationInsights to 2.0.0
Bumps Microsoft.Azure.Functions.Worker.Extensions.Http to 3.3.0
Bumps Microsoft.Azure.Functions.Worker.Extensions.SignalRService to 2.0.1
Bumps Microsoft.Extensions.Configuration.Abstractions from 9.0.0 to 9.0.7
Bumps Microsoft.Extensions.DependencyInjection.Abstractions from 9.0.0 to 9.0.7
Bumps Microsoft.Extensions.Hosting from 9.0.0 to 9.0.7
Bumps Microsoft.Extensions.Logging.Abstractions from 9.0.0 to 9.0.7
Bumps Newtonsoft.Json from 13.0.1 to 13.0.3
---
updated-dependencies:
- dependency-name: Azure.Extensions.AspNetCore.Configuration.Secrets
dependency-version: 1.4.0
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: Azure.Extensions.AspNetCore.Configuration.Secrets
dependency-version: 1.4.0
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: Azure.Identity
dependency-version: 1.14.2
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: Azure.Identity
dependency-version: 1.14.2
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: Microsoft.ApplicationInsights.WorkerService
dependency-version: 2.23.0
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: Microsoft.ApplicationInsights.WorkerService
dependency-version: 2.23.0
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: Microsoft.Azure.Functions.Worker.ApplicationInsights
dependency-version: 2.0.0
dependency-type: direct:production
update-type: version-update:semver-major
- dependency-name: Microsoft.Azure.Functions.Worker.ApplicationInsights
dependency-version: 2.0.0
dependency-type: direct:production
update-type: version-update:semver-major
- dependency-name: Microsoft.Azure.Functions.Worker.Extensions.Http
dependency-version: 3.3.0
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: Microsoft.Azure.Functions.Worker.Extensions.Http
dependency-version: 3.3.0
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: Microsoft.Azure.Functions.Worker.Extensions.SignalRService
dependency-version: 2.0.1
dependency-type: direct:production
update-type: version-update:semver-major
- dependency-name: Microsoft.Azure.Functions.Worker.Extensions.SignalRService
dependency-version: 2.0.1
dependency-type: direct:production
update-type: version-update:semver-major
- dependency-name: Microsoft.Extensions.Configuration.Abstractions
dependency-version: 9.0.7
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.DependencyInjection.Abstractions
dependency-version: 9.0.7
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Hosting
dependency-version: 9.0.7
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Logging.Abstractions
dependency-version: 9.0.7
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Newtonsoft.Json
dependency-version: 13.0.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
.../Signal9.Agent.Functions.csproj | 12 ++++++------
src/Signal9.Agent/Signal9.Agent.csproj | 2 +-
src/Signal9.Shared/Signal9.Shared.csproj | 8 ++++----
.../Signal9.Web.Functions.csproj | 12 ++++++------
4 files changed, 17 insertions(+), 17 deletions(-)
diff --git a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
index c992242..09777bc 100644
--- a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
+++ b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
@@ -14,13 +14,13 @@
-
-
+
+
-
-
-
-
+
+
+
+
diff --git a/src/Signal9.Agent/Signal9.Agent.csproj b/src/Signal9.Agent/Signal9.Agent.csproj
index e6a3d55..84f460d 100644
--- a/src/Signal9.Agent/Signal9.Agent.csproj
+++ b/src/Signal9.Agent/Signal9.Agent.csproj
@@ -10,7 +10,7 @@
-
+
diff --git a/src/Signal9.Shared/Signal9.Shared.csproj b/src/Signal9.Shared/Signal9.Shared.csproj
index 2ff3c3f..859115a 100644
--- a/src/Signal9.Shared/Signal9.Shared.csproj
+++ b/src/Signal9.Shared/Signal9.Shared.csproj
@@ -8,10 +8,10 @@
-
-
-
-
+
+
+
+
diff --git a/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj b/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
index f87ebfd..f2d8ba2 100644
--- a/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
+++ b/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
@@ -14,12 +14,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
From 901152bdf3517c2153549860042a5f9f07284e18 Mon Sep 17 00:00:00 2001
From: Woody <2997336+MWGMorningwood@users.noreply.github.com>
Date: Fri, 18 Jul 2025 09:57:09 -0400
Subject: [PATCH 05/24] Update dotnet.yml
---
.github/workflows/dotnet.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml
index 217f7cb..dd57671 100644
--- a/.github/workflows/dotnet.yml
+++ b/.github/workflows/dotnet.yml
@@ -19,7 +19,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
- dotnet-version: 8.0.x
+ dotnet-version: 9.x
- name: Restore dependencies
run: dotnet restore
- name: Build
From 13fd3e730429e1b38015b6bcce4334f692f1fabd Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 5 Aug 2025 08:51:37 +0000
Subject: [PATCH 06/24] Bump Microsoft.AspNetCore.SignalR.Client and 12 others
Bumps Microsoft.AspNetCore.SignalR.Client to 9.0.8
Bumps Microsoft.Extensions.Configuration.Abstractions from 9.0.7 to 9.0.8
Bumps Microsoft.Extensions.Configuration.EnvironmentVariables from 9.0.7 to 9.0.8
Bumps Microsoft.Extensions.Configuration.Json from 9.0.7 to 9.0.8
Bumps Microsoft.Extensions.DependencyInjection.Abstractions from 9.0.7 to 9.0.8
Bumps Microsoft.Extensions.Hosting from 9.0.7 to 9.0.8
Bumps Microsoft.Extensions.Http from 9.0.7 to 9.0.8
Bumps Microsoft.Extensions.Logging.Abstractions from 9.0.7 to 9.0.8
Bumps Microsoft.Extensions.Logging.Console from 9.0.7 to 9.0.8
Bumps Microsoft.Extensions.Logging.EventLog from 9.0.7 to 9.0.8
Bumps System.Diagnostics.PerformanceCounter from 9.0.7 to 9.0.8
Bumps System.Management from 9.0.7 to 9.0.8
Bumps System.Text.Json from 9.0.7 to 9.0.8
---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.SignalR.Client
dependency-version: 9.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.AspNetCore.SignalR.Client
dependency-version: 9.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Configuration.Abstractions
dependency-version: 9.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Configuration.EnvironmentVariables
dependency-version: 9.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Configuration.Json
dependency-version: 9.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.DependencyInjection.Abstractions
dependency-version: 9.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Hosting
dependency-version: 9.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Logging.Console
dependency-version: 9.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Logging.EventLog
dependency-version: 9.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Http
dependency-version: 9.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Logging.Abstractions
dependency-version: 9.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: System.Diagnostics.PerformanceCounter
dependency-version: 9.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: System.Management
dependency-version: 9.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: System.Text.Json
dependency-version: 9.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
src/Signal9.Agent/Signal9.Agent.csproj | 18 +++++++++---------
src/Signal9.Shared/Signal9.Shared.csproj | 6 +++---
src/Signal9.Web/Signal9.Web.csproj | 4 ++--
3 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/src/Signal9.Agent/Signal9.Agent.csproj b/src/Signal9.Agent/Signal9.Agent.csproj
index 84f460d..c066c63 100644
--- a/src/Signal9.Agent/Signal9.Agent.csproj
+++ b/src/Signal9.Agent/Signal9.Agent.csproj
@@ -9,15 +9,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/src/Signal9.Shared/Signal9.Shared.csproj b/src/Signal9.Shared/Signal9.Shared.csproj
index 859115a..1c600d5 100644
--- a/src/Signal9.Shared/Signal9.Shared.csproj
+++ b/src/Signal9.Shared/Signal9.Shared.csproj
@@ -8,9 +8,9 @@
-
-
-
+
+
+
diff --git a/src/Signal9.Web/Signal9.Web.csproj b/src/Signal9.Web/Signal9.Web.csproj
index d0d125c..7436157 100644
--- a/src/Signal9.Web/Signal9.Web.csproj
+++ b/src/Signal9.Web/Signal9.Web.csproj
@@ -14,8 +14,8 @@
-
-
+
+
From 0db18f5f1f400d4d39f25179d1b94d58452ec23f Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 10 Sep 2025 02:44:47 +0000
Subject: [PATCH 07/24] Bump Azure.Identity from 1.14.2 to 1.16.0
---
updated-dependencies:
- dependency-name: Azure.Identity
dependency-version: 1.16.0
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: Azure.Identity
dependency-version: 1.16.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj | 2 +-
src/Signal9.Web.Functions/Signal9.Web.Functions.csproj | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
index 09777bc..c01ac13 100644
--- a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
+++ b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
@@ -19,7 +19,7 @@
-
+
diff --git a/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj b/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
index f2d8ba2..182f0b4 100644
--- a/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
+++ b/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
@@ -18,7 +18,7 @@
-
+
From 448b0728dd370663e9d91717457e3e62c04dd595 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 10 Sep 2025 02:45:16 +0000
Subject: [PATCH 08/24] Bump Microsoft.AspNetCore.SignalR.Client from 9.0.8 to
9.0.9
---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.SignalR.Client
dependency-version: 9.0.9
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.AspNetCore.SignalR.Client
dependency-version: 9.0.9
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
src/Signal9.Agent/Signal9.Agent.csproj | 2 +-
src/Signal9.Web/Signal9.Web.csproj | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Signal9.Agent/Signal9.Agent.csproj b/src/Signal9.Agent/Signal9.Agent.csproj
index c066c63..85a0bf9 100644
--- a/src/Signal9.Agent/Signal9.Agent.csproj
+++ b/src/Signal9.Agent/Signal9.Agent.csproj
@@ -9,7 +9,7 @@
-
+
diff --git a/src/Signal9.Web/Signal9.Web.csproj b/src/Signal9.Web/Signal9.Web.csproj
index 7436157..5fe9c63 100644
--- a/src/Signal9.Web/Signal9.Web.csproj
+++ b/src/Signal9.Web/Signal9.Web.csproj
@@ -14,7 +14,7 @@
-
+
From 24edef9beb089b79c4cfda38a5ac4d5e803424e1 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 10 Sep 2025 02:45:25 +0000
Subject: [PATCH 09/24] Bump Microsoft.Extensions.Configuration.Abstractions
from 9.0.8 to 9.0.9
---
updated-dependencies:
- dependency-name: Microsoft.Extensions.Configuration.Abstractions
dependency-version: 9.0.9
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
src/Signal9.Shared/Signal9.Shared.csproj | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Signal9.Shared/Signal9.Shared.csproj b/src/Signal9.Shared/Signal9.Shared.csproj
index 1c600d5..052a38c 100644
--- a/src/Signal9.Shared/Signal9.Shared.csproj
+++ b/src/Signal9.Shared/Signal9.Shared.csproj
@@ -8,7 +8,7 @@
-
+
From 8ab9254ff431d108c2cf1fd682a46d15cb4be4b7 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 10 Sep 2025 02:46:33 +0000
Subject: [PATCH 10/24] Bump Microsoft.Extensions.Http from 9.0.8 to 9.0.9
---
updated-dependencies:
- dependency-name: Microsoft.Extensions.Http
dependency-version: 9.0.9
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
src/Signal9.Agent/Signal9.Agent.csproj | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Signal9.Agent/Signal9.Agent.csproj b/src/Signal9.Agent/Signal9.Agent.csproj
index c066c63..e91563c 100644
--- a/src/Signal9.Agent/Signal9.Agent.csproj
+++ b/src/Signal9.Agent/Signal9.Agent.csproj
@@ -15,7 +15,7 @@
-
+
From 0db00253e620a7a7322a10c1f7ba9962e2625711 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 19 Sep 2025 05:09:33 +0000
Subject: [PATCH 11/24] Bump
Microsoft.Extensions.Configuration.EnvironmentVariables and 4 others
Bumps Microsoft.Extensions.Configuration.EnvironmentVariables from 9.0.8 to 9.0.9
Bumps Microsoft.Extensions.Configuration.Json from 9.0.8 to 9.0.9
Bumps Microsoft.Extensions.Hosting from 9.0.8 to 9.0.9
Bumps Microsoft.Extensions.Logging.Console from 9.0.8 to 9.0.9
Bumps Microsoft.Extensions.Logging.EventLog from 9.0.8 to 9.0.9
---
updated-dependencies:
- dependency-name: Microsoft.Extensions.Configuration.EnvironmentVariables
dependency-version: 9.0.9
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Configuration.Json
dependency-version: 9.0.9
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Hosting
dependency-version: 9.0.9
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Logging.Console
dependency-version: 9.0.9
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Extensions.Logging.EventLog
dependency-version: 9.0.9
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
src/Signal9.Agent/Signal9.Agent.csproj | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/Signal9.Agent/Signal9.Agent.csproj b/src/Signal9.Agent/Signal9.Agent.csproj
index 1ec0442..1efda8d 100644
--- a/src/Signal9.Agent/Signal9.Agent.csproj
+++ b/src/Signal9.Agent/Signal9.Agent.csproj
@@ -10,11 +10,11 @@
-
-
-
-
-
+
+
+
+
+
From efc130f5bd5b647fdbe762a778d7e31dd64fb1fd Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 22 Sep 2025 02:31:15 +0000
Subject: [PATCH 12/24] Bump Microsoft.Azure.Functions.Worker from 2.0.0 to
2.1.0
---
updated-dependencies:
- dependency-name: Microsoft.Azure.Functions.Worker
dependency-version: 2.1.0
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: Microsoft.Azure.Functions.Worker
dependency-version: 2.1.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj | 2 +-
src/Signal9.Web.Functions/Signal9.Web.Functions.csproj | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
index c01ac13..a689aec 100644
--- a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
+++ b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
@@ -12,7 +12,7 @@
-
+
diff --git a/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj b/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
index 182f0b4..3f1c52f 100644
--- a/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
+++ b/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
@@ -12,7 +12,7 @@
-
+
From a36489800bf4f2af9edaf8fc63dc837b86e2c6d6 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 22 Sep 2025 02:32:33 +0000
Subject: [PATCH 13/24] Bump Newtonsoft.Json from 13.0.3 to 13.0.4
---
updated-dependencies:
- dependency-name: Newtonsoft.Json
dependency-version: 13.0.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
src/Signal9.Shared/Signal9.Shared.csproj | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Signal9.Shared/Signal9.Shared.csproj b/src/Signal9.Shared/Signal9.Shared.csproj
index 052a38c..b7d9036 100644
--- a/src/Signal9.Shared/Signal9.Shared.csproj
+++ b/src/Signal9.Shared/Signal9.Shared.csproj
@@ -11,7 +11,7 @@
-
+
From eef8a19a08c75fb4fc97c79c04a3a0a4977f4b46 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 15 Oct 2025 02:44:50 +0000
Subject: [PATCH 14/24] Bump System.Management from 9.0.8 to 9.0.10
---
updated-dependencies:
- dependency-name: System.Management
dependency-version: 9.0.10
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
src/Signal9.Agent/Signal9.Agent.csproj | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Signal9.Agent/Signal9.Agent.csproj b/src/Signal9.Agent/Signal9.Agent.csproj
index 1efda8d..c2b2ae6 100644
--- a/src/Signal9.Agent/Signal9.Agent.csproj
+++ b/src/Signal9.Agent/Signal9.Agent.csproj
@@ -16,7 +16,7 @@
-
+
From 7d404253203e1c208323935d73fa2ee9ba74b085 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 20 Nov 2025 17:06:29 -0500
Subject: [PATCH 15/24] Bump Azure.Identity from 1.16.0 to 1.17.0 (#37)
---
updated-dependencies:
- dependency-name: Azure.Identity
dependency-version: 1.17.0
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: Azure.Identity
dependency-version: 1.17.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj | 2 +-
src/Signal9.Web.Functions/Signal9.Web.Functions.csproj | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
index a689aec..d0f97e3 100644
--- a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
+++ b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
@@ -19,7 +19,7 @@
-
+
diff --git a/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj b/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
index 3f1c52f..53dd092 100644
--- a/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
+++ b/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
@@ -18,7 +18,7 @@
-
+
From 1e65590ce3f435581bd3ca6c37e68b95106d7ac6 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 20 Nov 2025 17:06:56 -0500
Subject: [PATCH 16/24] Bump Microsoft.AspNetCore.SignalR.Client from 9.0.9 to
9.0.10 (#38)
---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.SignalR.Client
dependency-version: 9.0.10
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.AspNetCore.SignalR.Client
dependency-version: 9.0.10
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
src/Signal9.Agent/Signal9.Agent.csproj | 2 +-
src/Signal9.Web/Signal9.Web.csproj | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Signal9.Agent/Signal9.Agent.csproj b/src/Signal9.Agent/Signal9.Agent.csproj
index c2b2ae6..9979865 100644
--- a/src/Signal9.Agent/Signal9.Agent.csproj
+++ b/src/Signal9.Agent/Signal9.Agent.csproj
@@ -9,7 +9,7 @@
-
+
diff --git a/src/Signal9.Web/Signal9.Web.csproj b/src/Signal9.Web/Signal9.Web.csproj
index 5fe9c63..5d933c0 100644
--- a/src/Signal9.Web/Signal9.Web.csproj
+++ b/src/Signal9.Web/Signal9.Web.csproj
@@ -14,7 +14,7 @@
-
+
From 894bf8c2ec2e93752b1df643711648b220fa46b7 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 21 Nov 2025 10:22:34 -0500
Subject: [PATCH 17/24] Bump Microsoft.Extensions.Configuration.Abstractions
from 9.0.9 to 10.0.0 (#42)
---
updated-dependencies:
- dependency-name: Microsoft.Extensions.Configuration.Abstractions
dependency-version: 10.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
src/Signal9.Shared/Signal9.Shared.csproj | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Signal9.Shared/Signal9.Shared.csproj b/src/Signal9.Shared/Signal9.Shared.csproj
index b7d9036..8a9cee4 100644
--- a/src/Signal9.Shared/Signal9.Shared.csproj
+++ b/src/Signal9.Shared/Signal9.Shared.csproj
@@ -8,7 +8,7 @@
-
+
From 40ac6735296ca8551ba11688658762e24351a096 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 21 Nov 2025 10:26:40 -0500
Subject: [PATCH 18/24] Bump System.Diagnostics.PerformanceCounter from 9.0.8
to 10.0.0 (#43)
---
updated-dependencies:
- dependency-name: System.Diagnostics.PerformanceCounter
dependency-version: 10.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
src/Signal9.Agent/Signal9.Agent.csproj | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Signal9.Agent/Signal9.Agent.csproj b/src/Signal9.Agent/Signal9.Agent.csproj
index 9979865..d0def47 100644
--- a/src/Signal9.Agent/Signal9.Agent.csproj
+++ b/src/Signal9.Agent/Signal9.Agent.csproj
@@ -17,7 +17,7 @@
-
+
From b78938b488d6ce65f1e0a86bd18efd4817c380b2 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 21 Nov 2025 10:27:01 -0500
Subject: [PATCH 19/24] Bump Azure.Identity from 1.17.0 to 1.17.1 (#44)
---
updated-dependencies:
- dependency-name: Azure.Identity
dependency-version: 1.17.1
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Azure.Identity
dependency-version: 1.17.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj | 2 +-
src/Signal9.Web.Functions/Signal9.Web.Functions.csproj | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
index d0f97e3..b489f69 100644
--- a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
+++ b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
@@ -19,7 +19,7 @@
-
+
diff --git a/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj b/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
index 53dd092..f2f2f9c 100644
--- a/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
+++ b/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
@@ -18,7 +18,7 @@
-
+
From bc723e15dbd4529ce5e61ed828bee2653cb78667 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 12 Dec 2025 11:21:34 -0500
Subject: [PATCH 20/24] Bump Microsoft.Azure.Functions.Worker from 2.1.0 to
2.51.0 (#46)
---
updated-dependencies:
- dependency-name: Microsoft.Azure.Functions.Worker
dependency-version: 2.51.0
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: Microsoft.Azure.Functions.Worker
dependency-version: 2.51.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
index b489f69..cc82543 100644
--- a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
+++ b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
@@ -12,7 +12,7 @@
-
+
From 0cbb84a9a7bf154f777a7c3b672d497fb04f329d Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 12 Dec 2025 11:21:54 -0500
Subject: [PATCH 21/24] Bump
Microsoft.Azure.Functions.Worker.ApplicationInsights from 2.0.0 to 2.50.0
(#47)
---
updated-dependencies:
- dependency-name: Microsoft.Azure.Functions.Worker.ApplicationInsights
dependency-version: 2.50.0
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: Microsoft.Azure.Functions.Worker.ApplicationInsights
dependency-version: 2.50.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj | 2 +-
src/Signal9.Web.Functions/Signal9.Web.Functions.csproj | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
index cc82543..6976c86 100644
--- a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
+++ b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
@@ -18,7 +18,7 @@
-
+
diff --git a/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj b/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
index f2f2f9c..515f873 100644
--- a/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
+++ b/src/Signal9.Web.Functions/Signal9.Web.Functions.csproj
@@ -17,7 +17,7 @@
-
+
From a9c967ec22c6490b970cefcd00e4718173b7fed4 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 12 Dec 2025 11:22:06 -0500
Subject: [PATCH 22/24] Bump Microsoft.AspNetCore.SignalR.Client from 9.0.10 to
10.0.1 (#51)
---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.SignalR.Client
dependency-version: 10.0.1
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
src/Signal9.Agent/Signal9.Agent.csproj | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Signal9.Agent/Signal9.Agent.csproj b/src/Signal9.Agent/Signal9.Agent.csproj
index d0def47..e0deacc 100644
--- a/src/Signal9.Agent/Signal9.Agent.csproj
+++ b/src/Signal9.Agent/Signal9.Agent.csproj
@@ -9,7 +9,7 @@
-
+
From 6d94aa66d77ff2e1407a837b5e865191da5a6f89 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 12 Dec 2025 11:22:27 -0500
Subject: [PATCH 23/24] Bump Microsoft.Extensions.Configuration.Abstractions
from 10.0.0 to 10.0.1 (#53)
---
updated-dependencies:
- dependency-name: Microsoft.Extensions.Configuration.Abstractions
dependency-version: 10.0.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
src/Signal9.Shared/Signal9.Shared.csproj | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Signal9.Shared/Signal9.Shared.csproj b/src/Signal9.Shared/Signal9.Shared.csproj
index 8a9cee4..d7dad94 100644
--- a/src/Signal9.Shared/Signal9.Shared.csproj
+++ b/src/Signal9.Shared/Signal9.Shared.csproj
@@ -8,7 +8,7 @@
-
+
From e0c1cb5fac4b569a6261ce993d749bd7a3292e5d Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 12 Dec 2025 11:24:43 -0500
Subject: [PATCH 24/24] Bump Microsoft.Azure.Functions.Worker.Sdk from 2.0.5 to
2.0.7 (#52)
---
updated-dependencies:
- dependency-name: Microsoft.Azure.Functions.Worker.Sdk
dependency-version: 2.0.7
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: Microsoft.Azure.Functions.Worker.Sdk
dependency-version: 2.0.7
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
index 6976c86..e6b70fb 100644
--- a/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
+++ b/src/Signal9.Agent.Functions/Signal9.Agent.Functions.csproj
@@ -13,7 +13,7 @@
-
+