Fix pkg path and remove Quic test#14
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the Go module path to the GitHub-hosted import path and aligns all internal/external imports accordingly, while removing the QUIC examples test target from CI and the Makefile.
Changes:
- Changed the Go module path to
github.com/eclipse-zenoh/zenoh-goand updated all affected imports. - Updated
//go:linknametargets inzenohextto match the new package import path. - Removed the QUIC examples test target from the Makefile and CI workflow.
Reviewed changes
Copilot reviewed 46 out of 46 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
zenoh/zenohext/session_ext.go |
Updates zenoh import path and adjusts //go:linkname targets to the new module path. |
zenoh/zenohext/serialization.go |
Updates zenoh import path to the new module path. |
zenoh/zenohext/advanced_subscriber.go |
Updates zenoh and zenoh/internal imports to the new module path. |
zenoh/zenohext/advanced_publisher.go |
Updates zenoh and zenoh/internal imports to the new module path. |
zenoh/subscriber.go |
Updates zenoh/internal import to the new module path. |
zenoh/session.go |
Updates zenoh/internal import to the new module path. |
zenoh/scout.go |
Updates zenoh/internal import to the new module path. |
zenoh/queryable.go |
Updates zenoh/internal import to the new module path. |
zenoh/querier.go |
Updates zenoh/internal import to the new module path. |
zenoh/matching.go |
Updates zenoh/internal import to the new module path. |
zenoh/liveliness.go |
Updates zenoh/internal import to the new module path. |
zenoh/get.go |
Updates zenoh/internal import to the new module path. |
tests/source_info_test.go |
Updates zenoh import path to the new module path. |
tests/serialization_test.go |
Updates zenohext import path to the new module path. |
tests/queryable_get_test.go |
Updates zenoh import path to the new module path. |
tests/pub_sub_test.go |
Updates zenoh import path to the new module path. |
tests/matching_test.go |
Updates zenoh import path to the new module path. |
tests/liveliness_test.go |
Updates zenoh import path to the new module path. |
tests/encoding_test.go |
Updates zenoh import path to the new module path. |
tests/cancellation_test.go |
Updates zenoh import path to the new module path. |
Makefile |
Removes the test_examples_quic target. |
go.mod |
Updates the module path to github.com/eclipse-zenoh/zenoh-go. |
examples/z_sub/z_sub.go |
Updates imports to the new module path. |
examples/z_sub_thr/z_sub_thr.go |
Updates imports to the new module path. |
examples/z_sub_liveliness/z_sub_liveliness.go |
Updates imports to the new module path. |
examples/z_storage/z_storage.go |
Updates imports to the new module path. |
examples/z_scout/z_scout.go |
Updates imports to the new module path. |
examples/z_queryable/z_queryable.go |
Updates imports to the new module path. |
examples/z_querier/z_querier.go |
Updates imports to the new module path. |
examples/z_put/z_put.go |
Updates imports to the new module path. |
examples/z_pull/z_pull.go |
Updates imports to the new module path. |
examples/z_pub/z_pub.go |
Updates imports to the new module path. |
examples/z_pub_thr/z_pub_thr.go |
Updates imports to the new module path. |
examples/z_pong/z_pong.go |
Updates imports to the new module path. |
examples/z_ping/z_ping.go |
Updates imports to the new module path. |
examples/z_liveliness/z_liveliness.go |
Updates imports to the new module path. |
examples/z_info/z_info.go |
Updates imports to the new module path. |
examples/z_get/z_get.go |
Updates imports to the new module path. |
examples/z_get_liveliness/z_get_liveliness.go |
Updates imports to the new module path. |
examples/z_delete/z_delete.go |
Updates imports to the new module path. |
examples/z_bytes/z_bytes.go |
Updates imports to the new module path. |
examples/z_advanced_sub/z_advanced_sub.go |
Updates imports to the new module path. |
examples/z_advanced_pub/z_advanced_pub.go |
Updates imports to the new module path. |
examples/utils/args.go |
Updates zenoh import path to the new module path. |
.github/workflows/ci.yml |
Removes the CI step that ran QUIC example tests. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
OlivierHecart
approved these changes
Apr 8, 2026
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
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.
Fix pkg path and remove Quic test