Skip to content

Flag new major versions of NuGets we don't support#8800

Merged
bouwkast merged 5 commits into
masterfrom
steven/fix-major-version-package-reporting
Jun 30, 2026
Merged

Flag new major versions of NuGets we don't support#8800
bouwkast merged 5 commits into
masterfrom
steven/fix-major-version-package-reporting

Conversation

@bouwkast

Copy link
Copy Markdown
Collaborator

Summary of changes

Detects and flags whenever we have a new major version of an instrumented NuGet package that we don't yet support.

Reason for change

We used to get this previously when the dependabot projects would have their comments updated noting the latest version and we would then manually follow up on them. But with that removed this was accidentally lost.

Implementation details

Grabs new unsupported major versions and reports them in a new table the cooldown report.

Test coverage

Other details

Since we don't technically update the generated files I figured that it would be best to include a new tracked file for the "unsupported" major versions. Pretty small edge case, but if for some reason that there are no updates besides major versions we wouldn't open the PR.

We could go and re-use the supported_versions.json file but unsure on the plans with that honestly.

@bouwkast

Copy link
Copy Markdown
Collaborator Author

@codex review

@github-actions github-actions Bot added the area:builds project files, build scripts, pipelines, versioning, releases, packages label Jun 18, 2026

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: c1db7f8138

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread tracer/build/_build/GeneratePackageVersions/PackageVersionGenerator.cs Outdated
Comment on lines +223 to +226
foreach (var candidate in QueriedVersions[packageName])
{
if (NuGetVersion.TryParse(candidate.Version, out var parsed)
&& (latestAvailable is null || parsed > latestAvailable))

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Ignore unlisted NuGet versions for pending majors

When a package owner unlists/yanks an unsupported major, this loop still considers that version because QueriedVersions is populated by GetAllNugetPackageVersions, which queries NuGet metadata with includeUnlisted: true. That can keep or open scheduled pending-major PRs for versions that are no longer advertised as the latest available package, so the latest-major calculation should either query listed versions separately or retain/list-filter the metadata before adding MajorAvailableEntry.

Useful? React with 👍 / 👎.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

meh

Comment thread tracer/build/_build/GeneratePackageVersions/PackageVersionGenerator.cs Outdated
@pr-commenter

pr-commenter Bot commented Jun 18, 2026

Copy link
Copy Markdown

Benchmarks

Benchmark execution time: 2026-06-30 15:31:51

Comparing candidate commit da7fd70 in PR branch steven/fix-major-version-package-reporting with baseline commit f0fbab0 in branch master.

📊 Benchmarking dashboard

Found 0 performance improvements and 0 performance regressions! Performance is the same for 72 metrics, 0 unstable metrics, 60 known flaky benchmarks, 66 flaky benchmarks without significant changes.

Explanation

This is an A/B test comparing a candidate commit's performance against that of a baseline commit. Performance changes are noted in the tables below as:

  • 🟩 = significantly better candidate vs. baseline
  • 🟥 = significantly worse candidate vs. baseline

We compute a confidence interval (CI) over the relative difference of means between metrics from the candidate and baseline commits, considering the baseline as the reference.

If the CI is entirely outside the configured SIGNIFICANT_IMPACT_THRESHOLD (or the deprecated UNCONFIDENCE_THRESHOLD), the change is considered significant.

Feel free to reach out to #apm-benchmarking-platform on Slack if you have any questions.

More details about the CI and significant changes

You can imagine this CI as a range of values that is likely to contain the true difference of means between the candidate and baseline commits.

CIs of the difference of means are often centered around 0%, because often changes are not that big:

---------------------------------(------|---^--------)-------------------------------->
                              -0.6%    0%  0.3%     +1.2%
                                 |          |        |
         lower bound of the CI --'          |        |
sample mean (center of the CI) -------------'        |
         upper bound of the CI ----------------------'

As described above, a change is considered significant if the CI is entirely outside the configured SIGNIFICANT_IMPACT_THRESHOLD (or the deprecated UNCONFIDENCE_THRESHOLD).

For instance, for an execution time metric, this confidence interval indicates a significantly worse performance:

----------------------------------------|---------|---(---------^---------)---------->
                                       0%        1%  1.3%      2.2%      3.1%
                                                  |   |         |         |
       significant impact threshold --------------'   |         |         |
                      lower bound of CI --------------'         |         |
       sample mean (center of the CI) --------------------------'         |
                      upper bound of CI ----------------------------------'

Known flaky benchmarks

These benchmarks are marked as flaky and will not trigger a failure. Modify FLAKY_BENCHMARKS_REGEX to control which benchmarks are marked as flaky.

scenario:Benchmarks.Trace.ActivityBenchmark.StartStopWithChild net472

  • 🟥 throughput [-8063.635op/s; -7326.800op/s] or [-9.561%; -8.687%]

scenario:Benchmarks.Trace.ActivityBenchmark.StartStopWithChild netcoreapp3.1

  • 🟥 throughput [-6449.154op/s; -5066.119op/s] or [-6.557%; -5.151%]

scenario:Benchmarks.Trace.AgentWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • 🟥 execution_time [+306.290ms; +311.854ms] or [+151.992%; +154.753%]
  • 🟥 throughput [-50.297op/s; -46.100op/s] or [-9.049%; -8.294%]

scenario:Benchmarks.Trace.AgentWriterBenchmark.WriteAndFlushEnrichedTraces net6.0

  • 🟥 execution_time [+380.094ms; +381.546ms] or [+300.297%; +301.444%]
  • 🟩 throughput [+91.733op/s; +94.218op/s] or [+12.095%; +12.422%]

scenario:Benchmarks.Trace.AgentWriterBenchmark.WriteAndFlushEnrichedTraces netcoreapp3.1

  • 🟥 execution_time [+398.165ms; +401.477ms] or [+352.361%; +355.292%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleMoreComplexBody net472

  • 🟥 allocated_mem [+1.308KB; +1.308KB] or [+27.528%; +27.540%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleMoreComplexBody net6.0

  • 🟥 allocated_mem [+471 bytes; +472 bytes] or [+9.976%; +9.987%]
  • 🟩 execution_time [-16.397ms; -12.190ms] or [-7.658%; -5.693%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleMoreComplexBody netcoreapp3.1

  • 🟥 allocated_mem [+1.272KB; +1.272KB] or [+27.500%; +27.510%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleSimpleBody net472

  • 🟥 allocated_mem [+1.307KB; +1.307KB] or [+105.743%; +105.758%]
  • 🟥 throughput [-268508.450op/s; -265397.288op/s] or [-27.416%; -27.098%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleSimpleBody net6.0

  • 🟥 allocated_mem [+471 bytes; +472 bytes] or [+38.557%; +38.566%]
  • 🟩 execution_time [-26.499ms; -21.627ms] or [-11.817%; -9.645%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.AllCycleSimpleBody netcoreapp3.1

  • 🟥 allocated_mem [+1.272KB; +1.272KB] or [+105.288%; +105.304%]
  • 🟥 throughput [-146845.424op/s; -131060.426op/s] or [-21.099%; -18.831%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorMoreComplexBody netcoreapp3.1

  • 🟩 throughput [+8833.369op/s; +11497.035op/s] or [+7.037%; +9.159%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorSimpleBody net6.0

  • 🟩 throughput [+457259.346op/s; +475301.864op/s] or [+15.247%; +15.849%]

scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorSimpleBody netcoreapp3.1

  • 🟩 execution_time [-19.269ms; -14.892ms] or [-8.882%; -6.865%]
  • 🟩 throughput [+176497.861op/s; +229558.873op/s] or [+7.006%; +9.112%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeArgs net472

  • 🟥 execution_time [+299.101ms; +299.974ms] or [+149.451%; +149.887%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeArgs net6.0

  • 🟥 execution_time [+300.692ms; +303.882ms] or [+151.640%; +153.248%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeArgs netcoreapp3.1

  • 🟥 execution_time [+299.252ms; +302.222ms] or [+150.740%; +152.236%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeLegacyArgs net472

  • 🟥 execution_time [+296.113ms; +297.436ms] or [+145.439%; +146.089%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeLegacyArgs net6.0

  • 🟥 execution_time [+291.993ms; +295.555ms] or [+142.744%; +144.486%]

scenario:Benchmarks.Trace.Asm.AppSecEncoderBenchmark.EncodeLegacyArgs netcoreapp3.1

  • 🟥 execution_time [+302.914ms; +305.277ms] or [+151.396%; +152.577%]

scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack net6.0

  • 🟥 execution_time [+20.683µs; +44.330µs] or [+6.603%; +14.152%]
  • 🟥 throughput [-414.603op/s; -215.585op/s] or [-12.924%; -6.720%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest net472

  • 🟥 execution_time [+299.725ms; +300.691ms] or [+149.594%; +150.076%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest net6.0

  • unstable execution_time [+336.782ms; +397.355ms] or [+365.927%; +431.743%]
  • 🟩 throughput [+816.016op/s; +1046.930op/s] or [+6.705%; +8.603%]

scenario:Benchmarks.Trace.AspNetCoreBenchmark.SendRequest netcoreapp3.1

  • 🟥 execution_time [+366.782ms; +371.370ms] or [+278.494%; +281.978%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net472

  • unstable execution_time [+335.284ms; +371.247ms] or [+154.160%; +170.696%]
  • 🟥 throughput [-509.623op/s; -473.419op/s] or [-46.177%; -42.896%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces net6.0

  • unstable execution_time [+146.082ms; +292.347ms] or [+62.254%; +124.586%]
  • 🟥 throughput [-666.895op/s; -583.459op/s] or [-44.482%; -38.917%]

scenario:Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark.WriteAndFlushEnrichedTraces netcoreapp3.1

  • 🟥 execution_time [+342.778ms; +352.840ms] or [+205.021%; +211.039%]
  • 🟥 throughput [-397.663op/s; -360.469op/s] or [-27.689%; -25.099%]

scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSliceWithPool net6.0

  • 🟩 throughput [+48.314op/s; +53.859op/s] or [+5.209%; +5.807%]

scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice net6.0

  • 🟩 execution_time [-208.155µs; -171.067µs] or [-10.544%; -8.666%]
  • 🟩 throughput [+49.405op/s; +59.581op/s] or [+9.753%; +11.762%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearch net472

  • 🟥 execution_time [+304.205ms; +306.579ms] or [+153.192%; +154.387%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearch net6.0

  • 🟥 execution_time [+301.475ms; +304.051ms] or [+151.070%; +152.360%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearch netcoreapp3.1

  • 🟥 execution_time [+300.710ms; +304.565ms] or [+151.064%; +153.001%]
  • 🟩 throughput [+27216.008op/s; +34781.204op/s] or [+5.733%; +7.327%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearchAsync net472

  • 🟥 execution_time [+301.919ms; +304.012ms] or [+151.614%; +152.665%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearchAsync net6.0

  • 🟥 execution_time [+299.229ms; +302.456ms] or [+147.955%; +149.551%]

scenario:Benchmarks.Trace.ElasticsearchBenchmark.CallElasticsearchAsync netcoreapp3.1

  • 🟥 execution_time [+302.637ms; +306.540ms] or [+153.390%; +155.368%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync net472

  • 🟥 execution_time [+301.920ms; +303.874ms] or [+151.537%; +152.517%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync net6.0

  • 🟥 execution_time [+288.561ms; +306.841ms] or [+143.821%; +152.932%]
  • 🟩 throughput [+33267.711op/s; +45639.160op/s] or [+6.606%; +9.062%]

scenario:Benchmarks.Trace.GraphQLBenchmark.ExecuteAsync netcoreapp3.1

  • 🟥 execution_time [+300.276ms; +304.065ms] or [+149.385%; +151.270%]

scenario:Benchmarks.Trace.ILoggerBenchmark.EnrichedLog net6.0

  • 🟩 execution_time [-17.079ms; -13.440ms] or [-7.942%; -6.249%]
  • 🟩 throughput [+22727.992op/s; +29921.628op/s] or [+6.235%; +8.208%]

scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatAspectBenchmark net472

  • unstable execution_time [+11.845µs; +56.222µs] or [+2.926%; +13.887%]

scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatAspectBenchmark net6.0

  • 🟩 allocated_mem [-26.167KB; -26.143KB] or [-9.545%; -9.536%]
  • unstable execution_time [-38.851µs; +16.841µs] or [-7.679%; +3.329%]

scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatAspectBenchmark netcoreapp3.1

  • unstable execution_time [-72.542µs; -11.555µs] or [-12.571%; -2.002%]

scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatBenchmark net6.0

  • unstable execution_time [+6.164µs; +10.439µs] or [+14.570%; +24.673%]
  • 🟥 throughput [-4777.545op/s; -2916.666op/s] or [-20.112%; -12.278%]

scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatBenchmark netcoreapp3.1

  • unstable execution_time [-14.130µs; -6.496µs] or [-21.922%; -10.078%]
  • unstable throughput [+1597.415op/s; +3228.028op/s] or [+9.801%; +19.805%]

scenario:Benchmarks.Trace.Log4netBenchmark.EnrichedLog net472

  • 🟥 execution_time [+300.123ms; +302.088ms] or [+151.699%; +152.692%]

scenario:Benchmarks.Trace.Log4netBenchmark.EnrichedLog net6.0

  • 🟥 execution_time [+304.538ms; +307.100ms] or [+155.009%; +156.313%]

scenario:Benchmarks.Trace.Log4netBenchmark.EnrichedLog netcoreapp3.1

  • 🟥 execution_time [+299.455ms; +303.085ms] or [+149.914%; +151.732%]

scenario:Benchmarks.Trace.RedisBenchmark.SendReceive net6.0

  • 🟩 throughput [+28526.090op/s; +31835.715op/s] or [+5.399%; +6.026%]

scenario:Benchmarks.Trace.SerilogBenchmark.EnrichedLog net472

  • 🟥 execution_time [+301.636ms; +303.815ms] or [+150.338%; +151.424%]

scenario:Benchmarks.Trace.SerilogBenchmark.EnrichedLog net6.0

  • 🟥 execution_time [+299.704ms; +302.073ms] or [+150.497%; +151.687%]

scenario:Benchmarks.Trace.SerilogBenchmark.EnrichedLog netcoreapp3.1

  • 🟥 execution_time [+302.341ms; +304.562ms] or [+153.328%; +154.454%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore net472

  • 🟥 execution_time [+299.880ms; +300.911ms] or [+149.582%; +150.096%]
  • 🟩 throughput [+66072962.480op/s; +66440284.268op/s] or [+48.118%; +48.386%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore net6.0

  • 🟥 execution_time [+420.616ms; +425.251ms] or [+523.111%; +528.876%]

scenario:Benchmarks.Trace.SingleSpanAspNetCoreBenchmark.SingleSpanAspNetCore netcoreapp3.1

  • 🟥 execution_time [+299.325ms; +300.509ms] or [+149.296%; +149.887%]
  • 🟩 throughput [+14552221.783op/s; +17666250.428op/s] or [+6.446%; +7.825%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishScope net6.0

  • 🟩 throughput [+82476.654op/s; +93292.177op/s] or [+7.701%; +8.710%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishScope netcoreapp3.1

  • 🟩 throughput [+46362.288op/s; +68582.911op/s] or [+5.366%; +7.938%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishSpan netcoreapp3.1

  • 🟩 throughput [+82282.690op/s; +93205.618op/s] or [+8.172%; +9.257%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishTwoScopes net6.0

  • 🟩 throughput [+54526.025op/s; +59311.515op/s] or [+9.901%; +10.770%]

scenario:Benchmarks.Trace.SpanBenchmark.StartFinishTwoScopes netcoreapp3.1

  • 🟩 throughput [+26936.555op/s; +36507.597op/s] or [+6.029%; +8.172%]

scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin net6.0

  • 🟩 throughput [+51640.334op/s; +99753.502op/s] or [+5.770%; +11.145%]

Known flaky benchmarks without significant changes:

  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_AddEvent_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_GetContext_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetAttributes_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_SetStatus_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.ActivityBenchmark.StartSpan_UpdateName_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_AddEvent_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_GetContext_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_RecordException_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetAttributes_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_SetStatus_Sampled netcoreapp3.1
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled net472
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled net6.0
  • scenario:Benchmarks.OpenTelemetry.InstrumentedApi.Trace.TelemetrySpanBenchmark.StartSpan_UpdateName_Sampled netcoreapp3.1
  • scenario:Benchmarks.Trace.ActivityBenchmark.StartStopWithChild net6.0
  • scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorMoreComplexBody net472
  • scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorMoreComplexBody net6.0
  • scenario:Benchmarks.Trace.Asm.AppSecBodyBenchmark.ObjectExtractorSimpleBody net472
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark net472
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark net6.0
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmark netcoreapp3.1
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack net472
  • scenario:Benchmarks.Trace.Asm.AppSecWafBenchmark.RunWafRealisticBenchmarkWithAttack netcoreapp3.1
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice net6.0
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSlice netcoreapp3.1
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSliceWithPool net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OptimizedCharSliceWithPool netcoreapp3.1
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice net472
  • scenario:Benchmarks.Trace.CharSliceBenchmark.OriginalCharSlice netcoreapp3.1
  • scenario:Benchmarks.Trace.ILoggerBenchmark.EnrichedLog net472
  • scenario:Benchmarks.Trace.ILoggerBenchmark.EnrichedLog netcoreapp3.1
  • scenario:Benchmarks.Trace.Iast.StringAspectsBenchmark.StringConcatBenchmark net472
  • scenario:Benchmarks.Trace.RedisBenchmark.SendReceive net472
  • scenario:Benchmarks.Trace.RedisBenchmark.SendReceive netcoreapp3.1
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishScope net472
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishSpan net472
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishSpan net6.0
  • scenario:Benchmarks.Trace.SpanBenchmark.StartFinishTwoScopes net472
  • scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin net472
  • scenario:Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin netcoreapp3.1

@dd-trace-dotnet-ci-bot

dd-trace-dotnet-ci-bot Bot commented Jun 18, 2026

Copy link
Copy Markdown

Execution-Time Benchmarks Report ⏱️

Execution-time results for samples comparing This PR (8800) and master.

✅ No regressions detected - check the details below

Full Metrics Comparison

FakeDbCommand

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration69.30 ± (69.33 - 69.61) ms72.55 ± (72.55 - 73.14) ms+4.7%✅⬆️
.NET Framework 4.8 - Bailout
duration73.49 ± (73.24 - 73.59) ms76.55 ± (76.31 - 76.85) ms+4.2%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1077.37 ± (1077.33 - 1083.53) ms1080.66 ± (1079.90 - 1086.66) ms+0.3%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms22.08 ± (22.04 - 22.12) ms22.64 ± (22.57 - 22.70) ms+2.5%✅⬆️
process.time_to_main_ms80.22 ± (80.08 - 80.36) ms84.17 ± (83.82 - 84.53) ms+4.9%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.93 ± (10.93 - 10.93) MB10.90 ± (10.90 - 10.91) MB-0.3%
runtime.dotnet.threads.count12 ± (12 - 12)12 ± (12 - 12)+0.0%
.NET Core 3.1 - Bailout
process.internal_duration_ms21.99 ± (21.96 - 22.01) ms22.15 ± (22.12 - 22.18) ms+0.8%✅⬆️
process.time_to_main_ms81.39 ± (81.26 - 81.52) ms82.32 ± (82.15 - 82.50) ms+1.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.97 ± (10.97 - 10.98) MB10.94 ± (10.94 - 10.95) MB-0.2%
runtime.dotnet.threads.count13 ± (13 - 13)13 ± (13 - 13)+0.0%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms209.05 ± (208.05 - 210.06) ms210.19 ± (209.19 - 211.20) ms+0.5%✅⬆️
process.time_to_main_ms529.44 ± (528.28 - 530.61) ms529.02 ± (527.65 - 530.38) ms-0.1%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed48.76 ± (48.72 - 48.81) MB48.66 ± (48.62 - 48.70) MB-0.2%
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.3%
.NET 6 - Baseline
process.internal_duration_ms20.83 ± (20.81 - 20.86) ms21.24 ± (21.19 - 21.28) ms+1.9%✅⬆️
process.time_to_main_ms69.88 ± (69.76 - 70.01) ms71.98 ± (71.73 - 72.23) ms+3.0%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.62 ± (10.61 - 10.62) MB10.63 ± (10.63 - 10.63) MB+0.1%✅⬆️
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 6 - Bailout
process.internal_duration_ms20.80 ± (20.77 - 20.83) ms20.91 ± (20.87 - 20.95) ms+0.5%✅⬆️
process.time_to_main_ms70.71 ± (70.58 - 70.83) ms70.80 ± (70.65 - 70.94) ms+0.1%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed10.72 ± (10.71 - 10.72) MB10.74 ± (10.73 - 10.74) MB+0.2%✅⬆️
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms370.16 ± (368.12 - 372.20) ms367.64 ± (364.83 - 370.46) ms-0.7%
process.time_to_main_ms535.42 ± (534.34 - 536.50) ms535.64 ± (534.41 - 536.87) ms+0.0%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed50.20 ± (50.18 - 50.22) MB50.10 ± (50.08 - 50.12) MB-0.2%
runtime.dotnet.threads.count28 ± (28 - 28)28 ± (28 - 28)-0.0%
.NET 8 - Baseline
process.internal_duration_ms19.32 ± (19.27 - 19.36) ms19.14 ± (19.10 - 19.17) ms-0.9%
process.time_to_main_ms70.82 ± (70.59 - 71.05) ms68.79 ± (68.66 - 68.91) ms-2.9%
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.68 ± (7.67 - 7.69) MB7.68 ± (7.67 - 7.68) MB-0.0%
runtime.dotnet.threads.count10 ± (10 - 10)10 ± (10 - 10)+0.0%
.NET 8 - Bailout
process.internal_duration_ms19.27 ± (19.23 - 19.30) ms19.25 ± (19.21 - 19.30) ms-0.1%
process.time_to_main_ms71.64 ± (71.46 - 71.82) ms72.05 ± (71.79 - 72.31) ms+0.6%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed7.74 ± (7.73 - 7.74) MB7.73 ± (7.73 - 7.73) MB-0.1%
runtime.dotnet.threads.count11 ± (11 - 11)11 ± (11 - 11)+0.0%
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms298.21 ± (295.77 - 300.65) ms302.02 ± (299.70 - 304.34) ms+1.3%✅⬆️
process.time_to_main_ms482.79 ± (481.96 - 483.61) ms486.73 ± (485.71 - 487.76) ms+0.8%✅⬆️
runtime.dotnet.exceptions.count0 ± (0 - 0)0 ± (0 - 0)+0.0%
runtime.dotnet.mem.committed37.09 ± (37.06 - 37.12) MB37.17 ± (37.14 - 37.20) MB+0.2%✅⬆️
runtime.dotnet.threads.count27 ± (27 - 27)27 ± (27 - 27)+0.3%✅⬆️

HttpMessageHandler

Metric Master (Mean ± 95% CI) Current (Mean ± 95% CI) Change Status
.NET Framework 4.8 - Baseline
duration204.15 ± (203.85 - 204.73) ms206.59 ± (206.34 - 207.28) ms+1.2%✅⬆️
.NET Framework 4.8 - Bailout
duration207.15 ± (206.70 - 207.57) ms211.29 ± (211.13 - 211.84) ms+2.0%✅⬆️
.NET Framework 4.8 - CallTarget+Inlining+NGEN
duration1210.32 ± (1207.81 - 1214.20) ms1225.84 ± (1223.89 - 1229.40) ms+1.3%✅⬆️
.NET Core 3.1 - Baseline
process.internal_duration_ms196.14 ± (195.74 - 196.53) ms197.67 ± (197.26 - 198.09) ms+0.8%✅⬆️
process.time_to_main_ms85.29 ± (85.00 - 85.57) ms86.15 ± (85.90 - 86.39) ms+1.0%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.02 ± (15.99 - 16.04) MB16.02 ± (16.00 - 16.05) MB+0.1%✅⬆️
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)-0.1%
.NET Core 3.1 - Bailout
process.internal_duration_ms194.52 ± (194.14 - 194.90) ms198.78 ± (198.38 - 199.17) ms+2.2%✅⬆️
process.time_to_main_ms86.04 ± (85.77 - 86.30) ms88.60 ± (88.42 - 88.79) ms+3.0%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed16.08 ± (16.06 - 16.11) MB16.03 ± (16.01 - 16.05) MB-0.3%
runtime.dotnet.threads.count21 ± (21 - 21)21 ± (20 - 21)-0.5%
.NET Core 3.1 - CallTarget+Inlining+NGEN
process.internal_duration_ms390.18 ± (388.50 - 391.86) ms396.29 ± (395.08 - 397.49) ms+1.6%✅⬆️
process.time_to_main_ms542.06 ± (540.59 - 543.52) ms552.66 ± (551.26 - 554.05) ms+2.0%✅⬆️
runtime.dotnet.exceptions.count3 ± (3 - 3)3 ± (3 - 3)+0.0%
runtime.dotnet.mem.committed58.26 ± (58.04 - 58.47) MB59.13 ± (58.97 - 59.30) MB+1.5%✅⬆️
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (30 - 30)+0.7%✅⬆️
.NET 6 - Baseline
process.internal_duration_ms202.08 ± (201.74 - 202.43) ms203.71 ± (203.24 - 204.18) ms+0.8%✅⬆️
process.time_to_main_ms74.19 ± (73.98 - 74.39) ms75.78 ± (75.50 - 76.06) ms+2.1%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.36 ± (16.34 - 16.38) MB16.34 ± (16.31 - 16.37) MB-0.1%
runtime.dotnet.threads.count19 ± (19 - 19)19 ± (19 - 19)-0.2%
.NET 6 - Bailout
process.internal_duration_ms200.07 ± (199.65 - 200.48) ms203.40 ± (203.01 - 203.78) ms+1.7%✅⬆️
process.time_to_main_ms75.15 ± (74.93 - 75.36) ms76.76 ± (76.58 - 76.94) ms+2.1%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed16.43 ± (16.40 - 16.46) MB16.40 ± (16.38 - 16.42) MB-0.2%
runtime.dotnet.threads.count20 ± (20 - 20)20 ± (20 - 20)+1.1%✅⬆️
.NET 6 - CallTarget+Inlining+NGEN
process.internal_duration_ms582.09 ± (579.65 - 584.52) ms587.55 ± (584.96 - 590.14) ms+0.9%✅⬆️
process.time_to_main_ms557.00 ± (555.88 - 558.11) ms561.95 ± (560.66 - 563.23) ms+0.9%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed61.30 ± (61.21 - 61.38) MB61.48 ± (61.37 - 61.60) MB+0.3%✅⬆️
runtime.dotnet.threads.count31 ± (31 - 31)31 ± (31 - 31)-0.4%
.NET 8 - Baseline
process.internal_duration_ms200.19 ± (199.80 - 200.58) ms202.11 ± (201.67 - 202.55) ms+1.0%✅⬆️
process.time_to_main_ms73.94 ± (73.64 - 74.25) ms74.90 ± (74.69 - 75.12) ms+1.3%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.70 ± (11.68 - 11.73) MB11.69 ± (11.67 - 11.71) MB-0.1%
runtime.dotnet.threads.count18 ± (18 - 18)19 ± (19 - 19)+1.5%✅⬆️
.NET 8 - Bailout
process.internal_duration_ms201.09 ± (200.60 - 201.58) ms202.62 ± (202.24 - 202.99) ms+0.8%✅⬆️
process.time_to_main_ms75.47 ± (75.28 - 75.65) ms76.22 ± (76.01 - 76.43) ms+1.0%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed11.77 ± (11.75 - 11.80) MB11.77 ± (11.75 - 11.79) MB-0.1%
runtime.dotnet.threads.count19 ± (19 - 20)20 ± (20 - 20)+1.5%✅⬆️
.NET 8 - CallTarget+Inlining+NGEN
process.internal_duration_ms516.88 ± (513.84 - 519.91) ms515.64 ± (512.60 - 518.67) ms-0.2%
process.time_to_main_ms506.45 ± (505.65 - 507.26) ms513.54 ± (512.59 - 514.49) ms+1.4%✅⬆️
runtime.dotnet.exceptions.count4 ± (4 - 4)4 ± (4 - 4)+0.0%
runtime.dotnet.mem.committed50.99 ± (50.95 - 51.03) MB51.00 ± (50.96 - 51.04) MB+0.0%✅⬆️
runtime.dotnet.threads.count30 ± (30 - 30)30 ± (30 - 30)+0.8%✅⬆️
Comparison explanation

Execution-time benchmarks measure the whole time it takes to execute a program, and are intended to measure the one-off costs. Cases where the execution time results for the PR are worse than latest master results are highlighted in **red**. The following thresholds were used for comparing the execution times:

  • Welch test with statistical test for significance of 5%
  • Only results indicating a difference greater than 5% and 5 ms are considered.

Note that these results are based on a single point-in-time result for each branch. For full results, see the dashboard.

Graphs show the p99 interval based on the mean and StdDev of the test run, as well as the mean value of the run (shown as a diamond below the graph).

Duration charts
FakeDbCommand (.NET Framework 4.8)
gantt
    title Execution time (ms) FakeDbCommand (.NET Framework 4.8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8800) - mean (73ms)  : 68, 77
    master - mean (69ms)  : 67, 71

    section Bailout
    This PR (8800) - mean (77ms)  : 72, 81
    master - mean (73ms)  : 72, 75

    section CallTarget+Inlining+NGEN
    This PR (8800) - mean (1,083ms)  : 1033, 1133
    master - mean (1,080ms)  : 1036, 1125

Loading
FakeDbCommand (.NET Core 3.1)
gantt
    title Execution time (ms) FakeDbCommand (.NET Core 3.1)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8800) - mean (114ms)  : 108, 121
    master - mean (109ms)  : 106, 111

    section Bailout
    This PR (8800) - mean (111ms)  : 107, 115
    master - mean (110ms)  : 108, 112

    section CallTarget+Inlining+NGEN
    This PR (8800) - mean (776ms)  : 757, 796
    master - mean (777ms)  : 755, 799

Loading
FakeDbCommand (.NET 6)
gantt
    title Execution time (ms) FakeDbCommand (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8800) - mean (100ms)  : 95, 105
    master - mean (97ms)  : 94, 99

    section Bailout
    This PR (8800) - mean (98ms)  : 95, 100
    master - mean (97ms)  : 95, 99

    section CallTarget+Inlining+NGEN
    This PR (8800) - mean (934ms)  : 877, 992
    master - mean (937ms)  : 899, 975

Loading
FakeDbCommand (.NET 8)
gantt
    title Execution time (ms) FakeDbCommand (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8800) - mean (95ms)  : 92, 97
    master - mean (98ms)  : 93, 104

    section Bailout
    This PR (8800) - mean (99ms)  : 92, 105
    master - mean (99ms)  : 95, 103

    section CallTarget+Inlining+NGEN
    This PR (8800) - mean (820ms)  : 779, 861
    master - mean (812ms)  : 770, 855

Loading
HttpMessageHandler (.NET Framework 4.8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET Framework 4.8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8800) - mean (207ms)  : 201, 212
    master - mean (204ms)  : 199, 209

    section Bailout
    This PR (8800) - mean (211ms)  : 208, 215
    master - mean (207ms)  : 203, 212

    section CallTarget+Inlining+NGEN
    This PR (8800) - mean (1,227ms)  : 1192, 1262
    master - mean (1,211ms)  : 1168, 1254

Loading
HttpMessageHandler (.NET Core 3.1)
gantt
    title Execution time (ms) HttpMessageHandler (.NET Core 3.1)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8800) - mean (294ms)  : 287, 300
    master - mean (291ms)  : 286, 296

    section Bailout
    This PR (8800) - mean (297ms)  : 292, 303
    master - mean (290ms)  : 285, 296

    section CallTarget+Inlining+NGEN
    This PR (8800) - mean (993ms)  : 967, 1019
    master - mean (974ms)  : 954, 993

Loading
HttpMessageHandler (.NET 6)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8800) - mean (289ms)  : 283, 295
    master - mean (286ms)  : 281, 291

    section Bailout
    This PR (8800) - mean (290ms)  : 285, 295
    master - mean (285ms)  : 278, 291

    section CallTarget+Inlining+NGEN
    This PR (8800) - mean (1,182ms)  : 1139, 1225
    master - mean (1,173ms)  : 1130, 1216

Loading
HttpMessageHandler (.NET 8)
gantt
    title Execution time (ms) HttpMessageHandler (.NET 8)
    dateFormat  x
    axisFormat %Q
    todayMarker off
    section Baseline
    This PR (8800) - mean (287ms)  : 278, 297
    master - mean (285ms)  : 280, 289

    section Bailout
    This PR (8800) - mean (290ms)  : 284, 295
    master - mean (287ms)  : 280, 294

    section CallTarget+Inlining+NGEN
    This PR (8800) - mean (1,063ms)  : 1007, 1118
    master - mean (1,054ms)  : 1007, 1102

Loading

@datadog-official

This comment has been minimized.

@andrewlock andrewlock left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If it works, it LGTM, other than I'm not sure the pending_major_versions doc is necessary. If possible, I think including these in supported_versions.json would be better. And if that's too difficult, outputting a json file instead I think would be better.

Triggered a run against this branch here, just to see how it does 🤞

Comment thread tracer/build/pending_major_versions.md Outdated
bouwkast and others added 5 commits June 30, 2026 15:37
We used to get this by the dependabot honey pot
csproj files having their comments updated, but
we have lost this and it was missed.

Adding a new tracked file as I wasn't actually
sure how to _guarantee_ that we would have
changes somewhere that would trigger the PR
to open, but granted that is if and only if
we don't have any bumps whatsoever, which may
not actually happen.
- Exclude unlisted/yanked versions from "latest available"
- Key tracked file on major form (2.x) to avoid patch churn
- Flag every integration sharing a package ceiling, not just one
- Sort report rows by integration name for determinism
@andrewlock
andrewlock force-pushed the steven/fix-major-version-package-reporting branch from f4b6b10 to da7fd70 Compare June 30, 2026 14:37
@andrewlock

Copy link
Copy Markdown
Member

I pushed a few extra changes:

  • Don't produce the extra markdown file. The supported_versions.json file would have changes anyway (as it lists available versions) so we will always have something to commit.
  • Tweak some of the wording for cooldown-ignored versions (I kept getting confused what 'overridden' meant - was is the value we were overriding to or the value we were ignoring), so made it explicit. Includes the value we're going to use as well as the value we ignore, to make it clearer.
  • Tested it a bunch of times, by rebasing the branch to older places in the history, and confirming it flags new majors as expected.

For example, the following is what you get if you rebase on top of v3.46.0:


Package Version Updates

Package Integration Previous New Published
Quartz Quartz 3.18.1 3.18.2 2026-06-27
AWSSDK.Core AwsSdk 4.0.8 4.0.9.7 2026-06-22
AWSSDK.DynamoDBv2 AwsDynamoDb 4.0.20 4.0.21.7 2026-06-22
AWSSDK.Kinesis AwsKinesis 4.0.9.1 4.0.9.8 2026-06-22
AWSSDK.SQS AwsSqs 4.0.3.1 4.0.3.8 2026-06-22
AWSSDK.SimpleNotificationService AwsSns 4.0.3.1 4.0.3.8 2026-06-22
AWSSDK.EventBridge AwsEventBridge 4.0.6.3 4.0.6.10 2026-06-22
AWSSDK.S3 AwsS3 4.0.24.1 4.0.25.3 2026-06-22
AWSSDK.StepFunctions AwsStepFunctions 4.0.4.1 4.0.4.8 2026-06-22
HotChocolate.AspNetCore HotChocolate 15.1.16 15.1.17 2026-06-16
Google.Protobuf Protobuf 3.35.0 3.35.1 2026-06-11
Microsoft.Data.SqlClient MicrosoftDataSqlClient 6.1.5 6.1.6 2026-06-25
Microsoft.Data.SqlClient MicrosoftDataSqlClient 7.0.1 7.0.2 2026-06-25
ServiceStack.Redis ServiceStackRedis 10.0.6 10.0.8 2026-06-19
MySqlConnector MySqlConnector 2.6.0 2.6.1 2026-06-25
Microsoft.Data.Sqlite MicrosoftDataSqlite 8.0.27 8.0.28 2026-06-09
Microsoft.Data.Sqlite MicrosoftDataSqlite 9.0.16 9.0.17 2026-06-09
Microsoft.Data.Sqlite MicrosoftDataSqlite 10.0.8 10.0.9 2026-06-09
log4net log4net 3.3.1 3.3.2 2026-06-25
Microsoft.Extensions.Telemetry ILogger 10.6.0 10.7.0 2026-06-09
Aerospike.Client Aerospike 8.4.1 8.4.2 2026-06-11
OpenTelemetry.Api OpenTelemetry 1.15.3 1.16.0 2026-06-10
Selenium.WebDriver Selenium 4.44.0 4.45.0 2026-06-16

New Major Versions Available

These have a new major outside our supported range. Review whether to widen the
integration's MaximumVersion and the definition's MaxVersionExclusive/SpecificVersions,
or add a new split entry, to adopt.

Package Integration Current cap Latest available
Amazon.Lambda.RuntimeSupport AwsLambda 1.14.3 2.1.2
HotChocolate.AspNetCore HotChocolate 15.1.17 16.3.0
StackExchange.Redis StackExchangeRedis 2.13.17 3.0.11
IBMMQDotnetClient IbmMq 9.4.5.1 10.0.0

Package Version Cooldown Report

The following versions were published less than 2 days ago and have been ignored.
These require manual review before inclusion.

Package Integration Version Kept Ignored Version Published Age (days)
AWSSDK.Core AwsSdk 4.0.9.7 4.0.100 2026-06-29 0
AWSSDK.DynamoDBv2 AwsDynamoDb 4.0.21.7 4.0.100 2026-06-29 0
AWSSDK.Kinesis AwsKinesis 4.0.9.8 4.0.100 2026-06-29 0
AWSSDK.SQS AwsSqs 4.0.3.8 4.0.100 2026-06-29 0
AWSSDK.SimpleNotificationService AwsSns 4.0.3.8 4.0.100 2026-06-29 0
AWSSDK.EventBridge AwsEventBridge 4.0.6.10 4.0.100 2026-06-29 0
AWSSDK.S3 AwsS3 4.0.25.3 4.0.100 2026-06-29 0
AWSSDK.StepFunctions AwsStepFunctions 4.0.4.8 4.0.100 2026-06-29 0

@andrewlock
andrewlock marked this pull request as ready for review June 30, 2026 14:42
@andrewlock
andrewlock requested a review from a team as a code owner June 30, 2026 14:42

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: da7fd70277

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines +420 to +421
var reportPath = TemporaryDirectory / "bump_report.md";
await versionGenerator.BumpReport.SaveToFile(reportPath);

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Persist major-only reports in tracked files

When the only output is MajorAvailableEntries, this writes the report only to .nuke/temp/bump_report.md, and .nuke/temp/ is ignored by the repo. The scheduled .github/workflows/auto_bump_test_package_versions.yml then calls peter-evans/create-pull-request, which only creates a PR when the checkout has a diff (per the action docs: https://github.com/peter-evans/create-pull-request#action-behaviour). If an unsupported major is already reflected in supported_versions.json from a previous run or a merged bot PR, a later run produces only this ignored temp report, so no PR is opened and the pending unsupported major stops being flagged; persist the pending-major marker in tracked output or otherwise dirty the checkout when these entries exist.

Useful? React with 👍 / 👎.

@bouwkast bouwkast left a comment

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@bouwkast
bouwkast enabled auto-merge (squash) June 30, 2026 18:46
@bouwkast
bouwkast merged commit db2656c into master Jun 30, 2026
138 of 140 checks passed
@bouwkast
bouwkast deleted the steven/fix-major-version-package-reporting branch June 30, 2026 19:07
@github-actions github-actions Bot added this to the vNext-v3 milestone Jun 30, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area:builds project files, build scripts, pipelines, versioning, releases, packages

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants