Skip to content

Commit 795dd41

Browse files
dgafkagithub-actions[bot]
authored andcommitted
Release 1.285.0
1 parent 21e5a71 commit 795dd41

File tree

19 files changed

+52
-50
lines changed

19 files changed

+52
-50
lines changed

packages/Amqp/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
},
4343
"require": {
4444
"ext-amqp": "*",
45-
"ecotone/enqueue": "~1.284.0",
45+
"ecotone/enqueue": "~1.285.0",
4646
"enqueue/amqp-ext": "^0.10.18",
4747
"enqueue/dsn": "^0.10.4",
4848
"enqueue/enqueue": "^0.10.0"
@@ -84,7 +84,7 @@
8484
},
8585
"extra": {
8686
"branch-alias": {
87-
"dev-main": "1.284.0-dev"
87+
"dev-main": "1.285.0-dev"
8888
},
8989
"ecotone": {
9090
"repository": "amqp"
@@ -105,7 +105,7 @@
105105
"description": "Allows to use Enterprise features of Ecotone. For more information please write to [email protected]"
106106
}
107107
},
108-
"release-time": "2025-12-21 16:46:09"
108+
"release-time": "2025-12-22 17:15:31"
109109
},
110110
"config": {
111111
"allow-plugins": {

packages/Dbal/composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
}
3535
},
3636
"require": {
37-
"ecotone/enqueue": "~1.284.0",
37+
"ecotone/enqueue": "~1.285.0",
3838
"doctrine/dbal": "^3.9|^4.0",
3939
"enqueue/dsn": "^0.10.4"
4040
},
@@ -46,7 +46,7 @@
4646
"doctrine/cache": "^1.0.0|^2.0",
4747
"doctrine/annotations": "^1.13|^2.0",
4848
"wikimedia/composer-merge-plugin": "^2.1",
49-
"ecotone/jms-converter": "~1.284.0",
49+
"ecotone/jms-converter": "~1.285.0",
5050
"symfony/expression-language": "^6.4|^7.0|^8.0"
5151
},
5252
"scripts": {
@@ -59,7 +59,7 @@
5959
},
6060
"extra": {
6161
"branch-alias": {
62-
"dev-main": "1.284.0-dev"
62+
"dev-main": "1.285.0-dev"
6363
},
6464
"ecotone": {
6565
"repository": "dbal"
@@ -80,7 +80,7 @@
8080
"description": "Allows to use Enterprise features of Ecotone. For more information please write to [email protected]"
8181
}
8282
},
83-
"release-time": "2025-12-21 16:46:09"
83+
"release-time": "2025-12-22 17:15:31"
8484
},
8585
"config": {
8686
"allow-plugins": {

packages/Ecotone/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
},
6868
"extra": {
6969
"branch-alias": {
70-
"dev-main": "1.284.0-dev"
70+
"dev-main": "1.285.0-dev"
7171
},
7272
"ecotone": {
7373
"repository": "ecotone"
@@ -88,7 +88,7 @@
8888
"description": "Allows to use Enterprise features of Ecotone. For more information please write to [email protected]"
8989
}
9090
},
91-
"release-time": "2025-12-21 16:46:09"
91+
"release-time": "2025-12-22 17:15:31"
9292
},
9393
"config": {
9494
"sort-packages": true,

packages/Ecotone/src/Messaging/Config/Annotation/ModuleConfiguration/BasicMessagingModule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
use Ecotone\Messaging\Conversion\UuidToString\UuidToStringConverter;
2929
use Ecotone\Messaging\Endpoint\ChannelAdapterConsumerBuilder;
3030
use Ecotone\Messaging\Endpoint\EventDriven\EventDrivenConsumerBuilder;
31-
use Ecotone\Messaging\Endpoint\Interceptor\TerminationListener;
3231
use Ecotone\Messaging\Endpoint\Interceptor\PcntlTerminationListener;
32+
use Ecotone\Messaging\Endpoint\Interceptor\TerminationListener;
3333
use Ecotone\Messaging\Endpoint\PollingConsumer\PollingConsumerBuilder;
3434
use Ecotone\Messaging\Endpoint\PollingMetadata;
3535
use Ecotone\Messaging\Gateway\ConsoleCommandRunner;

packages/Ecotone/src/Messaging/Endpoint/Interceptor/SignalInterceptor.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ class SignalInterceptor implements ConsumerInterceptor
1414
{
1515
use ConsumerInterceptorTrait;
1616

17-
public function __construct(private PcntlTerminationListener $pcntlTerminationListener) {
17+
public function __construct(private PcntlTerminationListener $pcntlTerminationListener)
18+
{
1819
}
1920

2021
public function onStartup(): void

packages/Ecotone/src/Messaging/Endpoint/Interceptor/TerminationListener.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/*
34
* licence Enterprise
45
*/
@@ -9,4 +10,4 @@
910
interface TerminationListener
1011
{
1112
public function shouldTerminate(): bool;
12-
}
13+
}

packages/Ecotone/src/Messaging/Endpoint/PollingConsumer/InterceptedConsumer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
use Ecotone\Messaging\Endpoint\Interceptor\LimitConsumedMessagesInterceptor;
1111
use Ecotone\Messaging\Endpoint\Interceptor\LimitExecutionAmountInterceptor;
1212
use Ecotone\Messaging\Endpoint\Interceptor\LimitMemoryUsageInterceptor;
13-
use Ecotone\Messaging\Endpoint\Interceptor\SignalInterceptor;
1413
use Ecotone\Messaging\Endpoint\Interceptor\PcntlTerminationListener;
14+
use Ecotone\Messaging\Endpoint\Interceptor\SignalInterceptor;
1515
use Ecotone\Messaging\Endpoint\Interceptor\TimeLimitInterceptor;
1616
use Ecotone\Messaging\Endpoint\PollingMetadata;
1717
use Ecotone\Messaging\Gateway\MessagingEntrypoint;

packages/Ecotone/tests/Projecting/ProjectingTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
use Ecotone\Modelling\Attribute\EventHandler;
2222
use Ecotone\Modelling\Event;
2323
use Ecotone\Projecting\Attribute\Partitioned;
24-
use Ecotone\Projecting\Attribute\ProjectionDeployment;
2524
use Ecotone\Projecting\Attribute\ProjectionBatchSize;
25+
use Ecotone\Projecting\Attribute\ProjectionDeployment;
2626
use Ecotone\Projecting\Attribute\ProjectionFlush;
2727
use Ecotone\Projecting\Attribute\ProjectionV2;
2828
use Ecotone\Projecting\InMemory\InMemoryStreamSourceBuilder;
@@ -617,7 +617,7 @@ public function handle(array $event): void
617617
$pcntlTerminationFlag->enable();
618618
try {
619619
$ecotone->triggerProjection('signals_projection');
620-
self::assertCount(2, $projection->processedEvents, "Expect projection to process a single batch of events (2 events)");
620+
self::assertCount(2, $projection->processedEvents, 'Expect projection to process a single batch of events (2 events)');
621621
} finally {
622622
$pcntlTerminationFlag->disable();
623623
}

packages/Enqueue/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
}
3434
},
3535
"require": {
36-
"ecotone/ecotone": "~1.284.0",
36+
"ecotone/ecotone": "~1.285.0",
3737
"queue-interop/queue-interop": "^0.8",
3838
"enqueue/dsn": "^0.10.4"
3939
},
@@ -56,7 +56,7 @@
5656
},
5757
"extra": {
5858
"branch-alias": {
59-
"dev-main": "1.284.0-dev"
59+
"dev-main": "1.285.0-dev"
6060
},
6161
"ecotone": {
6262
"repository": "enqueue"
@@ -77,7 +77,7 @@
7777
"description": "Allows to use Enterprise features of Ecotone. For more information please write to [email protected]"
7878
}
7979
},
80-
"release-time": "2025-12-21 16:46:09"
80+
"release-time": "2025-12-22 17:15:31"
8181
},
8282
"config": {
8383
"allow-plugins": {

packages/JmsConverter/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
}
3939
},
4040
"require": {
41-
"ecotone/ecotone": "~1.284.0",
41+
"ecotone/ecotone": "~1.285.0",
4242
"jms/serializer": "^3.32",
4343
"symfony/cache": "^6.4|^7.0|^8.0"
4444
},
@@ -60,7 +60,7 @@
6060
},
6161
"extra": {
6262
"branch-alias": {
63-
"dev-main": "1.284.0-dev"
63+
"dev-main": "1.285.0-dev"
6464
},
6565
"ecotone": {
6666
"repository": "jms-converter"
@@ -81,7 +81,7 @@
8181
"description": "Allows to use Enterprise features of Ecotone. For more information please write to [email protected]"
8282
}
8383
},
84-
"release-time": "2025-12-21 16:46:09"
84+
"release-time": "2025-12-22 17:15:31"
8585
},
8686
"config": {
8787
"sort-packages": true,

0 commit comments

Comments
 (0)