File tree 5 files changed +13
-11
lines changed
test/tracetesting/checkout-service
5 files changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,8 @@ the release.
39
39
([ #1449 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1449 ) )
40
40
* [ Frontend-proxy] Add restart policy to compose file
41
41
([ #1448 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1448 ) )
42
+ * [ cartservice] update .NET to .NET 8.0.3
43
+ ([ #1460 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1460 ) )
42
44
43
45
## 1.8.0
44
46
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.200 AS builder
18
+ FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0.202 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.2 -alpine3.18
33
+ FROM mcr.microsoft.com/dotnet/runtime-deps:8.0.3 -alpine3.19
34
34
35
35
WORKDIR /usr/src/app/
36
36
COPY --from=builder /cartservice/ ./
Original file line number Diff line number Diff line change 10
10
</PropertyGroup >
11
11
12
12
<ItemGroup >
13
- <PackageReference Include =" Grpc.AspNetCore" Version =" 2.60 .0" />
14
- <PackageReference Include =" Grpc.AspNetCore.HealthChecks" Version =" 2.60 .0" />
13
+ <PackageReference Include =" Grpc.AspNetCore" Version =" 2.61 .0" />
14
+ <PackageReference Include =" Grpc.AspNetCore.HealthChecks" Version =" 2.61 .0" />
15
15
<PackageReference Include =" OpenTelemetry.Exporter.OpenTelemetryProtocol" Version =" 1.7.0" />
16
16
<PackageReference Include =" OpenTelemetry.Extensions.Hosting" Version =" 1.7.0" />
17
17
<PackageReference Include =" OpenTelemetry.Instrumentation.AspNetCore" Version =" 1.7.1" />
22
22
<PackageReference Include =" OpenTelemetry.Instrumentation.Runtime" Version =" 1.7.0" />
23
23
<PackageReference Include =" OpenTelemetry.ResourceDetectors.Container" Version =" 1.0.0-beta.6" />
24
24
<PackageReference Include =" OpenTelemetry.ResourceDetectors.Host" Version =" 0.1.0-alpha.2" />
25
- <PackageReference Include =" StackExchange.Redis" Version =" 2.7.17 " />
25
+ <PackageReference Include =" StackExchange.Redis" Version =" 2.7.33 " />
26
26
<PackageReference Include =" OpenFeature.Contrib.Providers.Flagd" Version =" 0.1.8" />
27
27
<PackageReference Include =" OpenFeature.Contrib.Hooks.Otel" Version =" 0.1.4" />
28
- <PackageReference Include =" OpenFeature" Version =" 1.4.1 " />
28
+ <PackageReference Include =" OpenFeature" Version =" 1.5.0 " />
29
29
</ItemGroup >
30
30
31
31
<ItemGroup >
Original file line number Diff line number Diff line change 5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
8
- <PackageReference Include =" Grpc.Net.Client" Version =" 2.60 .0" />
9
- <PackageReference Include =" Microsoft.AspNetCore.TestHost" Version =" 8.0.2 " />
8
+ <PackageReference Include =" Grpc.Net.Client" Version =" 2.61 .0" />
9
+ <PackageReference Include =" Microsoft.AspNetCore.TestHost" Version =" 8.0.3 " />
10
10
<PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.9.0" />
11
- <PackageReference Include =" xunit" Version =" 2.6.6 " />
12
- <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.5.6 " >
11
+ <PackageReference Include =" xunit" Version =" 2.7.0 " />
12
+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.5.7 " >
13
13
<PrivateAssets >all</PrivateAssets >
14
14
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
15
15
</PackageReference >
Original file line number Diff line number Diff line change 33
33
}
34
34
specs :
35
35
- name : It returns a valid order
36
- selector : span[tracetest.span.type="general" name="Trigger test "]
36
+ selector : span[tracetest.span.type="general" name="Tracetest trigger "]
37
37
assertions :
38
38
- attr:tracetest.response.body | json_path '$.order.orderId' != ""
39
39
- attr:tracetest.response.body | json_path '$.order.shippingTrackingId' != ""
You can’t perform that action at this time.
0 commit comments