-
Notifications
You must be signed in to change notification settings - Fork 69
Allow resolving from resolved schema using Manifest file. #1160
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
Changes from 3 commits
cb800c4
cb32b9d
b55ac71
34ee08a
ff6b470
613f6af
7b35508
77ff50b
3ca9298
ef27d97
946891c
88a63a9
8367685
a18e5a6
899eb01
9cea92a
99af1c5
de7fb63
530faea
637eecb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -68,7 +68,11 @@ pub struct RegistryManifest { | |||||||||
| pub struct Dependency { | ||||||||||
| /// The name of the dependency. | ||||||||||
| pub name: String, | ||||||||||
| /// The registry path of the dependency. | ||||||||||
| /// The path to the dependency. | ||||||||||
| /// | ||||||||||
| /// This can be either: | ||||||||||
| /// - A manifest of a published registry | ||||||||||
| /// - A directory containing the raw definition. | ||||||||||
| pub registry_path: VirtualDirectoryPath, | ||||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can we call it accordingly? could be confusing to see
Suggested change
or
Suggested change
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since manifest work today and folks use them, I didn't want to issue breaking changes. I'm happy to move to something else and declare an Personally, I prefer Should I update that now?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. now is great, I can also do it in #1106 (
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since this is a rather large PR - I'd rather do a dedicate PR for that change. I think we could also look at moving from |
||||||||||
| } | ||||||||||
|
|
||||||||||
|
|
||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| file_format: manifest/2.0.0 | ||
| name: resolved | ||
| description: Test repository that has been resolved. | ||
| version: 1.0.0 | ||
| repository_url: https://github.com/open-telemetry/weaver.git | ||
| stability: stable | ||
| resolved_schema_url: resolved_1.0.0.yaml |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| file_format: manifest/2.0.0 | ||
| name: resolved | ||
| description: Test repository that has been resolved. | ||
| version: 2.0.0 | ||
| repository_url: https://github.com/open-telemetry/weaver.git | ||
| stability: stable | ||
| resolved_schema_url: https://github.com/open-telemetry/weaver.git\creates/weaver_semconv/tests/published_respository/resolved/resolved_2.0.0 |
Uh oh!
There was an error while loading. Please reload this page.