From 586372e3c5dc586882f979bbe312616183c3f79e Mon Sep 17 00:00:00 2001 From: mytang0 Date: Wed, 29 Mar 2023 12:43:16 +0800 Subject: [PATCH] Replace 'incubator-eventmesh' in the project with 'eventmesh'. --- .../ISSUE_TEMPLATE/enhancement_request.yml | 2 +- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- .github/ISSUE_TEMPLATE/unit_test.yml | 4 ++-- .github/workflows/greetings.yml | 10 ++++----- DISCLAIMER | 2 +- NOTICE | 2 +- README.md | 20 ++++++++--------- README.zh-CN.md | 22 +++++++++---------- build.gradle | 12 +++++----- .../protos/EventmeshWorkflowGrpc.java | 2 +- .../body/client/heartbeat_request_body.go | 2 +- .../body/client/subscribe_request_body.go | 4 ++-- .../common/protocol/tcp/codec/codec.go | 10 ++++----- .../common/protocol/tcp/header.go | 2 +- eventmesh-sdk-go/common/utils/ip.go | 2 +- eventmesh-sdk-go/common/utils/json_utils.go | 2 +- .../examples/grpc/consumer/asyncsub/main.go | 4 ++-- .../examples/grpc/consumer/boradcast/main.go | 4 ++-- .../examples/grpc/consumer/broadcast/main.go | 4 ++-- .../examples/grpc/consumer/rr/main.go | 4 ++-- .../examples/grpc/consumer/stream/main.go | 6 ++--- .../examples/grpc/producer/bp/main.go | 6 ++--- .../examples/grpc/producer/publish/main.go | 4 ++-- .../examples/grpc/producer/rr/main.go | 4 ++-- .../examples/http/async_pub_cloudevents.go | 10 ++++----- .../examples/http/sub_cloudevents.go | 10 ++++----- .../examples/tcp/async_pub_cloudevents.go | 12 +++++----- eventmesh-sdk-go/go.mod | 2 +- eventmesh-sdk-go/grpc/api.go | 4 ++-- eventmesh-sdk-go/grpc/client.go | 10 ++++----- eventmesh-sdk-go/grpc/client_test.go | 4 ++-- eventmesh-sdk-go/grpc/consumer.go | 10 ++++----- eventmesh-sdk-go/grpc/dispatcher.go | 4 ++-- eventmesh-sdk-go/grpc/dispatcher_test.go | 2 +- eventmesh-sdk-go/grpc/fake_grpcserver.go | 8 +++---- eventmesh-sdk-go/grpc/heartbeat.go | 6 ++--- eventmesh-sdk-go/grpc/heartbeat_test.go | 4 ++-- .../grpc/loadbalancer/loadbalancer.go | 2 +- .../grpc/loadbalancer/loadbalancer_test.go | 2 +- .../grpc/loadbalancer/rule_iphash.go | 2 +- .../grpc/loadbalancer/rule_iphash_test.go | 2 +- .../grpc/loadbalancer/rule_random.go | 2 +- .../grpc/loadbalancer/rule_random_test.go | 2 +- .../grpc/loadbalancer/rule_roundrobin.go | 2 +- .../grpc/loadbalancer/rule_roundrobin_test.go | 2 +- eventmesh-sdk-go/grpc/msg.go | 6 ++--- eventmesh-sdk-go/grpc/option.go | 6 ++--- eventmesh-sdk-go/grpc/producer.go | 4 ++-- eventmesh-sdk-go/http/abstract_http_client.go | 6 ++--- .../http/consumer/consumer_suite_test.go | 2 +- .../http/consumer/eventmesh_http_consumer.go | 20 ++++++++--------- .../consumer/eventmesh_http_consumer_test.go | 2 +- .../http/producer/cloudevent_producer.go | 20 ++++++++--------- .../http/producer/cloudevent_producer_test.go | 6 ++--- .../producer/eventmesh_message_producer.go | 20 ++++++++--------- .../eventmesh_message_producer_test.go | 6 ++--- .../http/producer/http_producer.go | 4 ++-- .../http/producer/http_producer_api.go | 2 +- .../http/producer/producer_suite_test.go | 4 ++-- .../http/selector/random_selector.go | 2 +- .../http/selector/random_selector_test.go | 2 +- eventmesh-sdk-go/http/selector/selector.go | 2 +- .../http/selector/selector_test.go | 2 +- .../http/selector/weight_random_selector.go | 2 +- .../selector/weight_random_selector_test.go | 2 +- .../selector/weight_round_robin_selector.go | 2 +- .../weight_round_robin_selector_test.go | 2 +- eventmesh-sdk-go/http/utils/http_utils.go | 2 +- eventmesh-sdk-go/tcp/cloudevent_tcp_client.go | 4 ++-- .../tcp/cloudevent_tcp_pub_client.go | 6 ++--- .../tcp/cloudevent_tcp_sub_client.go | 4 ++-- .../tcp/common/request_context.go | 2 +- .../tcp/conf/eventmesh_tcp_client_config.go | 2 +- eventmesh-sdk-go/tcp/eventmesh_tcp_client.go | 2 +- .../tcp/eventmesh_tcp_client_factory.go | 4 ++-- .../tcp/eventmesh_tcp_pub_client.go | 2 +- .../tcp/eventmesh_tcp_sub_client.go | 2 +- eventmesh-sdk-go/tcp/tcp_client.go | 12 +++++----- eventmesh-sdk-go/tcp/utils/message_utils.go | 10 ++++----- maturity.md | 14 ++++++------ settings.gradle | 2 +- tools/dependency-check/check-dependencies.sh | 2 +- tools/third-party-licenses/LICENSE | 4 ++-- tools/third-party-licenses/NOTICE | 2 +- 84 files changed, 219 insertions(+), 219 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/enhancement_request.yml b/.github/ISSUE_TEMPLATE/enhancement_request.yml index b4bee79aba..0abb545083 100644 --- a/.github/ISSUE_TEMPLATE/enhancement_request.yml +++ b/.github/ISSUE_TEMPLATE/enhancement_request.yml @@ -42,7 +42,7 @@ body: label: Enhancement Request description: Describe the suggestion. placeholder: > - First of all: Have you checked the docs https://github.com/apache/incubator-eventmesh/tree/develop/docs, + First of all: Have you checked the docs https://github.com/apache/eventmesh/tree/develop/docs, or GitHub issues whether someone else has already reported your issue? validations: required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index b04ec7aff9..9969b3d10d 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -42,7 +42,7 @@ body: label: Feature Request description: Describe the feature. placeholder: > - First of all: Have you checked the docs https://github.com/apache/incubator-eventmesh/tree/develop/docs, + First of all: Have you checked the docs https://github.com/apache/eventmesh/tree/develop/docs, or GitHub issues whether someone else has already reported your issue? Maybe the feature already exists? validations: diff --git a/.github/ISSUE_TEMPLATE/unit_test.yml b/.github/ISSUE_TEMPLATE/unit_test.yml index 4dcfdafc64..723e1356d7 100644 --- a/.github/ISSUE_TEMPLATE/unit_test.yml +++ b/.github/ISSUE_TEMPLATE/unit_test.yml @@ -41,7 +41,7 @@ body: attributes: label: Read the unit testing guidelines description: > - Read the [unit testing guidelines](https://github.com/apache/incubator-eventmesh/blob/master/docs/en/contribute/02-write-unit-test.md) before writing unit test code. + Read the [unit testing guidelines](https://github.com/apache/eventmesh/blob/master/docs/en/contribute/02-write-unit-test.md) before writing unit test code. options: - label: > I have read. @@ -52,7 +52,7 @@ body: label: Unit test request description: Describe the unit test. placeholder: > - First of all: Have you checked the docs https://github.com/apache/incubator-eventmesh/tree/develop/docs, + First of all: Have you checked the docs https://github.com/apache/eventmesh/tree/develop/docs, or GitHub issues whether someone else has already reported your issue? Maybe the unit tests you want to do have already been done? validations: diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 82eca073aa..d5ec42a1f9 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -30,20 +30,20 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} issue-message: | - Welcome to the Apache EventMesh (incubating) community!! + Welcome to the Apache EventMesh community!! We are glad that you are contributing by opening this issue. :D Please make sure to include all the relevant context. We will be here shortly. If you are interested in contributing to our project, please let us know! - You can check out our contributing guide on [contributing to EventMesh](https://github.com/apache/incubator-eventmesh/blob/develop/CONTRIBUTING.md). + You can check out our contributing guide on [contributing to EventMesh](https://github.com/apache/eventmesh/blob/develop/CONTRIBUTING.md). Want to get closer to the community? |WeChat Assistant|WeChat Public Account|Slack| |-|-|-| - |||[Join Slack Chat](https://join.slack.com/t/apacheeventmesh/shared_invite/zt-1ooav8slu-ijUI98MiEI501jhK1cabKQ)| + |||[Join Slack Chat](https://join.slack.com/t/apacheeventmesh/shared_invite/zt-1ooav8slu-ijUI98MiEI501jhK1cabKQ)| Mailing Lists: | Name | Description |Subscribe |Unsubscribe|Archive @@ -53,7 +53,7 @@ jobs: |Commits |All commits to repositories| [Subscribe](mailto:commits-subscribe@eventmesh.incubator.apache.org) |[Unsubscribe](mailto:commits-unsubscribe@eventmesh.incubator.apache.org) |[Mail Archives](https://lists.apache.org/list.html?commits@eventmesh.apache.org)| pr-message: | - Welcome to the Apache EventMesh (incubating) community!! + Welcome to the Apache EventMesh community!! This is your first PR in our project. We're very excited to have you onboard contributing. Your contributions are greatly appreciated! Please make sure that the changes are covered by tests. @@ -64,7 +64,7 @@ jobs: |WeChat Assistant|WeChat Public Account|Slack| |-|-|-| - |||[Join Slack Chat](https://join.slack.com/t/apacheeventmesh/shared_invite/zt-1ooav8slu-ijUI98MiEI501jhK1cabKQ)| + |||[Join Slack Chat](https://join.slack.com/t/apacheeventmesh/shared_invite/zt-1ooav8slu-ijUI98MiEI501jhK1cabKQ)| Mailing Lists: | Name | Description |Subscribe |Unsubscribe|Archive diff --git a/DISCLAIMER b/DISCLAIMER index e72dd1b9d0..7721588e3e 100644 --- a/DISCLAIMER +++ b/DISCLAIMER @@ -7,7 +7,7 @@ communications, and decision-making process have stabilized in a manner consiste While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF. -Some of the incubating project’s releases may not be fully compliant with ASF policy. +Some of the project’s releases may not be fully compliant with ASF policy. For example, releases may have incomplete or un-reviewed licensing conditions. What follows is a list of issues the project is currently aware of (this list is likely to be incomplete): diff --git a/NOTICE b/NOTICE index 73cb68fe13..6bea22a11c 100644 --- a/NOTICE +++ b/NOTICE @@ -1,4 +1,4 @@ -Apache EventMesh (incubating) +Apache EventMesh Copyright 2021-2023 The Apache Software Foundation This product includes software developed at diff --git a/README.md b/README.md index 5bf2bdc45a..e61a49bf2d 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,13 @@
-[![CI status](https://img.shields.io/github/actions/workflow/status/apache/incubator-eventmesh/ci.yml?logo=github&style=for-the-badge)](https://github.com/apache/incubator-eventmesh/actions/workflows/ci.yml) -[![CodeCov](https://img.shields.io/codecov/c/gh/apache/incubator-eventmesh/master?logo=codecov&style=for-the-badge)](https://codecov.io/gh/apache/incubator-eventmesh) -[![Code Quality: Java](https://img.shields.io/lgtm/grade/java/g/apache/incubator-eventmesh.svg?logo=lgtm&logoWidth=18&style=for-the-badge)](https://lgtm.com/projects/g/apache/incubator-eventmesh/context:java) -[![Total Alerts](https://img.shields.io/lgtm/alerts/g/apache/incubator-eventmesh.svg?logo=lgtm&logoWidth=18&style=for-the-badge)](https://lgtm.com/projects/g/apache/incubator-eventmesh/alerts/) +[![CI status](https://img.shields.io/github/actions/workflow/status/apache/eventmesh/ci.yml?logo=github&style=for-the-badge)](https://github.com/apache/eventmesh/actions/workflows/ci.yml) +[![CodeCov](https://img.shields.io/codecov/c/gh/apache/eventmesh/master?logo=codecov&style=for-the-badge)](https://codecov.io/gh/apache/eventmesh) +[![Code Quality: Java](https://img.shields.io/lgtm/grade/java/g/apache/eventmesh.svg?logo=lgtm&logoWidth=18&style=for-the-badge)](https://lgtm.com/projects/g/apache/eventmesh/context:java) +[![Total Alerts](https://img.shields.io/lgtm/alerts/g/apache/eventmesh.svg?logo=lgtm&logoWidth=18&style=for-the-badge)](https://lgtm.com/projects/g/apache/eventmesh/alerts/) -[![License](https://img.shields.io/github/license/apache/incubator-eventmesh?style=for-the-badge)](https://www.apache.org/licenses/LICENSE-2.0.html) -[![GitHub Release](https://img.shields.io/github/v/release/apache/eventmesh?style=for-the-badge)](https://github.com/apache/incubator-eventmesh/releases) +[![License](https://img.shields.io/github/license/apache/eventmesh?style=for-the-badge)](https://www.apache.org/licenses/LICENSE-2.0.html) +[![GitHub Release](https://img.shields.io/github/v/release/apache/eventmesh?style=for-the-badge)](https://github.com/apache/eventmesh/releases) [![Slack Status](https://img.shields.io/badge/slack-join_chat-blue.svg?logo=slack&style=for-the-badge)](https://join.slack.com/t/apacheeventmesh/shared_invite/zt-1ooav8slu-ijUI98MiEI501jhK1cabKQ) [📦 Documentation](https://eventmesh.apache.org/docs/introduction) | @@ -79,12 +79,12 @@ Besides, we also provide the docker-version guidelines for you if you prefer Doc Each contributor has played an important role in promoting the robust development of Apache EventMesh. We sincerely appreciate all contributors who have contributed code and documents. - [Contributing Guideline](https://eventmesh.apache.org/community/contribute/contribute) -- [Good First Issues](https://github.com/apache/incubator-eventmesh/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) +- [Good First Issues](https://github.com/apache/eventmesh/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) -Here is the [List of Contributors](https://github.com/apache/incubator-eventmesh/graphs/contributors), thank you all! :) +Here is the [List of Contributors](https://github.com/apache/eventmesh/graphs/contributors), thank you all! :) - - + + diff --git a/README.zh-CN.md b/README.zh-CN.md index 4814b3438a..4c752a2c4e 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -4,17 +4,17 @@
-[![CI status](https://img.shields.io/github/workflow/status/apache/incubator-eventmesh/Continuous%20Integration?logo=github&style=for-the-badge)](https://github.com/apache/incubator-eventmesh/actions/workflows/ci.yml) -[![CodeCov](https://img.shields.io/codecov/c/gh/apache/incubator-eventmesh/master?logo=codecov&style=for-the-badge)](https://codecov.io/gh/apache/incubator-eventmesh) -[![Code Quality: Java](https://img.shields.io/lgtm/grade/java/g/apache/incubator-eventmesh.svg?logo=lgtm&logoWidth=18&style=for-the-badge)](https://lgtm.com/projects/g/apache/incubator-eventmesh/context:java) -[![Total Alerts](https://img.shields.io/lgtm/alerts/g/apache/incubator-eventmesh.svg?logo=lgtm&logoWidth=18&style=for-the-badge)](https://lgtm.com/projects/g/apache/incubator-eventmesh/alerts/) +[![CI status](https://img.shields.io/github/workflow/status/apache/eventmesh/Continuous%20Integration?logo=github&style=for-the-badge)](https://github.com/apache/eventmesh/actions/workflows/ci.yml) +[![CodeCov](https://img.shields.io/codecov/c/gh/apache/eventmesh/master?logo=codecov&style=for-the-badge)](https://codecov.io/gh/apache/eventmesh) +[![Code Quality: Java](https://img.shields.io/lgtm/grade/java/g/apache/eventmesh.svg?logo=lgtm&logoWidth=18&style=for-the-badge)](https://lgtm.com/projects/g/apache/eventmesh/context:java) +[![Total Alerts](https://img.shields.io/lgtm/alerts/g/apache/eventmesh.svg?logo=lgtm&logoWidth=18&style=for-the-badge)](https://lgtm.com/projects/g/apache/eventmesh/alerts/) -[![License](https://img.shields.io/github/license/apache/incubator-eventmesh?style=for-the-badge)](https://www.apache.org/licenses/LICENSE-2.0.html) -[![GitHub Release](https://img.shields.io/github/v/release/apache/eventmesh?style=for-the-badge)](https://github.com/apache/incubator-eventmesh/releases) +[![License](https://img.shields.io/github/license/apache/eventmesh?style=for-the-badge)](https://www.apache.org/licenses/LICENSE-2.0.html) +[![GitHub Release](https://img.shields.io/github/v/release/apache/eventmesh?style=for-the-badge)](https://github.com/apache/eventmesh/releases) [![Slack Status](https://img.shields.io/badge/slack-join_chat-blue.svg?logo=slack&style=for-the-badge)](https://join.slack.com/t/apacheeventmesh/shared_invite/zt-16y1n77va-q~JepYy3RqpkygDYmQaQbw) [📦 文档 (英文)](https://eventmesh.apache.org/docs/introduction) | -[📔 例子](https://github.com/apache/incubator-eventmesh/tree/master/eventmesh-examples) | +[📔 例子](https://github.com/apache/eventmesh/tree/master/eventmesh-examples) | [⚙️ 路线图](https://eventmesh.apache.org/docs/roadmap) | [🌐 英文版](README.md) @@ -80,13 +80,13 @@ 每一名贡献者都在这个项目的发展上都是至关重要的。我们真诚地感谢所有对代码和文档的贡献者!想要尝试贡献的可以看看以下三个链接。 - [贡献准则](https://eventmesh.apache.org/zh/community/contribute/contribute) -- [值得新人尝试的 Issue](https://github.com/apache/incubator-eventmesh/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) +- [值得新人尝试的 Issue](https://github.com/apache/eventmesh/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) -这是项目的[贡献者名单](https://github.com/apache/incubator-eventmesh/graphs/contributors) +这是项目的[贡献者名单](https://github.com/apache/eventmesh/graphs/contributors) ,感谢各位的大力支持 :) - - + + ## CNCF Landscape diff --git a/build.gradle b/build.gradle index c31ce1fb9f..726c28df31 100644 --- a/build.gradle +++ b/build.gradle @@ -387,7 +387,7 @@ subprojects { pom { name = 'EventMesh' description = 'Apache EventMesh' - url = 'https://github.com/apache/incubator-eventmesh' + url = 'https://github.com/apache/eventmesh' licenses { license { name = 'The Apache License, Version 2.0' @@ -396,15 +396,15 @@ subprojects { } developers { developer { - id = 'Apache EventMesh(incubating)' - name = 'Apache EventMesh(incubating) of ASF' + id = 'Apache EventMesh' + name = 'Apache EventMesh of ASF' url = 'https://eventmesh.apache.org/' } } scm { - connection = 'scm:git:git@github.com:apache/incubator-eventmesh.git' - developerConnection = 'scm:git:git@github.com:apache/incubator-eventmesh.git' - url = 'https://github.com/apache/incubator-eventmesh' + connection = 'scm:git:git@github.com:apache/eventmesh.git' + developerConnection = 'scm:git:git@github.com:apache/eventmesh.git' + url = 'https://github.com/apache/eventmesh' } } } diff --git a/eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/workflow/protos/EventmeshWorkflowGrpc.java b/eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/workflow/protos/EventmeshWorkflowGrpc.java index 3d25efdc43..4e99aa5a60 100644 --- a/eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/workflow/protos/EventmeshWorkflowGrpc.java +++ b/eventmesh-common/src/main/java/org/apache/eventmesh/common/protocol/workflow/protos/EventmeshWorkflowGrpc.java @@ -61,7 +61,7 @@ public static void registerAllExtensions( "rotocol.ExecuteResponse\"\000B\226\001\n4org.apache" + ".eventmesh.common.protocol.workflow.prot" + "osB\025EventmeshWorkflowGrpcP\001ZEgithub.com/" + - "apache/incubator-eventmesh/eventmesh-wor" + + "apache/eventmesh/eventmesh-wor" + "kflow-go/api/protob\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor diff --git a/eventmesh-sdk-go/common/protocol/http/body/client/heartbeat_request_body.go b/eventmesh-sdk-go/common/protocol/http/body/client/heartbeat_request_body.go index e7ebe973b7..f487685d59 100644 --- a/eventmesh-sdk-go/common/protocol/http/body/client/heartbeat_request_body.go +++ b/eventmesh-sdk-go/common/protocol/http/body/client/heartbeat_request_body.go @@ -16,7 +16,7 @@ package client import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/http/body" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/http/body" ) var HeartbeatRequestBodyKey = struct { diff --git a/eventmesh-sdk-go/common/protocol/http/body/client/subscribe_request_body.go b/eventmesh-sdk-go/common/protocol/http/body/client/subscribe_request_body.go index 78dc39cccc..f71d09b742 100644 --- a/eventmesh-sdk-go/common/protocol/http/body/client/subscribe_request_body.go +++ b/eventmesh-sdk-go/common/protocol/http/body/client/subscribe_request_body.go @@ -16,8 +16,8 @@ package client import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/http/body" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/http/body" ) var SubscribeRequestBodyKey = struct { diff --git a/eventmesh-sdk-go/common/protocol/tcp/codec/codec.go b/eventmesh-sdk-go/common/protocol/tcp/codec/codec.go index a2f588715c..eb56e88665 100644 --- a/eventmesh-sdk-go/common/protocol/tcp/codec/codec.go +++ b/eventmesh-sdk-go/common/protocol/tcp/codec/codec.go @@ -19,11 +19,11 @@ import ( "bytes" "encoding/binary" - gcommon "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/tcp" - gutils "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/utils" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/tcp/common" + gcommon "github.com/apache/eventmesh/eventmesh-sdk-go/common" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/tcp" + gutils "github.com/apache/eventmesh/eventmesh-sdk-go/common/utils" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/tcp/common" ) const ( diff --git a/eventmesh-sdk-go/common/protocol/tcp/header.go b/eventmesh-sdk-go/common/protocol/tcp/header.go index ed8dcf81ee..fccc0af829 100644 --- a/eventmesh-sdk-go/common/protocol/tcp/header.go +++ b/eventmesh-sdk-go/common/protocol/tcp/header.go @@ -16,7 +16,7 @@ package tcp import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/utils" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/utils" ) type Header struct { diff --git a/eventmesh-sdk-go/common/utils/ip.go b/eventmesh-sdk-go/common/utils/ip.go index 588cff3d32..e0802e3ec4 100644 --- a/eventmesh-sdk-go/common/utils/ip.go +++ b/eventmesh-sdk-go/common/utils/ip.go @@ -16,7 +16,7 @@ package utils import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" "net" "sync" diff --git a/eventmesh-sdk-go/common/utils/json_utils.go b/eventmesh-sdk-go/common/utils/json_utils.go index f871609d87..2198f500f2 100644 --- a/eventmesh-sdk-go/common/utils/json_utils.go +++ b/eventmesh-sdk-go/common/utils/json_utils.go @@ -18,7 +18,7 @@ package utils import ( "encoding/json" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" ) func MarshalJsonBytes(obj interface{}) []byte { diff --git a/eventmesh-sdk-go/examples/grpc/consumer/asyncsub/main.go b/eventmesh-sdk-go/examples/grpc/consumer/asyncsub/main.go index cb7575e578..5d32840cba 100644 --- a/eventmesh-sdk-go/examples/grpc/consumer/asyncsub/main.go +++ b/eventmesh-sdk-go/examples/grpc/consumer/asyncsub/main.go @@ -17,8 +17,8 @@ package main import ( "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" "io/ioutil" "net/http" "strings" diff --git a/eventmesh-sdk-go/examples/grpc/consumer/boradcast/main.go b/eventmesh-sdk-go/examples/grpc/consumer/boradcast/main.go index 6d5c518820..5545a115c1 100644 --- a/eventmesh-sdk-go/examples/grpc/consumer/boradcast/main.go +++ b/eventmesh-sdk-go/examples/grpc/consumer/boradcast/main.go @@ -17,8 +17,8 @@ package main import ( "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" "time" ) diff --git a/eventmesh-sdk-go/examples/grpc/consumer/broadcast/main.go b/eventmesh-sdk-go/examples/grpc/consumer/broadcast/main.go index 47973c5e70..0016d6c1e1 100644 --- a/eventmesh-sdk-go/examples/grpc/consumer/broadcast/main.go +++ b/eventmesh-sdk-go/examples/grpc/consumer/broadcast/main.go @@ -17,8 +17,8 @@ package main import ( "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" "time" ) diff --git a/eventmesh-sdk-go/examples/grpc/consumer/rr/main.go b/eventmesh-sdk-go/examples/grpc/consumer/rr/main.go index d95b44ef81..32166dd007 100644 --- a/eventmesh-sdk-go/examples/grpc/consumer/rr/main.go +++ b/eventmesh-sdk-go/examples/grpc/consumer/rr/main.go @@ -17,8 +17,8 @@ package main import ( "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" "time" ) diff --git a/eventmesh-sdk-go/examples/grpc/consumer/stream/main.go b/eventmesh-sdk-go/examples/grpc/consumer/stream/main.go index 32303feb7d..8ef37e62e6 100644 --- a/eventmesh-sdk-go/examples/grpc/consumer/stream/main.go +++ b/eventmesh-sdk-go/examples/grpc/consumer/stream/main.go @@ -17,9 +17,9 @@ package main import ( "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/proto" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/proto" "time" ) diff --git a/eventmesh-sdk-go/examples/grpc/producer/bp/main.go b/eventmesh-sdk-go/examples/grpc/producer/bp/main.go index fe3cb55607..94d2999bda 100644 --- a/eventmesh-sdk-go/examples/grpc/producer/bp/main.go +++ b/eventmesh-sdk-go/examples/grpc/producer/bp/main.go @@ -18,9 +18,9 @@ package main import ( "context" "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/proto" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/proto" ) func main() { diff --git a/eventmesh-sdk-go/examples/grpc/producer/publish/main.go b/eventmesh-sdk-go/examples/grpc/producer/publish/main.go index c86fcedc8e..8aff799aba 100644 --- a/eventmesh-sdk-go/examples/grpc/producer/publish/main.go +++ b/eventmesh-sdk-go/examples/grpc/producer/publish/main.go @@ -18,8 +18,8 @@ package main import ( "context" "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" "github.com/google/uuid" "time" ) diff --git a/eventmesh-sdk-go/examples/grpc/producer/rr/main.go b/eventmesh-sdk-go/examples/grpc/producer/rr/main.go index 70e486bf09..c8c6f8b9b0 100644 --- a/eventmesh-sdk-go/examples/grpc/producer/rr/main.go +++ b/eventmesh-sdk-go/examples/grpc/producer/rr/main.go @@ -18,8 +18,8 @@ package main import ( "context" "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" "time" ) diff --git a/eventmesh-sdk-go/examples/http/async_pub_cloudevents.go b/eventmesh-sdk-go/examples/http/async_pub_cloudevents.go index 87b123d4a1..5c5c43dafe 100644 --- a/eventmesh-sdk-go/examples/http/async_pub_cloudevents.go +++ b/eventmesh-sdk-go/examples/http/async_pub_cloudevents.go @@ -16,11 +16,11 @@ package http import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/utils" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/producer" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/common" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/utils" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/producer" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" cloudevents "github.com/cloudevents/sdk-go/v2" "github.com/google/uuid" diff --git a/eventmesh-sdk-go/examples/http/sub_cloudevents.go b/eventmesh-sdk-go/examples/http/sub_cloudevents.go index 6302ed01b9..305ea2e962 100644 --- a/eventmesh-sdk-go/examples/http/sub_cloudevents.go +++ b/eventmesh-sdk-go/examples/http/sub_cloudevents.go @@ -16,11 +16,11 @@ package http import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/utils" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/consumer" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/utils" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/consumer" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" cloudevents "github.com/cloudevents/sdk-go/v2" "net/http" diff --git a/eventmesh-sdk-go/examples/tcp/async_pub_cloudevents.go b/eventmesh-sdk-go/examples/tcp/async_pub_cloudevents.go index 0af60d5f53..052ed6c1d9 100644 --- a/eventmesh-sdk-go/examples/tcp/async_pub_cloudevents.go +++ b/eventmesh-sdk-go/examples/tcp/async_pub_cloudevents.go @@ -21,12 +21,12 @@ import ( "github.com/google/uuid" "strconv" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol" - gtcp "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/tcp" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/utils" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/tcp" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/tcp/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/common" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol" + gtcp "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/tcp" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/utils" + "github.com/apache/eventmesh/eventmesh-sdk-go/tcp" + "github.com/apache/eventmesh/eventmesh-sdk-go/tcp/conf" cloudevents "github.com/cloudevents/sdk-go/v2" ) diff --git a/eventmesh-sdk-go/go.mod b/eventmesh-sdk-go/go.mod index adfe0cd028..b00583649d 100644 --- a/eventmesh-sdk-go/go.mod +++ b/eventmesh-sdk-go/go.mod @@ -13,7 +13,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -module github.com/apache/incubator-eventmesh/eventmesh-sdk-go +module github.com/apache/eventmesh/eventmesh-sdk-go go 1.16 diff --git a/eventmesh-sdk-go/grpc/api.go b/eventmesh-sdk-go/grpc/api.go index b6568e6d6f..4c6fddc7b6 100644 --- a/eventmesh-sdk-go/grpc/api.go +++ b/eventmesh-sdk-go/grpc/api.go @@ -18,8 +18,8 @@ package grpc import ( "context" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/proto" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/proto" "google.golang.org/grpc" ) diff --git a/eventmesh-sdk-go/grpc/client.go b/eventmesh-sdk-go/grpc/client.go index bb8924d4ec..06a41af905 100644 --- a/eventmesh-sdk-go/grpc/client.go +++ b/eventmesh-sdk-go/grpc/client.go @@ -18,11 +18,11 @@ package grpc import ( "context" "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/id" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/seq" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/proto" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/id" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/seq" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/proto" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" "google.golang.org/grpc" "google.golang.org/grpc/credentials/insecure" "math/rand" diff --git a/eventmesh-sdk-go/grpc/client_test.go b/eventmesh-sdk-go/grpc/client_test.go index fa1c0b16c8..825eab7763 100644 --- a/eventmesh-sdk-go/grpc/client_test.go +++ b/eventmesh-sdk-go/grpc/client_test.go @@ -17,8 +17,8 @@ package grpc import ( "context" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/proto" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/proto" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" "github.com/stretchr/testify/assert" diff --git a/eventmesh-sdk-go/grpc/consumer.go b/eventmesh-sdk-go/grpc/consumer.go index 2425f1dfd2..1a810abbce 100644 --- a/eventmesh-sdk-go/grpc/consumer.go +++ b/eventmesh-sdk-go/grpc/consumer.go @@ -18,11 +18,11 @@ package grpc import ( "context" "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/id" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/seq" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/proto" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/id" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/seq" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/proto" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" jsoniter "github.com/json-iterator/go" "google.golang.org/grpc" "io" diff --git a/eventmesh-sdk-go/grpc/dispatcher.go b/eventmesh-sdk-go/grpc/dispatcher.go index cb1017bb10..55b27585e3 100644 --- a/eventmesh-sdk-go/grpc/dispatcher.go +++ b/eventmesh-sdk-go/grpc/dispatcher.go @@ -17,8 +17,8 @@ package grpc import ( "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/proto" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/proto" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" "sync" "time" diff --git a/eventmesh-sdk-go/grpc/dispatcher_test.go b/eventmesh-sdk-go/grpc/dispatcher_test.go index 6362d3edf5..15e6267238 100644 --- a/eventmesh-sdk-go/grpc/dispatcher_test.go +++ b/eventmesh-sdk-go/grpc/dispatcher_test.go @@ -16,7 +16,7 @@ package grpc import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/proto" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/proto" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" "github.com/stretchr/testify/assert" diff --git a/eventmesh-sdk-go/grpc/fake_grpcserver.go b/eventmesh-sdk-go/grpc/fake_grpcserver.go index 0cbf0ce6aa..f28b651551 100644 --- a/eventmesh-sdk-go/grpc/fake_grpcserver.go +++ b/eventmesh-sdk-go/grpc/fake_grpcserver.go @@ -18,7 +18,7 @@ package grpc import ( "context" "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/seq" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/seq" "google.golang.org/grpc" "io" "io/ioutil" @@ -28,9 +28,9 @@ import ( "sync" "time" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/id" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/proto" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/id" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/proto" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" ) // fakeServer used to do the test diff --git a/eventmesh-sdk-go/grpc/heartbeat.go b/eventmesh-sdk-go/grpc/heartbeat.go index 105b1656e6..7bb061eeae 100644 --- a/eventmesh-sdk-go/grpc/heartbeat.go +++ b/eventmesh-sdk-go/grpc/heartbeat.go @@ -18,9 +18,9 @@ package grpc import ( "context" "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/proto" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/proto" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" "google.golang.org/grpc" "sync" "time" diff --git a/eventmesh-sdk-go/grpc/heartbeat_test.go b/eventmesh-sdk-go/grpc/heartbeat_test.go index 8a6de33713..21bae58fba 100644 --- a/eventmesh-sdk-go/grpc/heartbeat_test.go +++ b/eventmesh-sdk-go/grpc/heartbeat_test.go @@ -16,8 +16,8 @@ package grpc import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/proto" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/proto" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" "time" diff --git a/eventmesh-sdk-go/grpc/loadbalancer/loadbalancer.go b/eventmesh-sdk-go/grpc/loadbalancer/loadbalancer.go index 890162a5e1..cdf7efb01d 100644 --- a/eventmesh-sdk-go/grpc/loadbalancer/loadbalancer.go +++ b/eventmesh-sdk-go/grpc/loadbalancer/loadbalancer.go @@ -17,7 +17,7 @@ package loadbalancer import ( "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" "go.uber.org/atomic" "sync" ) diff --git a/eventmesh-sdk-go/grpc/loadbalancer/loadbalancer_test.go b/eventmesh-sdk-go/grpc/loadbalancer/loadbalancer_test.go index b3eb916230..69ba973179 100644 --- a/eventmesh-sdk-go/grpc/loadbalancer/loadbalancer_test.go +++ b/eventmesh-sdk-go/grpc/loadbalancer/loadbalancer_test.go @@ -16,7 +16,7 @@ package loadbalancer import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" "github.com/stretchr/testify/assert" "sync" "testing" diff --git a/eventmesh-sdk-go/grpc/loadbalancer/rule_iphash.go b/eventmesh-sdk-go/grpc/loadbalancer/rule_iphash.go index dfde0e735f..29d7129600 100644 --- a/eventmesh-sdk-go/grpc/loadbalancer/rule_iphash.go +++ b/eventmesh-sdk-go/grpc/loadbalancer/rule_iphash.go @@ -16,7 +16,7 @@ package loadbalancer import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" "github.com/cespare/xxhash" "reflect" "unsafe" diff --git a/eventmesh-sdk-go/grpc/loadbalancer/rule_iphash_test.go b/eventmesh-sdk-go/grpc/loadbalancer/rule_iphash_test.go index 7375c78f3e..e7a5269ff7 100644 --- a/eventmesh-sdk-go/grpc/loadbalancer/rule_iphash_test.go +++ b/eventmesh-sdk-go/grpc/loadbalancer/rule_iphash_test.go @@ -17,7 +17,7 @@ package loadbalancer import ( "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" "github.com/stretchr/testify/assert" "testing" ) diff --git a/eventmesh-sdk-go/grpc/loadbalancer/rule_random.go b/eventmesh-sdk-go/grpc/loadbalancer/rule_random.go index 03b8011986..32f9938181 100644 --- a/eventmesh-sdk-go/grpc/loadbalancer/rule_random.go +++ b/eventmesh-sdk-go/grpc/loadbalancer/rule_random.go @@ -16,7 +16,7 @@ package loadbalancer import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" "math/rand" ) diff --git a/eventmesh-sdk-go/grpc/loadbalancer/rule_random_test.go b/eventmesh-sdk-go/grpc/loadbalancer/rule_random_test.go index 9eaec0b6dd..b0e088ee5a 100644 --- a/eventmesh-sdk-go/grpc/loadbalancer/rule_random_test.go +++ b/eventmesh-sdk-go/grpc/loadbalancer/rule_random_test.go @@ -17,7 +17,7 @@ package loadbalancer import ( "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" "github.com/stretchr/testify/assert" "testing" ) diff --git a/eventmesh-sdk-go/grpc/loadbalancer/rule_roundrobin.go b/eventmesh-sdk-go/grpc/loadbalancer/rule_roundrobin.go index bf12d1847c..da74b02c65 100644 --- a/eventmesh-sdk-go/grpc/loadbalancer/rule_roundrobin.go +++ b/eventmesh-sdk-go/grpc/loadbalancer/rule_roundrobin.go @@ -16,7 +16,7 @@ package loadbalancer import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" "go.uber.org/atomic" ) diff --git a/eventmesh-sdk-go/grpc/loadbalancer/rule_roundrobin_test.go b/eventmesh-sdk-go/grpc/loadbalancer/rule_roundrobin_test.go index 986f163268..7f8fc81967 100644 --- a/eventmesh-sdk-go/grpc/loadbalancer/rule_roundrobin_test.go +++ b/eventmesh-sdk-go/grpc/loadbalancer/rule_roundrobin_test.go @@ -17,7 +17,7 @@ package loadbalancer import ( "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" "github.com/stretchr/testify/assert" "go.uber.org/atomic" "testing" diff --git a/eventmesh-sdk-go/grpc/msg.go b/eventmesh-sdk-go/grpc/msg.go index 08bc8492ab..c385b5c0df 100644 --- a/eventmesh-sdk-go/grpc/msg.go +++ b/eventmesh-sdk-go/grpc/msg.go @@ -17,9 +17,9 @@ package grpc import ( "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/utils" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/proto" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/utils" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/proto" "time" ) diff --git a/eventmesh-sdk-go/grpc/option.go b/eventmesh-sdk-go/grpc/option.go index c5942f1b3a..929d1e8b6f 100644 --- a/eventmesh-sdk-go/grpc/option.go +++ b/eventmesh-sdk-go/grpc/option.go @@ -16,9 +16,9 @@ package grpc import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/id" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/seq" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/id" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/seq" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" ) // GRPCOption option to set up the option for grpc client diff --git a/eventmesh-sdk-go/grpc/producer.go b/eventmesh-sdk-go/grpc/producer.go index 9fd7b0bac5..671be54721 100644 --- a/eventmesh-sdk-go/grpc/producer.go +++ b/eventmesh-sdk-go/grpc/producer.go @@ -18,9 +18,9 @@ package grpc import ( "context" "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/grpc/proto" + "github.com/apache/eventmesh/eventmesh-sdk-go/grpc/proto" "google.golang.org/grpc" ) diff --git a/eventmesh-sdk-go/http/abstract_http_client.go b/eventmesh-sdk-go/http/abstract_http_client.go index df1d9c43cd..ff9ec3e62d 100644 --- a/eventmesh-sdk-go/http/abstract_http_client.go +++ b/eventmesh-sdk-go/http/abstract_http_client.go @@ -16,9 +16,9 @@ package http import ( - gcommon "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/selector" + gcommon "github.com/apache/eventmesh/eventmesh-sdk-go/common" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/selector" nethttp "net/http" "time" ) diff --git a/eventmesh-sdk-go/http/consumer/consumer_suite_test.go b/eventmesh-sdk-go/http/consumer/consumer_suite_test.go index 1d2b8f7863..e7aae5b818 100644 --- a/eventmesh-sdk-go/http/consumer/consumer_suite_test.go +++ b/eventmesh-sdk-go/http/consumer/consumer_suite_test.go @@ -19,7 +19,7 @@ package consumer import ( "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" "net/http" "net/http/httptest" "strings" diff --git a/eventmesh-sdk-go/http/consumer/eventmesh_http_consumer.go b/eventmesh-sdk-go/http/consumer/eventmesh_http_consumer.go index 678b37b69f..760693602f 100644 --- a/eventmesh-sdk-go/http/consumer/eventmesh_http_consumer.go +++ b/eventmesh-sdk-go/http/consumer/eventmesh_http_consumer.go @@ -16,16 +16,16 @@ package consumer import ( - gcommon "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/http/body/client" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/http/common" - gutils "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/utils" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/model" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/utils" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" + gcommon "github.com/apache/eventmesh/eventmesh-sdk-go/common" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/http/body/client" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/http/common" + gutils "github.com/apache/eventmesh/eventmesh-sdk-go/common/utils" + "github.com/apache/eventmesh/eventmesh-sdk-go/http" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/model" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/utils" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" nethttp "net/http" "strconv" "sync" diff --git a/eventmesh-sdk-go/http/consumer/eventmesh_http_consumer_test.go b/eventmesh-sdk-go/http/consumer/eventmesh_http_consumer_test.go index 3acdd975cb..21aaebfe7d 100644 --- a/eventmesh-sdk-go/http/consumer/eventmesh_http_consumer_test.go +++ b/eventmesh-sdk-go/http/consumer/eventmesh_http_consumer_test.go @@ -18,7 +18,7 @@ package consumer import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) diff --git a/eventmesh-sdk-go/http/producer/cloudevent_producer.go b/eventmesh-sdk-go/http/producer/cloudevent_producer.go index caaa9c0936..783dcf6ede 100644 --- a/eventmesh-sdk-go/http/producer/cloudevent_producer.go +++ b/eventmesh-sdk-go/http/producer/cloudevent_producer.go @@ -18,16 +18,16 @@ package producer import ( "errors" "fmt" - gcommon "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/http/common" - protocol_message "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/http/message" - gutils "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/utils" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/constants" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/model" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/utils" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" + gcommon "github.com/apache/eventmesh/eventmesh-sdk-go/common" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/http/common" + protocol_message "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/http/message" + gutils "github.com/apache/eventmesh/eventmesh-sdk-go/common/utils" + "github.com/apache/eventmesh/eventmesh-sdk-go/http" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/constants" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/model" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/utils" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" "time" cloudevents "github.com/cloudevents/sdk-go/v2" diff --git a/eventmesh-sdk-go/http/producer/cloudevent_producer_test.go b/eventmesh-sdk-go/http/producer/cloudevent_producer_test.go index 79babc5954..26d6bd4e5f 100644 --- a/eventmesh-sdk-go/http/producer/cloudevent_producer_test.go +++ b/eventmesh-sdk-go/http/producer/cloudevent_producer_test.go @@ -19,9 +19,9 @@ package producer import ( "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/utils" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/common" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/utils" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" cloudevents "github.com/cloudevents/sdk-go/v2" "github.com/google/uuid" . "github.com/onsi/ginkgo" diff --git a/eventmesh-sdk-go/http/producer/eventmesh_message_producer.go b/eventmesh-sdk-go/http/producer/eventmesh_message_producer.go index 202d501bf1..e9443627cc 100644 --- a/eventmesh-sdk-go/http/producer/eventmesh_message_producer.go +++ b/eventmesh-sdk-go/http/producer/eventmesh_message_producer.go @@ -18,16 +18,16 @@ package producer import ( "errors" "fmt" - gcommon "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/http/common" - protocol_message "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/http/message" - gutils "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/utils" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/constants" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/model" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/utils" + gcommon "github.com/apache/eventmesh/eventmesh-sdk-go/common" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/http/common" + protocol_message "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/http/message" + gutils "github.com/apache/eventmesh/eventmesh-sdk-go/common/utils" + "github.com/apache/eventmesh/eventmesh-sdk-go/http" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/constants" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/model" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/utils" nethttp "net/http" "strconv" "time" diff --git a/eventmesh-sdk-go/http/producer/eventmesh_message_producer_test.go b/eventmesh-sdk-go/http/producer/eventmesh_message_producer_test.go index dc6a78fd4c..e6891519cf 100644 --- a/eventmesh-sdk-go/http/producer/eventmesh_message_producer_test.go +++ b/eventmesh-sdk-go/http/producer/eventmesh_message_producer_test.go @@ -19,9 +19,9 @@ package producer import ( "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/utils" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/utils" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" "strings" diff --git a/eventmesh-sdk-go/http/producer/http_producer.go b/eventmesh-sdk-go/http/producer/http_producer.go index d45b4efdbb..744c51b3c3 100644 --- a/eventmesh-sdk-go/http/producer/http_producer.go +++ b/eventmesh-sdk-go/http/producer/http_producer.go @@ -17,8 +17,8 @@ package producer import ( "errors" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" cloudevents "github.com/cloudevents/sdk-go/v2" "time" ) diff --git a/eventmesh-sdk-go/http/producer/http_producer_api.go b/eventmesh-sdk-go/http/producer/http_producer_api.go index 7a9bbe7c0d..29863f95c3 100644 --- a/eventmesh-sdk-go/http/producer/http_producer_api.go +++ b/eventmesh-sdk-go/http/producer/http_producer_api.go @@ -16,7 +16,7 @@ package producer import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol" cloudevents "github.com/cloudevents/sdk-go/v2" "time" ) diff --git a/eventmesh-sdk-go/http/producer/producer_suite_test.go b/eventmesh-sdk-go/http/producer/producer_suite_test.go index a319e59e56..ac751afa20 100644 --- a/eventmesh-sdk-go/http/producer/producer_suite_test.go +++ b/eventmesh-sdk-go/http/producer/producer_suite_test.go @@ -18,8 +18,8 @@ package producer import ( - gutils "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/utils" - ghttp "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http" + gutils "github.com/apache/eventmesh/eventmesh-sdk-go/common/utils" + ghttp "github.com/apache/eventmesh/eventmesh-sdk-go/http" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" "net/http" diff --git a/eventmesh-sdk-go/http/selector/random_selector.go b/eventmesh-sdk-go/http/selector/random_selector.go index 72969161a2..4525d66adc 100644 --- a/eventmesh-sdk-go/http/selector/random_selector.go +++ b/eventmesh-sdk-go/http/selector/random_selector.go @@ -16,7 +16,7 @@ package selector import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" "math/rand" "time" ) diff --git a/eventmesh-sdk-go/http/selector/random_selector_test.go b/eventmesh-sdk-go/http/selector/random_selector_test.go index c6ad1f7f7c..5636deff1c 100644 --- a/eventmesh-sdk-go/http/selector/random_selector_test.go +++ b/eventmesh-sdk-go/http/selector/random_selector_test.go @@ -16,7 +16,7 @@ package selector import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) diff --git a/eventmesh-sdk-go/http/selector/selector.go b/eventmesh-sdk-go/http/selector/selector.go index ea64e23b1a..d42ec0d022 100644 --- a/eventmesh-sdk-go/http/selector/selector.go +++ b/eventmesh-sdk-go/http/selector/selector.go @@ -18,7 +18,7 @@ package selector import ( "errors" "fmt" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" "regexp" "strconv" "strings" diff --git a/eventmesh-sdk-go/http/selector/selector_test.go b/eventmesh-sdk-go/http/selector/selector_test.go index a33aeb85d9..fb50d5d350 100644 --- a/eventmesh-sdk-go/http/selector/selector_test.go +++ b/eventmesh-sdk-go/http/selector/selector_test.go @@ -16,7 +16,7 @@ package selector import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" "github.com/stretchr/testify/assert" "testing" ) diff --git a/eventmesh-sdk-go/http/selector/weight_random_selector.go b/eventmesh-sdk-go/http/selector/weight_random_selector.go index a797a021f8..5712caa7ff 100644 --- a/eventmesh-sdk-go/http/selector/weight_random_selector.go +++ b/eventmesh-sdk-go/http/selector/weight_random_selector.go @@ -17,7 +17,7 @@ package selector import ( "errors" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" "math/rand" "time" ) diff --git a/eventmesh-sdk-go/http/selector/weight_random_selector_test.go b/eventmesh-sdk-go/http/selector/weight_random_selector_test.go index 61000e4457..9f114cc2ca 100644 --- a/eventmesh-sdk-go/http/selector/weight_random_selector_test.go +++ b/eventmesh-sdk-go/http/selector/weight_random_selector_test.go @@ -16,7 +16,7 @@ package selector import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" "math" diff --git a/eventmesh-sdk-go/http/selector/weight_round_robin_selector.go b/eventmesh-sdk-go/http/selector/weight_round_robin_selector.go index b9a09a137d..ba702432e7 100644 --- a/eventmesh-sdk-go/http/selector/weight_round_robin_selector.go +++ b/eventmesh-sdk-go/http/selector/weight_round_robin_selector.go @@ -17,7 +17,7 @@ package selector import ( "errors" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" "go.uber.org/atomic" ) diff --git a/eventmesh-sdk-go/http/selector/weight_round_robin_selector_test.go b/eventmesh-sdk-go/http/selector/weight_round_robin_selector_test.go index f804ac641a..0a19ab2e2b 100644 --- a/eventmesh-sdk-go/http/selector/weight_round_robin_selector_test.go +++ b/eventmesh-sdk-go/http/selector/weight_round_robin_selector_test.go @@ -16,7 +16,7 @@ package selector import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/conf" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) diff --git a/eventmesh-sdk-go/http/utils/http_utils.go b/eventmesh-sdk-go/http/utils/http_utils.go index e11913271b..cca9f78d99 100644 --- a/eventmesh-sdk-go/http/utils/http_utils.go +++ b/eventmesh-sdk-go/http/utils/http_utils.go @@ -16,7 +16,7 @@ package utils import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/http/model" + "github.com/apache/eventmesh/eventmesh-sdk-go/http/model" "io/ioutil" nethttp "net/http" "net/url" diff --git a/eventmesh-sdk-go/tcp/cloudevent_tcp_client.go b/eventmesh-sdk-go/tcp/cloudevent_tcp_client.go index b868f04ecb..1efa893d24 100644 --- a/eventmesh-sdk-go/tcp/cloudevent_tcp_client.go +++ b/eventmesh-sdk-go/tcp/cloudevent_tcp_client.go @@ -16,8 +16,8 @@ package tcp import ( - gtcp "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/tcp" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/tcp/conf" + gtcp "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/tcp" + "github.com/apache/eventmesh/eventmesh-sdk-go/tcp/conf" ) type CloudEventTCPClient struct { diff --git a/eventmesh-sdk-go/tcp/cloudevent_tcp_pub_client.go b/eventmesh-sdk-go/tcp/cloudevent_tcp_pub_client.go index b2a793a172..c4cb5843e4 100644 --- a/eventmesh-sdk-go/tcp/cloudevent_tcp_pub_client.go +++ b/eventmesh-sdk-go/tcp/cloudevent_tcp_pub_client.go @@ -16,9 +16,9 @@ package tcp import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/tcp" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/tcp/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/tcp/utils" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/tcp" + "github.com/apache/eventmesh/eventmesh-sdk-go/tcp/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/tcp/utils" ) type CloudEventTCPPubClient struct { diff --git a/eventmesh-sdk-go/tcp/cloudevent_tcp_sub_client.go b/eventmesh-sdk-go/tcp/cloudevent_tcp_sub_client.go index 813cb595db..26b9276ae7 100644 --- a/eventmesh-sdk-go/tcp/cloudevent_tcp_sub_client.go +++ b/eventmesh-sdk-go/tcp/cloudevent_tcp_sub_client.go @@ -16,8 +16,8 @@ package tcp import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/tcp/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol" + "github.com/apache/eventmesh/eventmesh-sdk-go/tcp/conf" ) type CloudEventTCPSubClient struct { diff --git a/eventmesh-sdk-go/tcp/common/request_context.go b/eventmesh-sdk-go/tcp/common/request_context.go index 0b67ab26f6..179f3d50ba 100644 --- a/eventmesh-sdk-go/tcp/common/request_context.go +++ b/eventmesh-sdk-go/tcp/common/request_context.go @@ -16,7 +16,7 @@ package common import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/tcp" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/tcp" "sync" ) diff --git a/eventmesh-sdk-go/tcp/conf/eventmesh_tcp_client_config.go b/eventmesh-sdk-go/tcp/conf/eventmesh_tcp_client_config.go index 9cf5dd5a1f..2ad990b6b8 100644 --- a/eventmesh-sdk-go/tcp/conf/eventmesh_tcp_client_config.go +++ b/eventmesh-sdk-go/tcp/conf/eventmesh_tcp_client_config.go @@ -15,7 +15,7 @@ package conf -import "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/tcp" +import "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/tcp" type EventMeshTCPClientConfig struct { host string diff --git a/eventmesh-sdk-go/tcp/eventmesh_tcp_client.go b/eventmesh-sdk-go/tcp/eventmesh_tcp_client.go index 0a7c589159..2dcd6869ad 100644 --- a/eventmesh-sdk-go/tcp/eventmesh_tcp_client.go +++ b/eventmesh-sdk-go/tcp/eventmesh_tcp_client.go @@ -15,7 +15,7 @@ package tcp -import gtcp "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/tcp" +import gtcp "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/tcp" type EventMeshTCPClient interface { Init() diff --git a/eventmesh-sdk-go/tcp/eventmesh_tcp_client_factory.go b/eventmesh-sdk-go/tcp/eventmesh_tcp_client_factory.go index 7256c87f60..2eee98b30a 100644 --- a/eventmesh-sdk-go/tcp/eventmesh_tcp_client_factory.go +++ b/eventmesh-sdk-go/tcp/eventmesh_tcp_client_factory.go @@ -16,8 +16,8 @@ package tcp import ( - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/tcp/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol" + "github.com/apache/eventmesh/eventmesh-sdk-go/tcp/conf" ) func CreateEventMeshTCPClient(eventMeshTcpClientConfig conf.EventMeshTCPClientConfig, messageType protocol.MessageType) EventMeshTCPClient { diff --git a/eventmesh-sdk-go/tcp/eventmesh_tcp_pub_client.go b/eventmesh-sdk-go/tcp/eventmesh_tcp_pub_client.go index 6dd0bc47a3..7ef3cb92fb 100644 --- a/eventmesh-sdk-go/tcp/eventmesh_tcp_pub_client.go +++ b/eventmesh-sdk-go/tcp/eventmesh_tcp_pub_client.go @@ -15,7 +15,7 @@ package tcp -import gtcp "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/tcp" +import gtcp "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/tcp" type EventMeshTCPPubClient interface { init() diff --git a/eventmesh-sdk-go/tcp/eventmesh_tcp_sub_client.go b/eventmesh-sdk-go/tcp/eventmesh_tcp_sub_client.go index 98be7bba2f..7b8b8ab83c 100644 --- a/eventmesh-sdk-go/tcp/eventmesh_tcp_sub_client.go +++ b/eventmesh-sdk-go/tcp/eventmesh_tcp_sub_client.go @@ -15,7 +15,7 @@ package tcp -import "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol" +import "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol" type EventMeshTCPSubClient interface { init() diff --git a/eventmesh-sdk-go/tcp/tcp_client.go b/eventmesh-sdk-go/tcp/tcp_client.go index afd6342b2d..2ae020733b 100644 --- a/eventmesh-sdk-go/tcp/tcp_client.go +++ b/eventmesh-sdk-go/tcp/tcp_client.go @@ -23,12 +23,12 @@ import ( "net" "strconv" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/tcp" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/tcp/codec" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/tcp/common" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/tcp/conf" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/tcp/utils" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/tcp" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/tcp/codec" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/tcp/common" + "github.com/apache/eventmesh/eventmesh-sdk-go/tcp/conf" + "github.com/apache/eventmesh/eventmesh-sdk-go/tcp/utils" ) type BaseTCPClient struct { diff --git a/eventmesh-sdk-go/tcp/utils/message_utils.go b/eventmesh-sdk-go/tcp/utils/message_utils.go index 9c1da8800f..68e433c06a 100644 --- a/eventmesh-sdk-go/tcp/utils/message_utils.go +++ b/eventmesh-sdk-go/tcp/utils/message_utils.go @@ -18,11 +18,11 @@ package utils import ( cloudevents "github.com/cloudevents/sdk-go/v2" - gcommon "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/protocol/tcp" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/common/utils" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/log" - "github.com/apache/incubator-eventmesh/eventmesh-sdk-go/tcp/common" + gcommon "github.com/apache/eventmesh/eventmesh-sdk-go/common" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/protocol/tcp" + "github.com/apache/eventmesh/eventmesh-sdk-go/common/utils" + "github.com/apache/eventmesh/eventmesh-sdk-go/log" + "github.com/apache/eventmesh/eventmesh-sdk-go/tcp/common" ) const seqLength = 10 diff --git a/maturity.md b/maturity.md index e4612d73ce..509c21f775 100644 --- a/maturity.md +++ b/maturity.md @@ -1,5 +1,5 @@ # English -# Maturity Self Assessment for Apache EventMesh (incubating) +# Maturity Self Assessment for Apache EventMesh The goals of this maturity model are to describe how Apache projects operate in a concise and high-level way, and to provide a basic framework that projects may choose to use to evaluate themselves. @@ -22,7 +22,7 @@ Mentors and community members are encouraged to contribute to this page and comm | -------- | ----- | ---------- | | **CD10** | The project produces Open Source software for distribution to the public, at no charge. | :white_check_mark: The project source code is licensed under the `Apache License 2.0`. | | **CD20** | Anyone can easily discover and access the project's code. | :white_check_mark: The [offical website](https://eventmesh.apache.org/) includes `Github` link which can access GitHub directly. | -| **CD30** | Anyone using standard, widely-available tools, can build the code in a reproducible way. | :white_check_mark: Apache EventMesh provide [how-to-build](https://github.com/apache/incubator-eventmesh/blob/master/docs/en/instruction/02-runtime.md) document to tell user how to compile on bare metal. | +| **CD30** | Anyone using standard, widely-available tools, can build the code in a reproducible way. | :white_check_mark: Apache EventMesh provide [how-to-build](https://github.com/apache/eventmesh/blob/master/docs/en/instruction/02-runtime.md) document to tell user how to compile on bare metal. | | **CD40** | The full history of the project's code is available via a source code control system, in a way that allows anyone to recreate any released version. | :white_check_mark: It depends on git, and anyone can view the full history of the project via commit logs. | | **CD50** | The source code control system establishes the provenance of each line of code in a reliable way, based on strong authentication of the committer. When third parties contribute code, commit messages provide reliable information about the code provenance. | :white_check_mark: The project uses GitHub and managed by Apache Infra, it ensuring provenance of each line of code to a committer. | @@ -30,9 +30,9 @@ Mentors and community members are encouraged to contribute to this page and comm | **ID** | **Description** | **Status** | | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- | -| **LC10** | The Apache License, version 2.0, covers the released code. | :white_check_mark: The [LICENSE](https://github.com/apache/incubator-eventmesh/blob/master/LICENSE) is in GitHub repository. And all source files are with APLv2 header, check by `apache-rat:check`. | -| **LC20** | Libraries that are mandatory dependencies of the project's code do not create more restrictions than the Apache License does. | :white_check_mark: All [dependencies](https://github.com/apache/incubator-eventmesh/blob/master/tools/third-party-licenses/LICENSE) has been checked and non of them create more restrictions than the Apache License does. | -| **LC30** | The libraries mentioned in LC20 are available as Open Source software. | :white_check_mark: See [dependencies](https://github.com/apache/incubator-eventmesh/blob/master/tools/third-party-licenses/LICENSE). | +| **LC10** | The Apache License, version 2.0, covers the released code. | :white_check_mark: The [LICENSE](https://github.com/apache/eventmesh/blob/master/LICENSE) is in GitHub repository. And all source files are with APLv2 header, check by `apache-rat:check`. | +| **LC20** | Libraries that are mandatory dependencies of the project's code do not create more restrictions than the Apache License does. | :white_check_mark: All [dependencies](https://github.com/apache/eventmesh/blob/master/tools/third-party-licenses/LICENSE) has been checked and non of them create more restrictions than the Apache License does. | +| **LC30** | The libraries mentioned in LC20 are available as Open Source software. | :white_check_mark: See [dependencies](https://github.com/apache/eventmesh/blob/master/tools/third-party-licenses/LICENSE). | | **LC40** | Committers are bound by an Individual Contributor Agreement (the "Apache iCLA") that defines which code they may commit and how they need to identify code that is not their own. | :white_check_mark: All committers have iCLAs. | | **LC50** | The project clearly defines and documents the copyright ownership of everything that the project produces. | :white_check_mark: And all source files are with APLv2 header, check by `apache-rat:check`. | @@ -50,7 +50,7 @@ Mentors and community members are encouraged to contribute to this page and comm | **ID** | **Description** | **Status** | | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- | -| **QU10** | The project is open and honest about the quality of its code. Various levels of quality and maturity for various modules are natural and acceptable as long as they are clearly communicated. | :white_check_mark: We encourage user to [report issues](https://github.com/apache/incubator-eventmesh/issues) | +| **QU10** | The project is open and honest about the quality of its code. Various levels of quality and maturity for various modules are natural and acceptable as long as they are clearly communicated. | :white_check_mark: We encourage user to [report issues](https://github.com/apache/eventmesh/issues) | | **QU20** | The project puts a very high priority on producing secure software. | :white_check_mark: All safety issues will be resolved in priority. | | **QU30** | The project provides a well-documented, secure and private channel to report security issues, along with a documented way of responding to them. | :white_check_mark: Website provides a [security page](https://www.apache.org/security/) | | **QU40** | The project puts a high priority on backwards compatibility and aims to document any incompatible changes and provide tools and documentation to help users transition to new features. | :white_check_mark: All releases are backwards compatibility. Apache Eventmesh provides [upgrade guide](https://eventmesh.apache.org/docs/latest/upgrade/upgrade-guide) docs | @@ -66,7 +66,7 @@ Mentors and community members are encouraged to contribute to this page and comm | **CO40** | The community strives to be meritocratic and gives more rights and responsibilities to contributors who, over time, add value to the project. | :white_check_mark: The community has elected 5 new PPMC members and 21 new committers so far. | | **CO50** | The project documents how contributors can earn more rights such as commit access or decision power, and applies these principles consistently. | :white_check_mark: With the document [committer guide](https://eventmesh.apache.org/community/contribute). | | **CO60** | The community operates based on consensus of its members (see CS10) who have decision power. Dictators, benevolent or not, are not welcome in Apache projects. | :white_check_mark: All decisions are made after vote by community members. | -| **CO70** | The project strives to answer user questions in a timely manner. | :white_check_mark: We use dev@eventmesh.apache.org, [github issue](https://github.com/apache/incubator-eventmesh/issues) to do this in a timely manner. | +| **CO70** | The project strives to answer user questions in a timely manner. | :white_check_mark: We use dev@eventmesh.apache.org, [github issue](https://github.com/apache/eventmesh/issues) to do this in a timely manner. | **Consensus** diff --git a/settings.gradle b/settings.gradle index 72657e77f4..39e84e29a0 100644 --- a/settings.gradle +++ b/settings.gradle @@ -15,7 +15,7 @@ * limitations under the License. */ -rootProject.name = 'incubator-eventmesh' +rootProject.name = 'eventmesh' String jdkVersion = "${jdk}" include 'eventmesh-runtime' include 'eventmesh-sdk-java' diff --git a/tools/dependency-check/check-dependencies.sh b/tools/dependency-check/check-dependencies.sh index 4483b4f37c..5353df817e 100644 --- a/tools/dependency-check/check-dependencies.sh +++ b/tools/dependency-check/check-dependencies.sh @@ -35,7 +35,7 @@ self_modules_txt='tools/dependency-check/self-modules.txt' third_party_dependencies_txt='tools/dependency-check/third-party-dependencies.txt' mkdir $decompress_conf || true -tar -zxf build/incubator-eventmesh*.tar.gz -C $decompress_conf +tar -zxf build/eventmesh*.tar.gz -C $decompress_conf ./gradlew printProjects | grep '.jar' > "$self_modules_txt" diff --git a/tools/third-party-licenses/LICENSE b/tools/third-party-licenses/LICENSE index c966714110..bf92fc7a95 100644 --- a/tools/third-party-licenses/LICENSE +++ b/tools/third-party-licenses/LICENSE @@ -201,9 +201,9 @@ limitations under the License. ======================================================================= -Apache EventMesh (incubating) Subcomponents: +Apache EventMesh Subcomponents: -The Apache EventMesh (incubating) project contains subcomponents with separate copyright +The Apache EventMesh project contains subcomponents with separate copyright notices and license terms. Your use of the source code for the these subcomponents is subject to the terms and conditions of the following licenses. diff --git a/tools/third-party-licenses/NOTICE b/tools/third-party-licenses/NOTICE index 55ea04d46c..a079639bf7 100644 --- a/tools/third-party-licenses/NOTICE +++ b/tools/third-party-licenses/NOTICE @@ -1,4 +1,4 @@ -Apache EventMesh (incubating) +Apache EventMesh Copyright 2021-2023 The Apache Software Foundation This product includes software developed at