Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 30, 2025

Updated Aspire.Hosting.AppHost from 9.5.1 to 9.5.2.

Release notes

Sourced from Aspire.Hosting.AppHost's releases.

9.5.2

What's Changed

Full Changelog: dotnet/aspire@v9.5.1...v9.5.2

Commits viewable in compare view.

Updated Aspire.Hosting.NodeJs from 9.5.1 to 9.5.2.

Release notes

Sourced from Aspire.Hosting.NodeJs's releases.

9.5.2

What's Changed

Full Changelog: dotnet/aspire@v9.5.1...v9.5.2

Commits viewable in compare view.

Updated FastEndpoints from 7.0.1 to 7.1.0.

Release notes

Sourced from FastEndpoints's releases.

7.1


❇️ Help Keep FastEndpoints Free & Open-Source ❇️

Due to the current unfortunate state of FOSS, please consider becoming a sponsor and help us beat the odds to keep the project alive and free for everyone.


New 🎉

Better conditional sending of responses

All Send.*Async() methods now return a Task<Void> result. If a response needs to be sent conditionally, you can simply change the return type of the handler from Task to Task<Void> and return the awaited result as shown below in order to stop further execution of endpoint handler logic:

public override async Task<Void> HandleAsync(CancellationToken c)
{
    if (id == 0)
        return await Send.NotFoundAsync();

    if (id == 1)
        return await Send.NoContentAsync();

    return await Send.OkAsync();
}

If there's no async work being done in the handler, the Task<Void> can simply be returned as well:

public override Task<Void> HandleAsync(CancellationToken c)
{
    return Send.OkAsync();
}
Specify max request body size per endpoint

Instead of globally increasing the max request body size in Kestrel, you can now set a max body size per endpoint where necessary like so:

public override void Configure()
{
    Post("/file-upload");
    AllowFileUploads();
    MaxRequestBodySize(50 * 1024 * 1024);
 ... (truncated)

Commits viewable in [compare view](https://github.com/FastEndpoints/FastEndpoints/compare/v7.0.1...v7.1).
</details>

Updated [FastEndpoints.Security](https://github.com/FastEndpoints/FastEndpoints) from 7.0.1 to 7.1.0.

<details>
<summary>Release notes</summary>

_Sourced from [FastEndpoints.Security's releases](https://github.com/FastEndpoints/FastEndpoints/releases)._

## 7.1

---

## ❇️ Help Keep FastEndpoints Free & Open-Source ❇️

Due to the current [unfortunate state of FOSS](https://www.youtube.com/watch?v=H96Va36xbvo), please consider [becoming a sponsor](https://opencollective.com/fast-endpoints) and help us beat the odds to keep the project alive and free for everyone.

---

[//]: # (<details><summary>title text</summary></details>)

## New 🎉

<details><summary>Better conditional sending of responses</summary>

All **Send.\*Async()** methods now return a T**ask\<Void\>** result. If a response needs to be sent conditionally, you can simply change the return type of the handler from **Task** to **Task\<Void\>**  and return the awaited result as shown below in order to stop further execution of endpoint handler logic:

```csharp
public override async Task<Void> HandleAsync(CancellationToken c)
{
    if (id == 0)
        return await Send.NotFoundAsync();

    if (id == 1)
        return await Send.NoContentAsync();

    return await Send.OkAsync();
}

If there's no async work being done in the handler, the Task<Void> can simply be returned as well:

public override Task<Void> HandleAsync(CancellationToken c)
{
    return Send.OkAsync();
}
Specify max request body size per endpoint

Instead of globally increasing the max request body size in Kestrel, you can now set a max body size per endpoint where necessary like so:

public override void Configure()
{
    Post("/file-upload");
    AllowFileUploads();
    MaxRequestBodySize(50 * 1024 * 1024);
 ... (truncated)

Commits viewable in [compare view](https://github.com/FastEndpoints/FastEndpoints/compare/v7.0.1...v7.1).
</details>

Updated [FastEndpoints.Swagger](https://github.com/FastEndpoints/FastEndpoints) from 7.0.1 to 7.1.0.

<details>
<summary>Release notes</summary>

_Sourced from [FastEndpoints.Swagger's releases](https://github.com/FastEndpoints/FastEndpoints/releases)._

## 7.1

---

## ❇️ Help Keep FastEndpoints Free & Open-Source ❇️

Due to the current [unfortunate state of FOSS](https://www.youtube.com/watch?v=H96Va36xbvo), please consider [becoming a sponsor](https://opencollective.com/fast-endpoints) and help us beat the odds to keep the project alive and free for everyone.

---

[//]: # (<details><summary>title text</summary></details>)

## New 🎉

<details><summary>Better conditional sending of responses</summary>

All **Send.\*Async()** methods now return a T**ask\<Void\>** result. If a response needs to be sent conditionally, you can simply change the return type of the handler from **Task** to **Task\<Void\>**  and return the awaited result as shown below in order to stop further execution of endpoint handler logic:

```csharp
public override async Task<Void> HandleAsync(CancellationToken c)
{
    if (id == 0)
        return await Send.NotFoundAsync();

    if (id == 1)
        return await Send.NoContentAsync();

    return await Send.OkAsync();
}

If there's no async work being done in the handler, the Task<Void> can simply be returned as well:

public override Task<Void> HandleAsync(CancellationToken c)
{
    return Send.OkAsync();
}
Specify max request body size per endpoint

Instead of globally increasing the max request body size in Kestrel, you can now set a max body size per endpoint where necessary like so:

public override void Configure()
{
    Post("/file-upload");
    AllowFileUploads();
    MaxRequestBodySize(50 * 1024 * 1024);
 ... (truncated)

Commits viewable in [compare view](https://github.com/FastEndpoints/FastEndpoints/compare/v7.0.1...v7.1).
</details>

Updated [Microsoft.Extensions.ServiceDiscovery](https://github.com/dotnet/aspire) from 9.5.1 to 9.5.2.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.ServiceDiscovery's releases](https://github.com/dotnet/aspire/releases)._

## 9.5.2

## What's Changed
* [release/9.5] Revert SQL Server container image tag from 2025-latest to 2022-latest for Mac ARM compatibility by @​github-actions[bot] in https://github.com/dotnet/aspire/pull/11908
* [release/9.5] Ensure OutputPath is created in ResourceContainerImageBuilder by @​github-actions[bot] in https://github.com/dotnet/aspire/pull/11886
* [release/9.5] Add configuration to suppress unsecured telemetry message in dashboard by @​github-actions[bot] in https://github.com/dotnet/aspire/pull/11954
* [release/9.5] Update dependencies from https://github.com/microsoft/usvc-apiserver build 0.17.3 by @​danegsta in https://github.com/dotnet/aspire/pull/12032
* [release/9.5] Multi-target RabbitMQ and Redis client libraries by @​eerhardt in https://github.com/dotnet/aspire/pull/12138
* Backport PR #​11951: Add noProfileSwitch to run command in DotNetCliRunner by @​Copilot in https://github.com/dotnet/aspire/pull/11959
* Bump patch version to 9.5.2 by @​Copilot in https://github.com/dotnet/aspire/pull/12139


**Full Changelog**: https://github.com/dotnet/aspire/compare/v9.5.1...v9.5.2

Commits viewable in [compare view](https://github.com/dotnet/aspire/compare/v9.5.1...v9.5.2).
</details>

Updated [OpenTelemetry.Instrumentation.AspNetCore](https://github.com/open-telemetry/opentelemetry-dotnet-contrib) from 1.12.0 to 1.13.0.

<details>
<summary>Release notes</summary>

_Sourced from [OpenTelemetry.Instrumentation.AspNetCore's releases](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/releases)._

## 1.13.0

* NuGet: [OpenTelemetry.Exporter.Geneva v1.13.0](https://www.nuget.org/packages/OpenTelemetry.Exporter.Geneva/1.13.0)

  * Updated OpenTelemetry core component version(s) to `1.13.1`.
    ([#​3218](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3218))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Exporter.Geneva-1.13.0/src/OpenTelemetry.Exporter.Geneva/CHANGELOG.md) for details.


## 1.13.0-rc.1

* NuGet: [OpenTelemetry.Instrumentation.AspNet v1.13.0-rc.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AspNet/1.13.0-rc.1)

   No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AspNet-1.13.0-rc.1/src/OpenTelemetry.Instrumentation.AspNet/CHANGELOG.md) for details.
* NuGet: [OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule v1.13.0-rc.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule/1.13.0-rc.1)

   No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AspNet-1.13.0-rc.1/src/OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule/CHANGELOG.md) for details.


## 1.13.0-beta.2

* NuGet: [OpenTelemetry.Instrumentation.Wcf v1.13.0-beta.2](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Wcf/1.13.0-beta.2)

  * Fixes possible infinite recursion when WCF is hosted in ASP.NET.
    ([#​3248](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3248))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.Wcf-1.13.0-beta.2/src/OpenTelemetry.Instrumentation.Wcf/CHANGELOG.md) for details.


## 1.13.0-beta.1

* NuGet: [OpenTelemetry.Resources.Host v1.13.0-beta.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWSLambda/1.13,0-beta.1)

* Added support for the `host.arch` resource attribute in `HostDetector`
  for .NET only.
  ([#​3147](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3147))

* Updated OpenTelemetry core component version(s) to `1.13.1`.
  ([#​3218](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3218))

   See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Resources.Host-1.13.0-beta.1/src/OpenTelemetry.Resources.Host/CHANGELOG.md) for details.




## 1.13.0-alpha.1

* NuGet: [OpenTelemetry.Exporter.Geneva v1.13.0-alpha.1](https://www.nuget.org/packages/OpenTelemetry.Exporter.Geneva/1.13.0-alpha.1)

  * **Experimental**: Added an option for configuring a custom string size limit in
    the MessagePack serializer. The maximum string length, in characters, can be
    set using the `PrivatePreviewLogMessagePackStringSizeLimit=<CharCount>`
    connection string parameter.
    ([#​2813](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/2813))
  * Add httpUrl for HTTP server spans mapped from multiple attributes.
    ([#​2818](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/2818))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Exporter.Geneva-1.13.0-alpha.1/src/OpenTelemetry.Exporter.Geneva/CHANGELOG.md) for details.


## 1.12.1

* NuGet: [OpenTelemetry.Extensions.AWS v1.12.1](https://www.nuget.org/packages/OpenTelemetry.Extensions.AWS/1.12.1)

  No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AWS-1.12.0/src/OpenTelemetry.Extensions.AWS/CHANGELOG.md) for details.
* NuGet: [OpenTelemetry.Instrumentation.AWS v1.12.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWS/1.12.1)

  No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AWS-1.12.0/src/OpenTelemetry.Instrumentation.AWS/CHANGELOG.md) for details.
* NuGet: [OpenTelemetry.Instrumentation.AWSLambda v1.12.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWSLambda/1.12.1)

 * Add `faas.instance` and `faas.max_memory` resource/span attributes.
   ([#​2928](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/2928))

   See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AWS-1.12.1/src/OpenTelemetry.Instrumentation.AWSLambda/CHANGELOG.md) for details.


Commits viewable in [compare view](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/compare/Instrumentation.AspNetCore-1.12.0...Exporter.Geneva-1.13.0).
</details>

Updated [OpenTelemetry.Instrumentation.Http](https://github.com/open-telemetry/opentelemetry-dotnet-contrib) from 1.12.0 to 1.13.0.

<details>
<summary>Release notes</summary>

_Sourced from [OpenTelemetry.Instrumentation.Http's releases](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/releases)._

## 1.13.0

* NuGet: [OpenTelemetry.Exporter.Geneva v1.13.0](https://www.nuget.org/packages/OpenTelemetry.Exporter.Geneva/1.13.0)

  * Updated OpenTelemetry core component version(s) to `1.13.1`.
    ([#​3218](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3218))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Exporter.Geneva-1.13.0/src/OpenTelemetry.Exporter.Geneva/CHANGELOG.md) for details.


## 1.13.0-rc.1

* NuGet: [OpenTelemetry.Instrumentation.AspNet v1.13.0-rc.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AspNet/1.13.0-rc.1)

   No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AspNet-1.13.0-rc.1/src/OpenTelemetry.Instrumentation.AspNet/CHANGELOG.md) for details.
* NuGet: [OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule v1.13.0-rc.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule/1.13.0-rc.1)

   No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AspNet-1.13.0-rc.1/src/OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule/CHANGELOG.md) for details.


## 1.13.0-beta.2

* NuGet: [OpenTelemetry.Instrumentation.Wcf v1.13.0-beta.2](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Wcf/1.13.0-beta.2)

  * Fixes possible infinite recursion when WCF is hosted in ASP.NET.
    ([#​3248](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3248))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.Wcf-1.13.0-beta.2/src/OpenTelemetry.Instrumentation.Wcf/CHANGELOG.md) for details.


## 1.13.0-beta.1

* NuGet: [OpenTelemetry.Resources.Host v1.13.0-beta.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWSLambda/1.13,0-beta.1)

* Added support for the `host.arch` resource attribute in `HostDetector`
  for .NET only.
  ([#​3147](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3147))

* Updated OpenTelemetry core component version(s) to `1.13.1`.
  ([#​3218](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3218))

   See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Resources.Host-1.13.0-beta.1/src/OpenTelemetry.Resources.Host/CHANGELOG.md) for details.




## 1.13.0-alpha.1

* NuGet: [OpenTelemetry.Exporter.Geneva v1.13.0-alpha.1](https://www.nuget.org/packages/OpenTelemetry.Exporter.Geneva/1.13.0-alpha.1)

  * **Experimental**: Added an option for configuring a custom string size limit in
    the MessagePack serializer. The maximum string length, in characters, can be
    set using the `PrivatePreviewLogMessagePackStringSizeLimit=<CharCount>`
    connection string parameter.
    ([#​2813](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/2813))
  * Add httpUrl for HTTP server spans mapped from multiple attributes.
    ([#​2818](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/2818))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Exporter.Geneva-1.13.0-alpha.1/src/OpenTelemetry.Exporter.Geneva/CHANGELOG.md) for details.


## 1.12.1

* NuGet: [OpenTelemetry.Extensions.AWS v1.12.1](https://www.nuget.org/packages/OpenTelemetry.Extensions.AWS/1.12.1)

  No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AWS-1.12.0/src/OpenTelemetry.Extensions.AWS/CHANGELOG.md) for details.
* NuGet: [OpenTelemetry.Instrumentation.AWS v1.12.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWS/1.12.1)

  No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AWS-1.12.0/src/OpenTelemetry.Instrumentation.AWS/CHANGELOG.md) for details.
* NuGet: [OpenTelemetry.Instrumentation.AWSLambda v1.12.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWSLambda/1.12.1)

 * Add `faas.instance` and `faas.max_memory` resource/span attributes.
   ([#​2928](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/2928))

   See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AWS-1.12.1/src/OpenTelemetry.Instrumentation.AWSLambda/CHANGELOG.md) for details.


Commits viewable in [compare view](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/compare/Instrumentation.AspNetCore-1.12.0...Exporter.Geneva-1.13.0).
</details>

Updated [OpenTelemetry.Instrumentation.Runtime](https://github.com/open-telemetry/opentelemetry-dotnet-contrib) from 1.12.0 to 1.13.0.

<details>
<summary>Release notes</summary>

_Sourced from [OpenTelemetry.Instrumentation.Runtime's releases](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/releases)._

## 1.13.0

* NuGet: [OpenTelemetry.Exporter.Geneva v1.13.0](https://www.nuget.org/packages/OpenTelemetry.Exporter.Geneva/1.13.0)

  * Updated OpenTelemetry core component version(s) to `1.13.1`.
    ([#​3218](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3218))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Exporter.Geneva-1.13.0/src/OpenTelemetry.Exporter.Geneva/CHANGELOG.md) for details.


## 1.13.0-rc.1

* NuGet: [OpenTelemetry.Instrumentation.AspNet v1.13.0-rc.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AspNet/1.13.0-rc.1)

   No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AspNet-1.13.0-rc.1/src/OpenTelemetry.Instrumentation.AspNet/CHANGELOG.md) for details.
* NuGet: [OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule v1.13.0-rc.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule/1.13.0-rc.1)

   No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AspNet-1.13.0-rc.1/src/OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule/CHANGELOG.md) for details.


## 1.13.0-beta.2

* NuGet: [OpenTelemetry.Instrumentation.Wcf v1.13.0-beta.2](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.Wcf/1.13.0-beta.2)

  * Fixes possible infinite recursion when WCF is hosted in ASP.NET.
    ([#​3248](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3248))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.Wcf-1.13.0-beta.2/src/OpenTelemetry.Instrumentation.Wcf/CHANGELOG.md) for details.


## 1.13.0-beta.1

* NuGet: [OpenTelemetry.Resources.Host v1.13.0-beta.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWSLambda/1.13,0-beta.1)

* Added support for the `host.arch` resource attribute in `HostDetector`
  for .NET only.
  ([#​3147](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3147))

* Updated OpenTelemetry core component version(s) to `1.13.1`.
  ([#​3218](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/3218))

   See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Resources.Host-1.13.0-beta.1/src/OpenTelemetry.Resources.Host/CHANGELOG.md) for details.




## 1.13.0-alpha.1

* NuGet: [OpenTelemetry.Exporter.Geneva v1.13.0-alpha.1](https://www.nuget.org/packages/OpenTelemetry.Exporter.Geneva/1.13.0-alpha.1)

  * **Experimental**: Added an option for configuring a custom string size limit in
    the MessagePack serializer. The maximum string length, in characters, can be
    set using the `PrivatePreviewLogMessagePackStringSizeLimit=<CharCount>`
    connection string parameter.
    ([#​2813](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/2813))
  * Add httpUrl for HTTP server spans mapped from multiple attributes.
    ([#​2818](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/2818))

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Exporter.Geneva-1.13.0-alpha.1/src/OpenTelemetry.Exporter.Geneva/CHANGELOG.md) for details.


## 1.12.1

* NuGet: [OpenTelemetry.Extensions.AWS v1.12.1](https://www.nuget.org/packages/OpenTelemetry.Extensions.AWS/1.12.1)

  No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AWS-1.12.0/src/OpenTelemetry.Extensions.AWS/CHANGELOG.md) for details.
* NuGet: [OpenTelemetry.Instrumentation.AWS v1.12.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWS/1.12.1)

  No notable changes.

  See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AWS-1.12.0/src/OpenTelemetry.Instrumentation.AWS/CHANGELOG.md) for details.
* NuGet: [OpenTelemetry.Instrumentation.AWSLambda v1.12.1](https://www.nuget.org/packages/OpenTelemetry.Instrumentation.AWSLambda/1.12.1)

 * Add `faas.instance` and `faas.max_memory` resource/span attributes.
   ([#​2928](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/2928))

   See [CHANGELOG](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/Instrumentation.AWS-1.12.1/src/OpenTelemetry.Instrumentation.AWSLambda/CHANGELOG.md) for details.


Commits viewable in [compare view](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/compare/Instrumentation.AspNetCore-1.12.0...Exporter.Geneva-1.13.0).
</details>

Updated [Telegram.Bot](https://github.com/TelegramBots/Telegram.Bot) from 22.7.2 to 22.7.4.

<details>
<summary>Release notes</summary>

_Sourced from [Telegram.Bot's releases](https://github.com/TelegramBots/Telegram.Bot/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/TelegramBots/Telegram.Bot/commits).
</details>

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions


</details>

Bumps Aspire.Hosting.AppHost from 9.5.1 to 9.5.2
Bumps Aspire.Hosting.NodeJs from 9.5.1 to 9.5.2
Bumps FastEndpoints from 7.0.1 to 7.1.0
Bumps FastEndpoints.Security from 7.0.1 to 7.1.0
Bumps FastEndpoints.Swagger from 7.0.1 to 7.1.0
Bumps Microsoft.Extensions.ServiceDiscovery from 9.5.1 to 9.5.2
Bumps OpenTelemetry.Instrumentation.AspNetCore from 1.12.0 to 1.13.0
Bumps OpenTelemetry.Instrumentation.Http from 1.12.0 to 1.13.0
Bumps OpenTelemetry.Instrumentation.Runtime from 1.12.0 to 1.13.0
Bumps Telegram.Bot from 22.7.2 to 22.7.4

---
updated-dependencies:
- dependency-name: Aspire.Hosting.AppHost
  dependency-version: 9.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: Aspire.Hosting.NodeJs
  dependency-version: 9.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: FastEndpoints
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: FastEndpoints.Security
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: FastEndpoints.Swagger
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: Microsoft.Extensions.ServiceDiscovery
  dependency-version: 9.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: OpenTelemetry.Instrumentation.AspNetCore
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: OpenTelemetry.Instrumentation.Http
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: OpenTelemetry.Instrumentation.Runtime
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: Telegram.Bot
  dependency-version: 22.7.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Oct 30, 2025
@cloudflare-workers-and-pages
Copy link

Deploying 3sib-fbs with  Cloudflare Pages  Cloudflare Pages

Latest commit: cf55f1a
Status: ✅  Deploy successful!
Preview URL: https://6b7ab622.3sib-fbs.pages.dev
Branch Preview URL: https://dependabot-nuget-fbs-apphost-ckav.3sib-fbs.pages.dev

View logs

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 31, 2025

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot bot closed this Oct 31, 2025
@dependabot dependabot bot deleted the dependabot/nuget/Fbs.AppHost/minor-a70ae55cdc branch October 31, 2025 08:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant