-
Notifications
You must be signed in to change notification settings - Fork 40
Add support for filtering by tags #637
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
Changes from all commits
Commits
Show all changes
59 commits
Select commit
Hold shift + click to select a range
c2e18d7
Adding allocation id
rossgrambo 1c2c525
serialize with sorted keys
SamSadfa cb4e615
use string empty
SamSadfa 49ef1fc
nit
SamSadfa 86fde17
rename ff id to TelemetryVariantPercentile
SamSadfa c191d7f
add more values
SamSadfa 603cd0f
dotnet format
SamSadfa 35386d0
Version bump
rossgrambo 51d4ad7
Merge pull request #600 from Azure/rossgrambo/allocation_id
samsadsam 0619626
Merge branch 'preview' into rossgrambo/merge-main-to-preview
rossgrambo 9216437
Merge pull request #604 from Azure/rossgrambo/merge-main-to-preview
rossgrambo dbadbb9
Merge branch 'preview' into rossgrambo/version-bump-8.1.0-preview
rossgrambo 4b5e523
Merge pull request #603 from Azure/rossgrambo/version-bump-8.1.0-preview
rossgrambo 5e6a012
Add `RegisterAll` API to enable monitoring collections of key-values …
amerjusupovic 6dc9ae2
Give the users the ability to have control over ConfigurationClient i…
amerjusupovic 68f4b8f
first draft tag filtering support
amerjusupovic 3b12ee4
add alternate APIs
amerjusupovic 7bdb2d0
change to use ienumerable
amerjusupovic 0cfdec6
update featureflagoptions to match main options
amerjusupovic acc131f
update keyvalueselector equals and hashcode
amerjusupovic 6d6f9d3
update param comments for selects
amerjusupovic 6da33d2
merge with conflicts
samsadsam 4ab2dda
fix merge conflict errors
samsadsam 8745c9d
add validation for tagsfilter param, add to comment
amerjusupovic f0724cd
edit error message for format
amerjusupovic 6b0aaa4
edit comment
amerjusupovic c243aa8
add unit tests
amerjusupovic b50529e
remove unused file
amerjusupovic d5dc83d
Merge branch 'main' into user/samisadfa/merge-main-to-preview
samsadsam c2e3558
revert versions
samsadsam a7e3a69
update tests to include feature flag select
amerjusupovic 258452d
merge with main
samsadsam 959d7af
add refresh test
amerjusupovic 1fc066b
ff only refresh test
amerjusupovic d8a421a
update equals for selector
amerjusupovic eee46a4
fix equals
amerjusupovic da49c32
update equals
amerjusupovic c3168a9
reorder properties in keyvalueselector
amerjusupovic 573320e
Merge pull request #636 from Azure/user/samisadfa/merge-main-to-preview
samsadsam d7f5939
upgrade to 8.2.0-preview (#638)
samsadsam 54c8a44
fix incorrect test
amerjusupovic 91afa79
Merge branch 'preview' of https://github.com/Azure/AppConfiguration-D…
amerjusupovic 7661b2c
fix equals for selector
amerjusupovic d108f64
update gethashcode for keyvalueselector
amerjusupovic f2191df
PR comments, in progress
amerjusupovic 7387e28
update tests from PR comments
amerjusupovic 17c6562
add validation for number of tags, add test
amerjusupovic e1930cd
rename tagsFilter to tagsFilters everywhere
amerjusupovic a3be952
fix usings, missing updates to ffoptions
amerjusupovic 48be704
update ffoptions select again
amerjusupovic 6b2e2a4
fix tests
amerjusupovic d3d9261
update sdk version
amerjusupovic 76f73ea
update tagsfilters to tagfilters
amerjusupovic 7ca2704
remove tagsfilters again
amerjusupovic 9ac1ea1
PR comments
amerjusupovic 4397a8e
PR comments
amerjusupovic d294da4
Merge branch 'main' of https://github.com/Azure/AppConfiguration-Dotn…
amerjusupovic d592329
Revert "Merge pull request #600 from Azure/rossgrambo/allocation_id"
amerjusupovic c465dda
Revert "Give the users the ability to have control over Configuration…
amerjusupovic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
1,054 changes: 537 additions & 517 deletions
1,054
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationOptions.cs
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
16 changes: 16 additions & 0 deletions
16
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/TagValue.cs
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| // Copyright (c) Microsoft Corporation. | ||
| // Licensed under the MIT license. | ||
| // | ||
| namespace Microsoft.Extensions.Configuration.AzureAppConfiguration | ||
| { | ||
| /// <summary> | ||
| /// Defines well known tag values that are used within Azure App Configuration. | ||
| /// </summary> | ||
| public class TagValue | ||
amerjusupovic marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| { | ||
| /// <summary> | ||
| /// Matches null tag values. | ||
| /// </summary> | ||
| public const string Null = "\0"; | ||
| } | ||
| } | ||
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.