File tree Expand file tree Collapse file tree 12 files changed +552
-19
lines changed
examples/MicroserviceExample
OpenTelemetry.Exporter.Prometheus.AspNetCore
OpenTelemetry.Exporter.Prometheus.HttpListener
OpenTelemetry.Shims.OpenTracing
OpenTelemetry.Exporter.OpenTelemetryProtocol.Tests/IntegrationTest
OpenTelemetry.Instrumentation.W3cTraceContext.Tests Expand file tree Collapse file tree 12 files changed +552
-19
lines changed Original file line number Diff line number Diff line change @@ -35,13 +35,13 @@ jobs:
35
35
show-progress : false
36
36
37
37
- name : Initialize CodeQL
38
- uses : github/codeql-action/init@303c0aef88fc2fe5ff6d63d3b1596bfd83dfa1f9 # v3.30.4
38
+ uses : github/codeql-action/init@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5
39
39
with :
40
40
build-mode : none
41
41
languages : ${{ matrix.language }}
42
42
43
43
- name : Perform CodeQL Analysis
44
- uses : github/codeql-action/analyze@303c0aef88fc2fe5ff6d63d3b1596bfd83dfa1f9 # v3.30.4
44
+ uses : github/codeql-action/analyze@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5
45
45
with :
46
46
category : ' /language:${{ matrix.language }}'
47
47
Original file line number Diff line number Diff line change 42
42
# Upload the results to GitHub's code scanning dashboard (optional).
43
43
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
44
44
- name : " Upload to code-scanning"
45
- uses : github/codeql-action/upload-sarif@303c0aef88fc2fe5ff6d63d3b1596bfd83dfa1f9 # v3.30.4
45
+ uses : github/codeql-action/upload-sarif@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.30.5
46
46
with :
47
47
sarif_file : results.sarif
Original file line number Diff line number Diff line change 111
111
<PackageVersion Include =" OpenTelemetry.Instrumentation.Runtime" Version =" 1.12.0" />
112
112
<PackageVersion Include =" RabbitMQ.Client" Version =" 7.1.2" />
113
113
<PackageVersion Include =" StyleCop.Analyzers" Version =" 1.2.0-beta.556" />
114
- <PackageVersion Include =" Swashbuckle.AspNetCore" Version =" 9.0.4 " />
114
+ <PackageVersion Include =" Swashbuckle.AspNetCore" Version =" 9.0.5 " />
115
115
<PackageVersion Include =" System.Runtime.InteropServices.RuntimeInformation" Version =" 4.3.0" />
116
116
<PackageVersion Include =" xunit" Version =" 2.9.3" />
117
117
<PackageVersion Include =" xunit.runner.visualstudio" Version =" [2.8.2,)" />
Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ function PushPackagesPublishReleaseUnlockAndPostNoticeOnPrepareReleasePullReques
202
202
$tag = $match.Groups [1 ].Value
203
203
204
204
$commentUserPermission = gh api " repos/$gitRepository /collaborators/$commentUserName /permission" | ConvertFrom-Json
205
- if ($commentUserPermission.permission -ne ' maintain' )
205
+ if ($commentUserPermission.user.permissions. maintain )
206
206
{
207
207
gh pr comment $pullRequestNumber `
208
208
-- body " I'm sorry @$commentUserName but you don't have permission to push packages. Only maintainers can push to NuGet."
Original file line number Diff line number Diff line change 1
1
ARG SDK_VERSION=9.0
2
- FROM mcr.microsoft.com/dotnet/sdk:8.0.414@sha256:3cef19377b2ef2a0171e930a24627677447c3e41b5f2eab84ff4895f1b15d254 AS dotnet-sdk-8.0
3
- FROM mcr.microsoft.com/dotnet/sdk:9.0.305@sha256:bb42ae2c058609d1746baf24fe6864ecab0686711dfca1f4b7a99e367ab17162 AS dotnet-sdk-9.0
2
+ FROM mcr.microsoft.com/dotnet/sdk:8.0.414@sha256:ff8311847c54c04d1a14c488362807997d59b61372da5095a95f89cbcda7f9b7 AS dotnet-sdk-8.0
3
+ FROM mcr.microsoft.com/dotnet/sdk:9.0.305@sha256:123b43e4d9775451d8ed63af324a42132707b4edb14770bcdf5c85cf55bc45f1 AS dotnet-sdk-9.0
4
4
5
5
FROM dotnet-sdk-${SDK_VERSION} AS build
6
6
ARG PUBLISH_CONFIGURATION=Release
@@ -9,8 +9,8 @@ WORKDIR /app
9
9
COPY . ./
10
10
RUN dotnet publish ./examples/MicroserviceExample/WebApi -c "${PUBLISH_CONFIGURATION}" -f "${PUBLISH_FRAMEWORK}" -o /out -p:IntegrationBuild=true
11
11
12
- FROM mcr.microsoft.com/dotnet/aspnet:8.0.20@sha256:e88f90b6d9fd7e9e0d8e231d068fccdbebd3c91892441a85ef35066aea9a4e1e AS dotnet-aspnet-8.0
13
- FROM mcr.microsoft.com/dotnet/aspnet:9.0.9@sha256:1af4114db9ba87542a3f23dbb5cd9072cad7fcc8505f6e9131d1feb580286a6f AS dotnet-aspnet-9.0
12
+ FROM mcr.microsoft.com/dotnet/aspnet:8.0.20@sha256:53f73fbe620361e5116f68752bf42958dfcda8699a94a785dcb4657bc571c8f3 AS dotnet-aspnet-8.0
13
+ FROM mcr.microsoft.com/dotnet/aspnet:9.0.9@sha256:366204b1d249aa2615f4942c8549677a1f3e6231829f274aa8829fc048f38d8c AS dotnet-aspnet-9.0
14
14
15
15
FROM dotnet-aspnet-${SDK_VERSION} AS runtime
16
16
WORKDIR /app
Original file line number Diff line number Diff line change 1
1
ARG SDK_VERSION=9.0
2
2
3
- FROM mcr.microsoft.com/dotnet/sdk:8.0.414@sha256:3cef19377b2ef2a0171e930a24627677447c3e41b5f2eab84ff4895f1b15d254 AS dotnet-sdk-8.0
4
- FROM mcr.microsoft.com/dotnet/sdk:9.0.305@sha256:bb42ae2c058609d1746baf24fe6864ecab0686711dfca1f4b7a99e367ab17162 AS dotnet-sdk-9.0
3
+ FROM mcr.microsoft.com/dotnet/sdk:8.0.414@sha256:ff8311847c54c04d1a14c488362807997d59b61372da5095a95f89cbcda7f9b7 AS dotnet-sdk-8.0
4
+ FROM mcr.microsoft.com/dotnet/sdk:9.0.305@sha256:123b43e4d9775451d8ed63af324a42132707b4edb14770bcdf5c85cf55bc45f1 AS dotnet-sdk-9.0
5
5
6
6
FROM dotnet-sdk-${SDK_VERSION} AS build
7
7
ARG PUBLISH_CONFIGURATION=Release
@@ -10,8 +10,8 @@ WORKDIR /app
10
10
COPY . ./
11
11
RUN dotnet publish ./examples/MicroserviceExample/WorkerService -c "${PUBLISH_CONFIGURATION}" -f "${PUBLISH_FRAMEWORK}" -o /out -p:IntegrationBuild=true
12
12
13
- FROM mcr.microsoft.com/dotnet/aspnet:8.0.20@sha256:e88f90b6d9fd7e9e0d8e231d068fccdbebd3c91892441a85ef35066aea9a4e1e AS dotnet-aspnet-8.0
14
- FROM mcr.microsoft.com/dotnet/aspnet:9.0.9@sha256:1af4114db9ba87542a3f23dbb5cd9072cad7fcc8505f6e9131d1feb580286a6f AS dotnet-aspnet-9.0
13
+ FROM mcr.microsoft.com/dotnet/aspnet:8.0.20@sha256:53f73fbe620361e5116f68752bf42958dfcda8699a94a785dcb4657bc571c8f3 AS dotnet-aspnet-8.0
14
+ FROM mcr.microsoft.com/dotnet/aspnet:9.0.9@sha256:366204b1d249aa2615f4942c8549677a1f3e6231829f274aa8829fc048f38d8c AS dotnet-aspnet-9.0
15
15
16
16
FROM dotnet-aspnet-${SDK_VERSION} AS runtime
17
17
WORKDIR /app
Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ Notes](../../RELEASENOTES.md).
7
7
8
8
## Unreleased
9
9
10
+ ## 1.13.0-beta.1
11
+
12
+ Released 2025-Oct-01
13
+
10
14
* Updated OpenTelemetry core component version(s) to ` 1.13.0 ` .
11
15
([ #6552 ] ( https://github.com/open-telemetry/opentelemetry-dotnet/pull/6552 ) )
12
16
Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ Notes](../../RELEASENOTES.md).
7
7
8
8
## Unreleased
9
9
10
+ ## 1.13.0-beta.1
11
+
12
+ Released 2025-Oct-01
13
+
10
14
* Updated OpenTelemetry core component version(s) to ` 1.13.0 ` .
11
15
([ #6552 ] ( https://github.com/open-telemetry/opentelemetry-dotnet/pull/6552 ) )
12
16
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ Notes](../../RELEASENOTES.md).
6
6
7
7
## Unreleased
8
8
9
+ ## 1.13.0-beta.1
10
+
11
+ Released 2025-Oct-01
12
+
9
13
* Updated OpenTelemetry core component version(s) to ` 1.13.0 ` .
10
14
([ #6552 ] ( https://github.com/open-telemetry/opentelemetry-dotnet/pull/6552 ) )
11
15
Original file line number Diff line number Diff line change 4
4
5
5
ARG BUILD_SDK_VERSION=9.0
6
6
ARG TEST_SDK_VERSION=9.0
7
- FROM mcr.microsoft.com/dotnet/sdk:8.0.414@sha256:3cef19377b2ef2a0171e930a24627677447c3e41b5f2eab84ff4895f1b15d254 AS dotnet-sdk-8.0
8
- FROM mcr.microsoft.com/dotnet/sdk:9.0.305@sha256:bb42ae2c058609d1746baf24fe6864ecab0686711dfca1f4b7a99e367ab17162 AS dotnet-sdk-9.0
7
+ FROM mcr.microsoft.com/dotnet/sdk:8.0.414@sha256:ff8311847c54c04d1a14c488362807997d59b61372da5095a95f89cbcda7f9b7 AS dotnet-sdk-8.0
8
+ FROM mcr.microsoft.com/dotnet/sdk:9.0.305@sha256:123b43e4d9775451d8ed63af324a42132707b4edb14770bcdf5c85cf55bc45f1 AS dotnet-sdk-9.0
9
9
10
10
FROM dotnet-sdk-${BUILD_SDK_VERSION} AS build
11
11
ARG PUBLISH_CONFIGURATION=Release
You can’t perform that action at this time.
0 commit comments