Skip to content

Commit 60d8a91

Browse files
dgafkagithub-actions[bot]
authored andcommitted
Release 1.292.0
1 parent cc2bc01 commit 60d8a91

File tree

29 files changed

+65
-96
lines changed

29 files changed

+65
-96
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.291.1",
45+
"ecotone/enqueue": "~1.292.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.291.1-dev"
87+
"dev-main": "1.292.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": "2026-01-06 14:29:47"
108+
"release-time": "2026-01-09 19:05:26"
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.291.1",
37+
"ecotone/enqueue": "~1.292.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.291.1",
49+
"ecotone/jms-converter": "~1.292.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.291.1-dev"
62+
"dev-main": "1.292.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": "2026-01-06 14:29:47"
83+
"release-time": "2026-01-09 19:05:26"
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.291.1-dev"
70+
"dev-main": "1.292.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": "2026-01-06 14:29:47"
91+
"release-time": "2026-01-09 19:05:26"
9292
},
9393
"config": {
9494
"sort-packages": true,

packages/Ecotone/src/EventSourcing/Attribute/FromAggregateStream.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,3 @@ public function __construct(
3434
) {
3535
}
3636
}
37-

packages/Ecotone/src/EventSourcing/Attribute/FromStream.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,3 @@ public function __construct(
2323
) {
2424
}
2525
}
26-

packages/Ecotone/src/Projecting/Attribute/ProjectionBackfill.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,3 @@ public function __construct(
3535
}
3636
}
3737
}
38-

packages/Ecotone/src/Projecting/Attribute/ProjectionExecution.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@ public function __construct(
1616
/**
1717
* Configure the batch size for loading events during projection execution.
1818
* * This controls how many events are loaded from the stream in a single batch.
19-
19+
*
2020
*/
2121
public readonly int $eventLoadingBatchSize
22-
)
23-
{
22+
) {
2423
}
2524
}

packages/Ecotone/src/Projecting/BackfillExecutorHandler.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,3 @@ public function executeBackfillBatch(
5353
}
5454
}
5555
}
56-

packages/Ecotone/src/Projecting/Config/ProjectingAttributeModule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
use Ecotone\Projecting\Attribute\Partitioned;
3636
use Ecotone\Projecting\Attribute\Polling;
3737
use Ecotone\Projecting\Attribute\ProjectionBackfill;
38-
use Ecotone\Projecting\Attribute\ProjectionExecution;
3938
use Ecotone\Projecting\Attribute\ProjectionDeployment;
39+
use Ecotone\Projecting\Attribute\ProjectionExecution;
4040
use Ecotone\Projecting\Attribute\ProjectionFlush;
4141
use Ecotone\Projecting\Attribute\ProjectionV2;
4242
use Ecotone\Projecting\Attribute\Streaming;

packages/Ecotone/src/Projecting/Config/ProjectingModule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
use Ecotone\Messaging\Handler\ServiceActivator\MessageProcessorActivatorBuilder;
3030
use Ecotone\Projecting\BackfillExecutorHandler;
3131
use Ecotone\Projecting\InMemory\InMemoryProjectionRegistry;
32-
use Ecotone\Projecting\SinglePartitionProvider;
3332
use Ecotone\Projecting\PartitionProvider;
3433
use Ecotone\Projecting\ProjectingHeaders;
3534
use Ecotone\Projecting\ProjectingManager;
3635
use Ecotone\Projecting\ProjectionRegistry;
3736
use Ecotone\Projecting\ProjectionStateStorage;
37+
use Ecotone\Projecting\SinglePartitionProvider;
3838
use Ecotone\Projecting\StreamFilterRegistry;
3939
use Ecotone\Projecting\StreamSource;
4040
use Ramsey\Uuid\Uuid;

0 commit comments

Comments
 (0)