-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from darkwood-fr/composer
⬆️ Update composer
- Loading branch information
Showing
17 changed files
with
170 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
### 1.1.x | ||
|
||
- Upgrade to Symfony 6.3 | ||
- Refactor docs structure | ||
- Refactor tooling from https://github.com/jolicode/castor | ||
- Rework on Flow\DriverInterface | ||
- Update `async` that now $onResolve get called with async $callback result or Flow\Exception as first argument | ||
- Update `tick` that now return a Closure to cleanup tick interval | ||
- Remove `start` and `stop` | ||
- Add Fiber Driver from https://github.com/jolicode/castor/blob/main/src/functions.php | ||
|
||
### 1.1.2 | ||
|
||
- Update to PHP 8.2 | ||
- Upgrade from amphp/amp v2 to amphp/amp v3 that use PHP Fibers | ||
- Upgrade from react/event-loop v1 to reactphp/async v4 that use PHP Fibers | ||
- Upgrade from Swoole v5 to Openswoole v22 | ||
- Rename function `corouting` to `async` in Flow\DriverInterface | ||
- Add function `sleep` in Flow\DriverInterface | ||
|
||
### 1.1.1 | ||
|
||
- Rename entire project from `Railway FBP` to `Flow` | ||
- Bundle `Flow` to PHP monorepository | ||
- Merge from `packages/symfony` to `packages/php` and make Flow [Symfony](https://symfony.com) friendly | ||
- New DX interface `Flow\FlowInterface` | ||
- Error managment is now integrated to Flow | ||
- Remove context associated with processing IP | ||
- Deprecate `Flow\Flow\SequenceFlow` in favor for `Flow\Flow\Flow` | ||
- Deprecate `Flow\Flow\ErrorFlow` in favor for `Flow\Flow\Flow` | ||
- Update `Flow\Flow\YFlow` and make it plain native | ||
- Update `Flow\IP` that use readonly object | ||
- New Flow logo | ||
|
||
### 1.1.0 | ||
|
||
- Release MIT License | ||
- Update dependencies to PHP 8.1 | ||
|
||
### 1.0.9 | ||
|
||
- Add `Flow\Flow\YFlow` that allows introduce recursivity into Flow language approach | ||
|
||
### 1.0.8 | ||
|
||
- Add code of conduct | ||
|
||
### 1.0.7 | ||
|
||
- Define Monads | ||
|
||
### 1.0.6 | ||
|
||
- Add `Flow\TransportFlow` | ||
- Flow can process multiple jobs in parallel | ||
|
||
### 1.0.5 | ||
|
||
- Add Symfony integration | ||
- Define monads | ||
|
||
### 1.0.4 | ||
|
||
- Refactor structure | ||
- Decouple integration | ||
|
||
### 1.0.3 | ||
|
||
- Add `Flow\IpStrategy` add several Ip strategy for data processing | ||
|
||
### 1.0.2 | ||
|
||
- Add `Flow\Driver\DriverInterface` | ||
- Add `Flow\Driver\AmpDriver` | ||
- Add `Flow\Driver\ReactDriver` | ||
- Add `Flow\Driver\SwooleDriver` | ||
|
||
### 1.0.1 | ||
|
||
- Add `Flow\Producer\CollectionConsumer` | ||
- Add `Flow\Producer\CollectionProducer` | ||
- Add `Flow\Transport\CollectionTransport` | ||
|
||
# 1.0.0 | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,3 +97,5 @@ toc: true | |
- Add `Flow\Transport\CollectionTransport` | ||
|
||
# 1.0.0 | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd" | ||
bootstrap="vendor/autoload.php" | ||
cacheResultFile=".phpunit.cache/test-results" | ||
executionOrder="depends,defects" | ||
forceCoversAnnotation="false" | ||
beStrictAboutCoversAnnotation="true" | ||
beStrictAboutOutputDuringTests="true" | ||
beStrictAboutTodoAnnotatedTests="true" | ||
convertDeprecationsToExceptions="true" | ||
failOnRisky="true" | ||
failOnWarning="true" | ||
verbose="true" | ||
colors="true"> | ||
<testsuites> | ||
<testsuite name="Test Suite"> | ||
<directory>tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<coverage cacheDirectory=".phpunit.cache/code-coverage" | ||
processUncoveredFiles="true"> | ||
<include> | ||
<directory suffix=".php">src</directory> | ||
</include> | ||
</coverage> | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd" | ||
beStrictAboutCoverageMetadata="true" | ||
beStrictAboutOutputDuringTests="true" | ||
bootstrap="vendor/autoload.php" | ||
cacheDirectory=".phpunit.cache" | ||
colors="true" | ||
executionOrder="depends,defects" | ||
failOnRisky="true" | ||
failOnWarning="true" | ||
requireCoverageMetadata="false"> | ||
<testsuites> | ||
<testsuite name="Test Suite"> | ||
<directory>tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<source> | ||
<include> | ||
<directory suffix=".php">src</directory> | ||
</include> | ||
</source> | ||
</phpunit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.