update changelog to v0.8.0 #173
Annotations
5 warnings
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
|
src/Write/Payload.php#L32
Escaped Mutant for Mutator "DecrementInteger":
--- Original
+++ New
@@ @@
public static function fromJsonString(string $jsonPayload) : self
{
/** @var Criteria $payload */
- $payload = json_decode($jsonPayload, true, 16, JSON_THROW_ON_ERROR);
+ $payload = json_decode($jsonPayload, true, 15, JSON_THROW_ON_ERROR);
return self::fromArray($payload);
}
/** @return Criteria */
|
src/Write/Payload.php#L32
Escaped Mutant for Mutator "IncrementInteger":
--- Original
+++ New
@@ @@
public static function fromJsonString(string $jsonPayload) : self
{
/** @var Criteria $payload */
- $payload = json_decode($jsonPayload, true, 16, JSON_THROW_ON_ERROR);
+ $payload = json_decode($jsonPayload, true, 17, JSON_THROW_ON_ERROR);
return self::fromArray($payload);
}
/** @return Criteria */
|
src/Write/Strategy.php#L54
Escaped Mutant for Mutator "UnwrapArrayMap":
--- Original
+++ New
@@ @@
/** @return WriteStrategy */
public function jsonSerialize() : array
{
- return ['strategy_id' => $this->strategyId->value(), 'strategy_type' => $this->type()->value(), 'segments' => array_map(static fn(Segment $segment) => $segment->jsonSerialize(), $this->segments())];
+ return ['strategy_id' => $this->strategyId->value(), 'strategy_type' => $this->type()->value(), 'segments' => $this->segments()];
}
}
|
The logs for this run have expired and are no longer available.
Loading