Skip to content

Commit 98b12b6

Browse files
dgafkagithub-actions[bot]
authored andcommitted
Release 1.278.0
1 parent 104eb4d commit 98b12b6

File tree

23 files changed

+44
-54
lines changed

23 files changed

+44
-54
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.277.3",
45+
"ecotone/enqueue": "~1.278.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.277.3-dev"
87+
"dev-main": "1.278.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-11-28 17:13:43"
108+
"release-time": "2025-12-05 08:28:36"
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.277.3",
37+
"ecotone/enqueue": "~1.278.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.277.3",
49+
"ecotone/jms-converter": "~1.278.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.277.3-dev"
62+
"dev-main": "1.278.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-11-28 17:13:43"
83+
"release-time": "2025-12-05 08:28:36"
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.277.3-dev"
70+
"dev-main": "1.278.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-11-28 17:13:43"
91+
"release-time": "2025-12-05 08:28:36"
9292
},
9393
"config": {
9494
"sort-packages": true,

packages/Ecotone/src/AnnotationFinder/FileSystem/FileSystemAnnotationFinder.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
use Ecotone\AnnotationFinder\AnnotationResolver;
1313
use Ecotone\AnnotationFinder\Attribute\Environment;
1414
use Ecotone\AnnotationFinder\ConfigurationException;
15-
use Ecotone\Messaging\Attribute\EndpointAnnotation;
1615
use Ecotone\Messaging\Attribute\IdentifiedAnnotation;
1716
use Ecotone\Messaging\Attribute\IsAbstract;
1817
use Ecotone\Messaging\Attribute\MessageConsumer;
@@ -325,7 +324,7 @@ public function findAnnotatedMethods(string $methodAnnotationClassName): array
325324
throw ConfigurationException::create(sprintf('%s attribute on %s::%s should be placed on public method, to be available for execution.', $handlerType, $className, $method));
326325
}
327326

328-
if (!$reflectionMethod->isPublic()) {
327+
if (! $reflectionMethod->isPublic()) {
329328
continue;
330329
}
331330

packages/Ecotone/src/AnnotationFinder/InMemory/InMemoryAnnotationFinder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
use Ecotone\AnnotationFinder\AnnotationResolver\AttributeResolver;
1111
use Ecotone\AnnotationFinder\ConfigurationException;
1212
use Ecotone\AnnotationFinder\TypeResolver;
13-
use Ecotone\Messaging\Attribute\EndpointAnnotation;
1413
use Ecotone\Messaging\Attribute\IdentifiedAnnotation;
1514
use Ecotone\Messaging\Attribute\MessageConsumer;
1615
use Ecotone\Modelling\Attribute\CommandHandler;

packages/Ecotone/tests/Modelling/Fixture/EventRouting/OrderEventService.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,3 @@ public function getHandlersCalled(): array
4040
return $this->handlersCalled;
4141
}
4242
}
43-

packages/Ecotone/tests/Modelling/Fixture/EventRouting/OrderEventServiceWithPrivateHandler.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ private function whenOrderWasPlacedSecond(OrderWasPlaced $event): void
2929
{
3030
}
3131
}
32-

packages/Ecotone/tests/Modelling/Fixture/EventRouting/OrderWasPlaced.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@ public function __construct(public string $orderId)
1313
{
1414
}
1515
}
16-

packages/Ecotone/tests/Modelling/Fixture/EventRouting/PlaceOrder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@ public function __construct(public string $orderId)
1313
{
1414
}
1515
}
16-

packages/Ecotone/tests/Modelling/Fixture/EventRouting/ServiceWithPrivateCommandHandler.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,3 @@ private function handle(PlaceOrder $command): void
1616
{
1717
}
1818
}
19-

0 commit comments

Comments
 (0)