-
Notifications
You must be signed in to change notification settings - Fork 69
Add support for annotations on attributes and groups #645
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
7 commits
Select commit
Hold shift + click to select a range
51fbedc
feat(semconv): add annotation support for attributes and groups.
lquerel 0b307df
Merge branch 'main' into annotations
lquerel 6466499
fix(semconv): update allowed-external-types.toml.
lquerel b1db260
Merge branch 'main' into annotations
lquerel 4ce743d
chore(semconv): udpate CHANGELOG.md
lquerel a5bb461
feat(semconv): update JSON schema and BNF syntax
lquerel 2653861
Merge branch 'main' into annotations
lquerel 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -183,6 +183,7 @@ mod tests { | |
| prefix: false, | ||
| tags: None, | ||
| value: None, | ||
| annotations: None, | ||
| } | ||
| } | ||
|
|
||
|
|
||
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
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
2 changes: 2 additions & 0 deletions
2
crates/weaver_resolver/data/registry-test-14-annotations/README.md
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,2 @@ | ||
| Test that annotations end up in the resolved registry. | ||
| This test must success. |
47 changes: 47 additions & 0 deletions
47
crates/weaver_resolver/data/registry-test-14-annotations/expected-attribute-catalog.json
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,47 @@ | ||
| [ | ||
| { | ||
| "name": "attr1", | ||
| "type": "string", | ||
| "brief": "Brief", | ||
| "examples": "eu-central-1", | ||
| "requirement_level": "required", | ||
| "note": "Note", | ||
| "stability": "stable", | ||
| "annotations": { | ||
| "code_generation": { | ||
| "exclude": true | ||
| }, | ||
| "privacy_sensitivity": "PII" | ||
| } | ||
| }, | ||
| { | ||
| "name": "attr1", | ||
| "type": "string", | ||
| "brief": "Brief", | ||
| "examples": "eu-central-1", | ||
| "requirement_level": "required", | ||
| "note": "Note", | ||
| "stability": "stable", | ||
| "annotations": { | ||
| "code_generation": { | ||
| "exclude": true | ||
| }, | ||
| "privacy_sensitivity": "PII + PHI", | ||
| "complex": { | ||
| "key1": "string", | ||
| "key2": 234, | ||
| "key3": true, | ||
| "key4": { | ||
| "key4.1": "string", | ||
| "key4.2": 234 | ||
| }, | ||
| "key5": [ | ||
| 12, | ||
| 45, | ||
| 67 | ||
| ], | ||
| "key6": null | ||
| } | ||
| } | ||
| } | ||
| ] |
Oops, something went wrong.
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.