File tree 4 files changed +12
-10
lines changed
4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,8 @@ the release.
56
56
([ #1377 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1377 ) )
57
57
* [ currencyservice] Add OTLP logs
58
58
([ #1378 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1378 ) )
59
+ * [ cartservice] update .NET to .NET 8.0.2
60
+ ([ #1380 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1380 ) )
59
61
60
62
## 1.7.2
61
63
Original file line number Diff line number Diff line change 15
15
# limitations under the License.
16
16
17
17
# https://mcr.microsoft.com/v2/dotnet/sdk/tags/list
18
- FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0.101 AS builder
18
+ FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0.200 AS builder
19
19
ARG TARGETARCH
20
20
21
21
WORKDIR /usr/src/app/
@@ -30,7 +30,7 @@ RUN dotnet publish ./src/cartservice.csproj -v d -r linux-musl-$TARGETARCH --no-
30
30
# -----------------------------------------------------------------------------
31
31
32
32
# https://mcr.microsoft.com/v2/dotnet/runtime-deps/tags/list
33
- FROM mcr.microsoft.com/dotnet/runtime-deps:8.0.1 -alpine3.18
33
+ FROM mcr.microsoft.com/dotnet/runtime-deps:8.0.2 -alpine3.18
34
34
35
35
WORKDIR /usr/src/app/
36
36
COPY --from=builder /cartservice/ ./
Original file line number Diff line number Diff line change 14
14
<PackageReference Include =" Grpc.AspNetCore.HealthChecks" Version =" 2.60.0" />
15
15
<PackageReference Include =" OpenTelemetry.Exporter.OpenTelemetryProtocol" Version =" 1.7.0" />
16
16
<PackageReference Include =" OpenTelemetry.Extensions.Hosting" Version =" 1.7.0" />
17
- <PackageReference Include =" OpenTelemetry.Instrumentation.AspNetCore" Version =" 1.7.0 " />
18
- <PackageReference Include =" OpenTelemetry.Instrumentation.GrpcNetClient" Version =" 1.6 .0-beta.3 " />
19
- <PackageReference Include =" OpenTelemetry.Instrumentation.Http" Version =" 1.7.0 " />
17
+ <PackageReference Include =" OpenTelemetry.Instrumentation.AspNetCore" Version =" 1.7.1 " />
18
+ <PackageReference Include =" OpenTelemetry.Instrumentation.GrpcNetClient" Version =" 1.7 .0-beta.1 " />
19
+ <PackageReference Include =" OpenTelemetry.Instrumentation.Http" Version =" 1.7.1 " />
20
20
<PackageReference Include =" OpenTelemetry.Instrumentation.Process" Version =" 0.5.0-beta.4" />
21
21
<PackageReference Include =" OpenTelemetry.Instrumentation.StackExchangeRedis" Version =" 1.0.0-rc9.13" />
22
22
<PackageReference Include =" OpenTelemetry.Instrumentation.Runtime" Version =" 1.7.0" />
23
- <PackageReference Include =" OpenTelemetry.ResourceDetectors.Container" Version =" 1.0.0-beta.5 " />
24
- <PackageReference Include =" StackExchange.Redis" Version =" 2.7.10 " />
23
+ <PackageReference Include =" OpenTelemetry.ResourceDetectors.Container" Version =" 1.0.0-beta.6 " />
24
+ <PackageReference Include =" StackExchange.Redis" Version =" 2.7.17 " />
25
25
</ItemGroup >
26
26
27
27
<ItemGroup >
Original file line number Diff line number Diff line change 6
6
7
7
<ItemGroup >
8
8
<PackageReference Include =" Grpc.Net.Client" Version =" 2.60.0" />
9
- <PackageReference Include =" Microsoft.AspNetCore.TestHost" Version =" 8.0.1 " />
10
- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.8 .0" />
11
- <PackageReference Include =" xunit" Version =" 2.6.5 " />
9
+ <PackageReference Include =" Microsoft.AspNetCore.TestHost" Version =" 8.0.2 " />
10
+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.9 .0" />
11
+ <PackageReference Include =" xunit" Version =" 2.6.6 " />
12
12
<PackageReference Include =" xunit.runner.visualstudio" Version =" 2.5.6" >
13
13
<PrivateAssets >all</PrivateAssets >
14
14
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
You can’t perform that action at this time.
0 commit comments