Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Nov 19, 2025

Updated Azure.Extensions.AspNetCore.Configuration.Secrets from 1.3.2 to 1.4.0.

Release notes

Sourced from Azure.Extensions.AspNetCore.Configuration.Secrets's releases.

1.4.0

1.4.0 (2025-11-05)

Features Added

  • Upgraded api-version to 2025-11-01.

1.4.0-beta.4

1.4.0-beta.4 (2025-11-18)

Features Added

  • Updated azure monitor metric alert APIs to version 2024-03-01-preview.

1.4.0-beta.2

1.4.0-beta.2 (2025-11-10)

Features Added

  • Added extension method BicepValueExtensions.ToBicepExpression which converts any IBicepValue into BicepExpression to build up complex expressions in bicep. For more details, please refer to the documents in README.
  • Added BicepFunction.GetResourceId corresponding to bicep built-in function resourceId.
  • Added BicepFunction.GetExtensionResourceId corresponding to bicep built-in function extensionResourceId.

Bugs Fixed

  • Enabled the ability to assign expressions into a property with type of a ProvisionableConstruct via low level APIs.
  • Fixed exception when output variable has a type of array or object.
  • Fixed bug when indexing output list or dictionary, a KeyNotFoundException was always thrown. (#​48491)

Other Changes

  • Now collection types (BicepList<T> and BicepDictionary<T>) would be able to force to be empty. (#​53346)

1.4.0-beta.1

1.4.0-beta.1 (2025-10-21)

Features Added

  • Added support for configuring sampling via OpenTelemetry environment
    variables:
    • OTEL_TRACES_SAMPLER (supported values: microsoft.rate_limited,
      microsoft.fixed_percentage).
    • OTEL_TRACES_SAMPLER_ARG (rate limit in traces/sec for
      microsoft.rate_limited, sampling ratio 0.0 - 1.0 for
      microsoft.fixed_percentage).
      (#​52720)
  • Added handling of stable database client span semantic conventions
    (#​53050)
  • Added new performance monitoring capabilities to help track application health and resource usage. Newly added metrics:
    • \.NET CLR Exceptions(??APP_CLR_PROC??)\# of Exceps Thrown / sec
    • \ASP.NET Applications(??APP_W3SVC_PROC??)\Requests/Sec;
    • \Process(??APP_WIN32_PROC??)\% Processor Time"
    • \Process(??APP_WIN32_PROC??)\% Processor Time Normalized
    • \Process(??APP_WIN32_PROC??)\Private Bytes
      (#​52705)
  • Added built-in monitoring to track SDK performance and health. Emitted metrics:
    • preview.item.success.count
    • preview.item.dropped.count
    • preview.item.retry.count
      (#​53010)
  • Add enduser.pseudo.id as ai.user.id
    (#​52722)
  • Add ai.location.ip mapping for all telemetry types (#​52211)

Commits viewable in compare view.

Dependabot compatibility score

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 commands and options

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

ElwoodMoves and others added 30 commits November 18, 2025 08:40
…so that it can be updated without building update support into the window itself.
Mostly done, but I need to test more of the shutdown cases and add more logging where it would be beneficial. Also need to do some major refactoring as this one giant function is awful.
…ing at Audio Signal problems, but those shouldn't be fatal.
…xpected text, so that they're easier to maintain.
…rors can be logged, plus there's not an extra IAsyncEnumerator state machine in the middle anymore.
…grammars and cancel any ongoing listen operations.

Includes a lot of improvements to TaskAssert to support timeouts on async tasks, for both Task and ValueTask, while sharing a lot more code.
…rammar, so they exactly match the command names in the layout data structure.
…e audio is interpretted correctly by the current grammar.

This includes adding a hook to configure the input and output audio for the speech recognition and synthesis systems.
ElwoodMoves and others added 22 commits November 19, 2025 15:25
Speech synthesis and recognition report to create a conversational interface for controlling the remote

Related work items: #477, #496, #497, #498, #499, #500, #501, #502, #503
Add grammar and support for phrases like "twice" or "3 times" will be interpreted as invoking the command multiple times.

Related work items: #512, #514, #515, #519, #520
Create a `ListeningController` that can disable listening while the application is speaking, so that it doesn't accidentally listen to its own speech.

Related work items: #522, #525, #528, #537, #538, #539, #540
…ifecycle

Implement a top-level command service and application lifecycle, which individual command services (TiVo, Broadlink, and Application) will plug into.

- Command service that delegates to specialized command services, and handles logging and error handling for all.
- ApplicationLifecycle implementation that uses Blazor scopes to isolate restartable services.
- Hook up the new CommandService
- Error handling and cleanup in ApplicationLifecycle

Related work items: #529, #545, #552
Publish authenticated data to AppInsights

Related work items: #553, #554
- #530 Implement TiVoService
- #531 Implement StaticTiVoLocator
- #533 Implement LibraryTiVoConnectionFactory to wrap the I8Beef implentation, including initialization, cleanup, and logging.
- Hook up the new TiVoService to the CommandService.

Related work items: #530, #531, #533
Related work items: #483
Some visual improvements to the UI

Related work items: #549
Scaffolding for the TiVo locator

Related work items: #579
…d speech too.

Reimplement speech sample collection to capture rejected speech too.
Also improves the speech sample collection user experience.

Related work items: #587
…Controller

Create ScopedBackgroundProcess and convert ConversationController to use this shareable process for lifetime control.

Fixes #569

Related work items: #569
Create a ClickOnce deployment

Related work items: #585, #586
Refactor ConversationController into a better state machine that can handle things like reversing a mistake when someone says "That's wrong"
…EnumertorCancellation)

Related work items: #608
…program, e.g. device host names that were discovered

Related work items: #578
Adds support to the ConversationStateMachine that will ask for confirmation of low-confidence speech.

Related work items: #603
A service principal can be configured with environment variables. It will access an Azure Key Vault to get connection information for Application Insights, and then authenticate with AI and start uploading trace messages.

Related work items: #555, #612
…gram.

Add start-up screens to show what's going on in the program.

Part 1: WPF (screens prior to Blazor initialization)

Related work items: #536
I should use FluentAssertions in all my new unit tests

Related work items: #617
…1.4.0

---
updated-dependencies:
- dependency-name: Azure.Extensions.AspNetCore.Configuration.Secrets
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code labels Nov 19, 2025
@jodavis jodavis closed this Nov 22, 2025
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Nov 22, 2025

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/nuget/AdaptiveRemote/Azure.Extensions.AspNetCore.Configuration.Secrets-1.4.0 branch November 22, 2025 15:59
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.

4 participants