diff --git a/go.mod b/go.mod index 303799a6..cdb34e82 100644 --- a/go.mod +++ b/go.mod @@ -9,7 +9,7 @@ require ( github.com/dogmatiq/configkit v0.14.0 github.com/dogmatiq/discoverkit v0.1.2 github.com/dogmatiq/dogma v0.14.3 - github.com/dogmatiq/enginekit v0.12.1 + github.com/dogmatiq/enginekit v0.13.0 github.com/dogmatiq/example v0.0.0-20240928215850-83b14743c287 github.com/dogmatiq/ferrite v1.4.0 github.com/dogmatiq/persistencekit v0.10.0 diff --git a/go.sum b/go.sum index d7a05e8e..79fa74d2 100644 --- a/go.sum +++ b/go.sum @@ -14,8 +14,8 @@ github.com/dogmatiq/dogma v0.14.3 h1:qwZqU1yqp80toUJcJBdFxLlh6xvlFd7jb7rycmriRUo github.com/dogmatiq/dogma v0.14.3/go.mod h1:9lyVA+6V2+E/exV0IrBOrkUiyFwIATEhv+b0vnB2umQ= github.com/dogmatiq/dyad v1.0.0 h1:T50WQ9rAzCMcT941wVH5RW5+tAGRssuVlNog+ZMQR54= github.com/dogmatiq/dyad v1.0.0/go.mod h1:PrUQr7OCSEUjAkhi7ad8BjxFPKe0I9yP2f1kGimPcJE= -github.com/dogmatiq/enginekit v0.12.1 h1:EcW7LPWTer+notttjwkCCsjlywaRg8r/MWbfaKgZe1g= -github.com/dogmatiq/enginekit v0.12.1/go.mod h1:aMBlieoE3An8SVW3vxUcxOOAVaz5Pxc9BPY37Jdg9M0= +github.com/dogmatiq/enginekit v0.13.0 h1:xq7ZBvuROgFaoPVVhcE6MHW7TwSX2OfQVerP26RHSt8= +github.com/dogmatiq/enginekit v0.13.0/go.mod h1:aMBlieoE3An8SVW3vxUcxOOAVaz5Pxc9BPY37Jdg9M0= github.com/dogmatiq/example v0.0.0-20240928215850-83b14743c287 h1:MS/wfudIjXb0vFiALKpS1IZmNMu9AoDzdghrjqB4vPI= github.com/dogmatiq/example v0.0.0-20240928215850-83b14743c287/go.mod h1:T/G0HRH6OSo5cIIH31dLBYZiFjsL8RQsaN2vv8XjoTw= github.com/dogmatiq/ferrite v1.4.0 h1:cXmorC8NdSieWhPBfgmnj4cmWIeaCQK2sflGa2H0xXY= diff --git a/internal/integration/supervisor_test.go b/internal/integration/supervisor_test.go index 553a10e9..c93df9e3 100644 --- a/internal/integration/supervisor_test.go +++ b/internal/integration/supervisor_test.go @@ -357,7 +357,6 @@ func TestSupervisor(t *testing.T) { SourceHandler: deps.Supervisor.HandlerIdentity, CreatedAt: timestamppb.New(time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC)), Description: "event(stubs.TypeA:A1, valid)", - PortableName: "EventStub[TypeA]", MediaType: `application/json; type="EventStub[TypeA]"`, Data: []byte(`{"content":"A1"}`), }, @@ -366,7 +365,6 @@ func TestSupervisor(t *testing.T) { SourceHandler: deps.Supervisor.HandlerIdentity, CreatedAt: timestamppb.New(time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC)), Description: "event(stubs.TypeA:A2, valid)", - PortableName: "EventStub[TypeA]", MediaType: `application/json; type="EventStub[TypeA]"`, Data: []byte(`{"content":"A2"}`), }, @@ -375,7 +373,6 @@ func TestSupervisor(t *testing.T) { SourceHandler: deps.Supervisor.HandlerIdentity, CreatedAt: timestamppb.New(time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC)), Description: "event(stubs.TypeA:A3, valid)", - PortableName: "EventStub[TypeA]", MediaType: `application/json; type="EventStub[TypeA]"`, Data: []byte(`{"content":"A3"}`), }, @@ -593,7 +590,6 @@ func TestSupervisor(t *testing.T) { SourceHandler: deps.Supervisor.HandlerIdentity, CreatedAt: timestamppb.New(time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC)), Description: `event(stubs.TypeA:A1, valid)`, - PortableName: `EventStub[TypeA]`, MediaType: `application/json; type="EventStub[TypeA]"`, Data: []byte(`{"content":"A1"}`), }, @@ -620,7 +616,6 @@ func TestSupervisor(t *testing.T) { SourceHandler: deps.Supervisor.HandlerIdentity, CreatedAt: timestamppb.New(time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC)), Description: `event(stubs.TypeA:A2, valid)`, - PortableName: `EventStub[TypeA]`, MediaType: `application/json; type="EventStub[TypeA]"`, Data: []byte(`{"content":"A2"}`), },