Skip to content

Commit 1f21f61

Browse files
renovate[bot]hkfgotomkerkhove
authored
chore(deps): update .net (#2517)
* chore(deps): update .net * Update src/Promitor.Agents.Scraper/Dockerfile.windows Co-authored-by: Tom Kerkhove <[email protected]> * Update src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows Co-authored-by: Tom Kerkhove <[email protected]> * Update src/Promitor.Agents.Scraper/Dockerfile.windows Co-authored-by: Tom Kerkhove <[email protected]> * Update src/Promitor.Agents.ResourceDiscovery/Dockerfile.windows Co-authored-by: Tom Kerkhove <[email protected]> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Stephen Chen <[email protected]> Co-authored-by: Tom Kerkhove <[email protected]>
1 parent 3adfb62 commit 1f21f61

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

src/Promitor.Agents.Core/Promitor.Agents.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<PackageReference Include="CronScheduler.AspNetCore" Version="3.1.0" />
2222
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
2323
<PackageReference Include="Microsoft.AspNetCore.Mvc.Formatters.Json" Version="2.2.0" />
24-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.6" />
24+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.10" />
2525
<PackageReference Include="NetEscapades.Configuration.Yaml" Version="3.1.0" />
2626
<PackageReference Include="Prometheus.Client" Version="5.2.0" />
2727
<PackageReference Include="Prometheus.Client.AspNetCore" Version="5.0.0" />

src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:8.0.301-cbl-mariner2.0 AS build
1+
FROM mcr.microsoft.com/dotnet/sdk:8.0.403-cbl-mariner2.0 AS build
22
WORKDIR /src
33
ARG VERSION="UNSET-VERSION"
44
COPY Promitor.Agents.ResourceDiscovery/* Promitor.Agents.ResourceDiscovery/
@@ -14,7 +14,7 @@ COPY Promitor.Integrations.Sinks.Core/* Promitor.Integrations.Sinks.Core/
1414
COPY Promitor.Integrations.Sinks.Prometheus/* Promitor.Integrations.Sinks.Prometheus/
1515
RUN dotnet publish Promitor.Agents.ResourceDiscovery/Promitor.Agents.ResourceDiscovery.csproj --configuration release --output /app /p:Version=$VERSION
1616

17-
FROM mcr.microsoft.com/dotnet/aspnet:8.0.6-cbl-mariner2.0-distroless AS runtime-base
17+
FROM mcr.microsoft.com/dotnet/aspnet:8.0.10-cbl-mariner2.0-distroless AS runtime-base
1818

1919
FROM mcr.microsoft.com/cbl-mariner/base/core:2.0 AS installer
2020

src/Promitor.Agents.ResourceDiscovery/Promitor.Agents.ResourceDiscovery.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@
3636
<PackageReference Include="Guard.NET" Version="3.0.0" />
3737
<PackageReference Include="Microsoft.Azure.Management.ResourceGraph" Version="2.1.0" />
3838
<PackageReference Include="Microsoft.Azure.Services.AppAuthentication" Version="1.6.2" />
39-
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
39+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.1" />
4040
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.20.1" />
4141
<PackageReference Include="NetEscapades.Configuration.Yaml" Version="3.1.0" />
4242
<PackageReference Include="Polly" Version="8.4.0" />
4343

4444
<!-- Explicitly pin dependencies on container project to mitigate security vulnerabilities -->
4545
<PackageReference Include="System.Drawing.Common" Version="8.0.6" />
46-
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="8.0.0" />
47-
<PackageReference Include="System.Security.Cryptography.Xml" Version="8.0.1" />
46+
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="8.0.1" />
47+
<PackageReference Include="System.Security.Cryptography.Xml" Version="8.0.2" />
4848
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
4949
</ItemGroup>
5050

src/Promitor.Agents.Scraper/Dockerfile.linux

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:8.0.301-cbl-mariner2.0 AS build
1+
FROM mcr.microsoft.com/dotnet/sdk:8.0.403-cbl-mariner2.0 AS build
22
WORKDIR /src
33
ARG VERSION="UNSET-VERSION"
44
COPY Promitor.Core/* Promitor.Core/
@@ -18,7 +18,7 @@ COPY Promitor.Integrations.Sinks.Statsd/* Promitor.Integrations.Sinks.Statsd/
1818
COPY Promitor.Agents.Scraper/* Promitor.Agents.Scraper/
1919
RUN dotnet publish Promitor.Agents.Scraper/Promitor.Agents.Scraper.csproj --configuration release --output app /p:Version=$VERSION
2020

21-
FROM mcr.microsoft.com/dotnet/aspnet:8.0.6-cbl-mariner2.0-distroless AS runtime-base
21+
FROM mcr.microsoft.com/dotnet/aspnet:8.0.10-cbl-mariner2.0-distroless AS runtime-base
2222

2323
FROM mcr.microsoft.com/cbl-mariner/base/core:2.0 AS installer
2424

src/Promitor.Agents.Scraper/Promitor.Agents.Scraper.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444

4545
<!-- Explicitly pin dependencies on container project to mitigate security vulnerabilities -->
4646
<PackageReference Include="System.Drawing.Common" Version="8.0.6" />
47-
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="8.0.0" />
48-
<PackageReference Include="System.Security.Cryptography.Xml" Version="8.0.1" />
47+
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="8.0.1" />
48+
<PackageReference Include="System.Security.Cryptography.Xml" Version="8.0.2" />
4949
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
5050
</ItemGroup>
5151

src/Promitor.Core.Telemetry/Promitor.Core.Telemetry.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616
<ItemGroup>
1717
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.22.0" />
18-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
19-
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
18+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
19+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.1" />
2020
</ItemGroup>
2121

2222
<ItemGroup>

src/Promitor.Core/Promitor.Core.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
<PackageReference Include="Humanizer" Version="2.14.1" />
2121
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.22.0" />
2222
<PackageReference Include="Microsoft.Azure.Management.Monitor.Fluent" Version="1.38.1" />
23-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
24-
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
23+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
24+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.1" />
2525
<PackageReference Include="YamlDotNet" Version="15.1.6" />
2626
</ItemGroup>
2727

src/Promitor.Integrations.Azure/Promitor.Integrations.Azure.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<PackageReference Include="Azure.Identity" Version="1.11.4" />
1919
<PackageReference Include="Microsoft.Azure.Management.Fluent" Version="1.38.1" />
2020
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
21-
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.1" />
21+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.2" />
2222
</ItemGroup>
2323

2424
<ItemGroup>

src/Promitor.Integrations.AzureStorage/Promitor.Integrations.AzureStorage.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<ItemGroup>
99
<PackageReference Include="Guard.Net" Version="3.0.0" />
1010
<PackageReference Include="Microsoft.Azure.Storage.Queue" Version="11.2.3" />
11-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
11+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
1212
</ItemGroup>
1313

1414
</Project>

src/Promitor.Integrations.LogAnalytics/Promitor.Integrations.LogAnalytics.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<PackageReference Include="Guard.Net" Version="3.0.0" />
1212
<PackageReference Include="Microsoft.Azure.Management.ResourceManager.Fluent" Version="1.38.1" />
1313
<PackageReference Include="Microsoft.Azure.Storage.Queue" Version="11.2.3" />
14-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
14+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
1515
</ItemGroup>
1616

1717
</Project>

0 commit comments

Comments
 (0)