diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ce2093b5..b1d60f08 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -15,7 +15,7 @@ This doc is for contributors to Temporalite (hopefully that's you!) ## Check out the code Temporalite uses go modules, there is no dependency on `$GOPATH` variable. Clone the repo into the preferred location: ```bash -git clone https://github.com/DataDog/temporalite.git +git clone https://github.com/temporalio/temporalite.git ``` ## Build diff --git a/LICENSE-3rdparty.csv b/LICENSE-3rdparty.csv index 1a616a8a..53f089dd 100755 --- a/LICENSE-3rdparty.csv +++ b/LICENSE-3rdparty.csv @@ -3,7 +3,7 @@ cloud.google.com/go/compute/metadata,,Apache-2.0, cloud.google.com/go/iam,,Apache-2.0, cloud.google.com/go/internal,,Apache-2.0, cloud.google.com/go/storage,,Apache-2.0, -github.com/DataDog/temporalite,https://github.com/DataDog/temporalite,MIT,"Datadog, Inc." +github.com/temporalio/temporalite,https://github.com/temporalio/temporalite,MIT,"Datadog, Inc." github.com/apache/thrift/lib/go/thrift,https://github.com/apache/thrift,Apache-2.0, github.com/aws/aws-sdk-go,https://github.com/aws/aws-sdk-go,Apache-2.0, github.com/aws/aws-sdk-go/internal/sync/singleflight,https://github.com/aws/aws-sdk-go,BSD-3-Clause,The Go Authors diff --git a/README.md b/README.md index 5a790c1d..3f9013fc 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Temporalite -[![Go Reference](https://pkg.go.dev/badge/github.com/DataDog/temporalite.svg)](https://pkg.go.dev/github.com/DataDog/temporalite) -[![ci](https://github.com/DataDog/temporalite/actions/workflows/ci.yml/badge.svg)](https://github.com/DataDog/temporalite/actions/workflows/ci.yml) +[![Go Reference](https://pkg.go.dev/badge/github.com/temporalio/temporalite.svg)](https://pkg.go.dev/github.com/temporalio/temporalite) +[![ci](https://github.com/temporalio/temporalite/actions/workflows/ci.yml/badge.svg)](https://github.com/temporalio/temporalite/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/DataDog/temporalite/branch/main/graph/badge.svg)](https://codecov.io/gh/DataDog/temporalite) > ⚠️ This project is experimental and not suitable for production use. ⚠️ @@ -32,7 +32,7 @@ Build from source using [go install](https://golang.org/ref/mod#go-install): > Note: Go 1.18 or greater is currently required. ```bash -go install github.com/DataDog/temporalite/cmd/temporalite@latest +go install github.com/temporalio/temporalite/cmd/temporalite@latest ``` Start Temporal server: @@ -93,7 +93,7 @@ temporalite start --ephemeral The `temporalite` binary can be compiled to omit static assets for installations that will never use the UI: ```bash -go install -tags headless github.com/DataDog/temporalite/cmd/temporalite@latest +go install -tags headless github.com/temporalio/temporalite/cmd/temporalite@latest ``` The UI can also be disabled via a runtime flag: diff --git a/cmd/temporalite/main.go b/cmd/temporalite/main.go index a9414eb2..4fa2a6ab 100644 --- a/cmd/temporalite/main.go +++ b/cmd/temporalite/main.go @@ -22,8 +22,8 @@ import ( // Load sqlite storage driver _ "go.temporal.io/server/common/persistence/sql/sqlplugin/sqlite" - "github.com/DataDog/temporalite" - "github.com/DataDog/temporalite/internal/liteconfig" + "github.com/temporalio/temporalite" + "github.com/temporalio/temporalite/internal/liteconfig" ) // Name of the ui-server module, used in tests to verify that it is included/excluded diff --git a/cmd/temporalite/ui.go b/cmd/temporalite/ui.go index 30226fdc..2dcd4e29 100644 --- a/cmd/temporalite/ui.go +++ b/cmd/temporalite/ui.go @@ -9,7 +9,7 @@ import ( uiconfig "github.com/temporalio/ui-server/v2/server/config" uiserveroptions "github.com/temporalio/ui-server/v2/server/server_options" - "github.com/DataDog/temporalite" + "github.com/temporalio/temporalite" ) func newUIOption(frontendAddr string, uiIP string, uiPort int) temporalite.ServerOption { diff --git a/cmd/temporalite/ui_disabled.go b/cmd/temporalite/ui_disabled.go index 7313a050..d905a30a 100644 --- a/cmd/temporalite/ui_disabled.go +++ b/cmd/temporalite/ui_disabled.go @@ -2,7 +2,7 @@ package main -import "github.com/DataDog/temporalite" +import "github.com/temporalio/temporalite" func newUIOption(frontendAddr string, uiIP string, uiPort int) temporalite.ServerOption { return nil diff --git a/go.mod b/go.mod index eb9407fe..3f438ab8 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/DataDog/temporalite +module github.com/temporalio/temporalite go 1.18 diff --git a/options.go b/options.go index 0526daaf..14b8c588 100644 --- a/options.go +++ b/options.go @@ -9,7 +9,7 @@ import ( "go.temporal.io/server/common/log" "go.temporal.io/server/temporal" - "github.com/DataDog/temporalite/internal/liteconfig" + "github.com/temporalio/temporalite/internal/liteconfig" ) // WithLogger overrides the default logger. diff --git a/server.go b/server.go index 6a6a8900..18ec1ad2 100644 --- a/server.go +++ b/server.go @@ -18,7 +18,7 @@ import ( "go.temporal.io/server/schema/sqlite" "go.temporal.io/server/temporal" - "github.com/DataDog/temporalite/internal/liteconfig" + "github.com/temporalio/temporalite/internal/liteconfig" ) // Server wraps temporal.Server. diff --git a/temporaltest/options.go b/temporaltest/options.go index fdeb603c..b39df622 100644 --- a/temporaltest/options.go +++ b/temporaltest/options.go @@ -10,7 +10,7 @@ import ( "go.temporal.io/sdk/client" "go.temporal.io/sdk/worker" - "github.com/DataDog/temporalite" + "github.com/temporalio/temporalite" ) type TestServerOption interface { diff --git a/temporaltest/server.go b/temporaltest/server.go index 93eabcf9..6d0d8da5 100644 --- a/temporaltest/server.go +++ b/temporaltest/server.go @@ -15,7 +15,7 @@ import ( "go.temporal.io/sdk/worker" "go.temporal.io/server/common/log" - "github.com/DataDog/temporalite" + "github.com/temporalio/temporalite" ) // A TestServer is a Temporal server listening on a system-chosen port on the diff --git a/temporaltest/server_test.go b/temporaltest/server_test.go index f657b8d4..e52e6fb0 100644 --- a/temporaltest/server_test.go +++ b/temporaltest/server_test.go @@ -13,8 +13,8 @@ import ( "go.temporal.io/sdk/client" "go.temporal.io/sdk/worker" - "github.com/DataDog/temporalite/internal/examples/helloworld" - "github.com/DataDog/temporalite/temporaltest" + "github.com/temporalio/temporalite/internal/examples/helloworld" + "github.com/temporalio/temporalite/temporaltest" ) // to be used in example code