Skip to content
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

Support for 2 semconv registries #627

Merged
merged 24 commits into from
Apr 10, 2025
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e93c6ad
feat(semconv): Add dependencies in the manifest file.
lquerel Mar 2, 2025
cef36de
feat(semconv): Add dependencies in the manifest file.
lquerel Mar 3, 2025
8f8c728
feat(semconv): Merge weaver_cache into weaver_semconv to get rid of c…
lquerel Mar 3, 2025
4ed05fd
chore(semconv): Fix Rust code format.
lquerel Mar 3, 2025
ccf8592
feat(semconv): support 2 registries
lquerel Mar 25, 2025
2676dad
feat(semconv): support 2 registries
lquerel Mar 25, 2025
c085701
Merge remote-tracking branch 'upstream/main' into support-2-registries
lquerel Mar 25, 2025
ba2b480
chore: merge with main upstream
lquerel Mar 25, 2025
cf4b5f6
chore: merge with main upstream
lquerel Mar 25, 2025
3421621
Merge remote-tracking branch 'upstream/main' into support-2-registries
lquerel Mar 25, 2025
dcb2462
chore: update Cargo.lock
lquerel Mar 25, 2025
e7342ea
feat(2-registries): propagate registry id in provenance
lquerel Mar 25, 2025
ba7b254
feat(2-registries): add tests
lquerel Mar 26, 2025
30ff653
chore: merge with upstream main
lquerel Mar 28, 2025
c397f6f
feat(2-registries): replace the semconv spec path by a provenance dat…
lquerel Apr 1, 2025
7367a1f
feat(2-registries): load registry manifest at the creation of the reg…
lquerel Apr 4, 2025
e7f5f61
feat(2-registries): garbage collect unreferenced telemetry objects
lquerel Apr 5, 2025
2945e2e
feat(2-registries): improve unit tests for multi-registry
lquerel Apr 5, 2025
2d34263
feat(2-registries): introduce the concept of virtual directory
lquerel Apr 8, 2025
8796a66
feat(2-registries): introduce the concept of virtual directory
lquerel Apr 9, 2025
9dd3f59
feat(2-registries):merge with main upstream branch
lquerel Apr 10, 2025
9ba9a94
feat(2-registries): update CHANGELOG.md
lquerel Apr 10, 2025
5aaa3ad
feat(2-registries): fix rust doc issue
lquerel Apr 10, 2025
f732476
feat(2-registries): fix tests on windows
lquerel Apr 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 11 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ publish = false
rust-version = "1.81.0"

[workspace.dependencies]
serde = { version = "1.0.219", features = ["derive"] }
serde = { version = "1.0.219", features = ["derive", "rc"] }
serde_yaml = "0.9.34"
serde_json = { version = "1.0.140" }
thiserror = "2.0.12"
Expand Down Expand Up @@ -74,7 +74,6 @@ weaver_resolver = { path = "crates/weaver_resolver" }
weaver_semconv = { path = "crates/weaver_semconv" }
weaver_resolved_schema = { path = "crates/weaver_resolved_schema" }
weaver_semconv_gen = { path = "crates/weaver_semconv_gen" }
weaver_cache = { path = "crates/weaver_cache" }
weaver_forge = { path = "crates/weaver_forge" }
weaver_checker = { path = "crates/weaver_checker" }
weaver_emit = { path = "crates/weaver_emit" }
Expand Down
39 changes: 0 additions & 39 deletions crates/weaver_cache/Cargo.toml

This file was deleted.

6 changes: 0 additions & 6 deletions crates/weaver_cache/README.md

This file was deleted.

8 changes: 0 additions & 8 deletions crates/weaver_cache/allowed-external-types.toml

This file was deleted.

Loading