Skip to content

Commit

Permalink
Release 1.90.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dgafka authored and github-actions[bot] committed Jun 28, 2023
1 parent cd892a4 commit 32e8816
Show file tree
Hide file tree
Showing 14 changed files with 28 additions and 26 deletions.
4 changes: 2 additions & 2 deletions packages/Amqp/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
},
"require": {
"ext-amqp": "*",
"ecotone/enqueue": "~1.90.1",
"ecotone/enqueue": "~1.90.2",
"enqueue/amqp-ext": "^0.10.18",
"enqueue/dsn": "^0.10.4",
"enqueue/enqueue": "^0.10.0"
Expand All @@ -63,7 +63,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "1.90.1-dev"
"dev-main": "1.90.2-dev"
},
"ecotone": {
"repository": "amqp"
Expand Down
4 changes: 2 additions & 2 deletions packages/Dbal/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}
},
"require": {
"ecotone/enqueue": "~1.90.1",
"ecotone/enqueue": "~1.90.2",
"enqueue/dbal": "^0.10.17",
"doctrine/dbal": "^3.3.7"
},
Expand All @@ -54,7 +54,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "1.90.1-dev"
"dev-main": "1.90.2-dev"
},
"ecotone": {
"repository": "dbal"
Expand Down
2 changes: 1 addition & 1 deletion packages/Ecotone/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "1.90.1-dev"
"dev-main": "1.90.2-dev"
},
"ecotone": {
"repository": "ecotone"
Expand Down
3 changes: 2 additions & 1 deletion packages/Ecotone/src/Messaging/Handler/TypeResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
use Ecotone\AnnotationFinder\AnnotationResolver;
use Ecotone\AnnotationFinder\InMemory\InMemoryAnnotationFinder;
use Ecotone\Messaging\Attribute\IgnoreDocblockTypeHint;
use Error;
use ReflectionClass;
use ReflectionException;
use ReflectionMethod;
Expand Down Expand Up @@ -70,7 +71,7 @@ public function getMethodParameters(ReflectionClass $analyzedClass, string $meth
foreach ($parameter->getAttributes() as $attribute) {
try {
$parameterAttributes[] = $attribute->newInstance();
} catch (\Error $e) {
} catch (Error $e) {
// ignore errors (e.g. when attribute target property and we are retrieving constructor parameters)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@
class ObjectWithConstructorProperties
{
public function __construct(
#[ExampleAttribute, AggregateIdentifier] public string $id
#[ExampleAttribute,
AggregateIdentifier] public string $id
) {
}
}

#[Attribute(Attribute::TARGET_PROPERTY)]
class ExampleAttribute
{
}
}
4 changes: 2 additions & 2 deletions packages/Enqueue/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}
},
"require": {
"ecotone/ecotone": "~1.90.1",
"ecotone/ecotone": "~1.90.2",
"queue-interop/queue-interop": "^0.8",
"enqueue/dsn": "^0.10.4"
},
Expand All @@ -48,7 +48,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "1.90.1-dev"
"dev-main": "1.90.2-dev"
},
"ecotone": {
"repository": "enqueue"
Expand Down
4 changes: 2 additions & 2 deletions packages/JmsConverter/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
}
},
"require": {
"ecotone/ecotone": "~1.90.1",
"ecotone/ecotone": "~1.90.2",
"jms/serializer": "^3.17",
"symfony/cache": "^5.4|^6.1"
},
Expand All @@ -57,7 +57,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "1.90.1-dev"
"dev-main": "1.90.2-dev"
},
"ecotone": {
"repository": "jms-converter"
Expand Down
4 changes: 2 additions & 2 deletions packages/Laravel/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
}
},
"require": {
"ecotone/ecotone": "~1.90.1",
"ecotone/ecotone": "~1.90.2",
"laravel/framework": "^9.0|^10.0"
},
"require-dev": {
Expand All @@ -52,7 +52,7 @@
]
},
"branch-alias": {
"dev-main": "1.90.1-dev"
"dev-main": "1.90.2-dev"
},
"ecotone": {
"repository": "laravel"
Expand Down
6 changes: 3 additions & 3 deletions packages/LiteApplication/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
}
},
"require": {
"ecotone/ecotone": "~1.90.1",
"ecotone/jms-converter": "~1.90.1",
"ecotone/ecotone": "~1.90.2",
"ecotone/jms-converter": "~1.90.2",
"php-di/php-di": "^7.0.1"
},
"require-dev": {
Expand All @@ -47,7 +47,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "1.90.1-dev"
"dev-main": "1.90.2-dev"
},
"ecotone": {
"repository": "lite-application"
Expand Down
4 changes: 2 additions & 2 deletions packages/PdoEventSourcing/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}
},
"require": {
"ecotone/dbal": "~1.90.1",
"ecotone/dbal": "~1.90.2",
"prooph/pdo-event-store": "^1.15.1"
},
"require-dev": {
Expand All @@ -49,7 +49,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "1.90.1-dev"
"dev-main": "1.90.2-dev"
},
"ecotone": {
"repository": "pdo-event-sourcing"
Expand Down
4 changes: 2 additions & 2 deletions packages/Redis/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
}
},
"require": {
"ecotone/enqueue": "~1.90.1",
"ecotone/enqueue": "~1.90.2",
"enqueue/redis": "^0.10.9"
},
"require-dev": {
Expand All @@ -57,7 +57,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "1.90.1-dev"
"dev-main": "1.90.2-dev"
},
"ecotone": {
"repository": "redis"
Expand Down
4 changes: 2 additions & 2 deletions packages/Sqs/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}
},
"require": {
"ecotone/enqueue": "~1.90.1",
"ecotone/enqueue": "~1.90.2",
"enqueue/sqs": "^0.10.15",
"aws/aws-sdk-php": "<=3.269.5"
},
Expand All @@ -52,7 +52,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "1.90.1-dev"
"dev-main": "1.90.2-dev"
},
"ecotone": {
"repository": "sqs"
Expand Down
4 changes: 2 additions & 2 deletions packages/Symfony/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
],
"description": "Extends Ecotone with Symfony integration",
"require": {
"ecotone/ecotone": "~1.90.1",
"ecotone/ecotone": "~1.90.2",
"laminas/laminas-zendframework-bridge": "^1.0.0",
"symfony/console": "^5.4|^6.0",
"symfony/framework-bundle": "^5.4|^6.0"
Expand Down Expand Up @@ -78,7 +78,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "1.90.1-dev"
"dev-main": "1.90.2-dev"
},
"ecotone": {
"repository": "symfony"
Expand Down
2 changes: 1 addition & 1 deletion quickstart-examples/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "1.90.1-dev"
"dev-main": "1.90.2-dev"
},
"ecotone": {
"repository": "quickstart-examples"
Expand Down

0 comments on commit 32e8816

Please sign in to comment.