diff --git a/CHANGELOG.md b/CHANGELOG.md index 88818dec..3bacff17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,11 @@ # Changelog -## v3.4.1 (unreleased) +## v3.4.2 (unreleased) - Nothing yet +## v3.4.1 (2018-11-07) + - Remove all uses of satori.uuid + ## v3.4.0 (2018-10-26) - CLI: Send Auth header - Library: send CallerName in header diff --git a/connectors/routing/connector_test.go b/connectors/routing/connector_test.go index baa14d8f..51627acd 100644 --- a/connectors/routing/connector_test.go +++ b/connectors/routing/connector_test.go @@ -26,7 +26,6 @@ import ( "sort" "testing" - "github.com/satori/go.uuid" "github.com/stretchr/testify/assert" "github.com/uber-go/dosa" "github.com/uber-go/dosa/connectors/devnull" @@ -1025,7 +1024,7 @@ func createTestData(t *testing.T, rc *Connector, keyGenFunc func(int) string, id "f1": dosa.FieldValue(keyGenFunc(x)), "c1": dosa.FieldValue(int64(1)), "c6": dosa.FieldValue(int32(x)), - "c7": dosa.FieldValue(dosa.UUID(uuid.NewV1().String()))}) + "c7": dosa.FieldValue(dosa.NewUUID())}) assert.NoError(t, err) } }