-
Couldn't load subscription status.
- Fork 39
Adding Snapshot References Feature #689
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
...t.Extensions.Configuration.AzureAppConfiguration/AzureSnapshotReference/SnapshotReference.cs
Outdated
Show resolved
Hide resolved
...t.Extensions.Configuration.AzureAppConfiguration/AzureSnapshotReference/SnapshotReference.cs
Outdated
Show resolved
Hide resolved
...ons.Configuration.AzureAppConfiguration/AzureSnapshotReference/SnapshotReferenceConstants.cs
Outdated
Show resolved
Hide resolved
...t.Extensions.Configuration.AzureAppConfiguration/AzureSnapshotReference/SnapshotReference.cs
Outdated
Show resolved
Hide resolved
...t.Extensions.Configuration.AzureAppConfiguration/AzureSnapshotReference/SnapshotReference.cs
Outdated
Show resolved
Hide resolved
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationProvider.cs
Outdated
Show resolved
Hide resolved
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationProvider.cs
Outdated
Show resolved
Hide resolved
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationProvider.cs
Outdated
Show resolved
Hide resolved
...t.Extensions.Configuration.AzureAppConfiguration/AzureSnapshotReference/SnapshotReference.cs
Outdated
Show resolved
Hide resolved
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationProvider.cs
Outdated
Show resolved
Hide resolved
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationProvider.cs
Outdated
Show resolved
Hide resolved
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationProvider.cs
Outdated
Show resolved
Hide resolved
tests/Tests.AzureAppConfiguration/Integration/IntegrationTests.cs
Outdated
Show resolved
Hide resolved
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationProvider.cs
Outdated
Show resolved
Hide resolved
jimmyca15
reviewed
Aug 20, 2025
...t.Extensions.Configuration.AzureAppConfiguration/AzureSnapshotReference/SnapshotReference.cs
Outdated
Show resolved
Hide resolved
This was referenced Oct 1, 2025
Open
Open
Open
Open
Open
Open
Open
Open
Bump Microsoft.Azure.AppConfiguration.AspNetCore from 8.0.0 to 8.4.0
KranthiGajjelli/eshoponweb22#11
Open
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Overview
Adds Snapshot References to the .NET configuration provider for dynamic updates via the cloud portal, with automatic resolution and no code changes.
Key Changes
AzureAppConfigurationProvider.cs
SnapshotReference.cs (New)
Model for snapshot reference: name, client, cancellation token.
SnapshotReferenceConstants.cs (New)
Shared constants for content type and JSON fields.
Test Coverage
Includes unit and integration tests for resolution, refresh behavior, and edge cases.
Key Callouts
Resolution: Auto-detected by content type; lexicographic “last wins” for duplicates.
Exceptions:
Refresh: Always triggers refreshAll, regardless of settings.
JSON Handling: Ignores extra fields, validates snapshot_name, handles empty values.
Edge Cases: Non-existent references and empty names return empty config without exceptions.