Skip to content

Commit

Permalink
add release-notes
Browse files Browse the repository at this point in the history
  • Loading branch information
sweikenb committed Jul 20, 2024
1 parent 01084b8 commit a20fdbf
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,32 @@
# Changelog

## Release [v7.0.0](https://github.com/sweikenb/pcntl/releases/tag/v7.0.0)

**Bugfixes**

- Proper signal handling and propagation #11

**Features**

- Introduced a `wait()`-function for the `ProcessQueue` itself which should be used when working with queues instead
of using the `wait()` method of the `ProcessManager` itself.
- Adding PHP 8.3 support to phpunit test-matrix

**Breaking Changes**

- NOTE: The POSIX signal handling fix might affect the order in which callbacks will be called.
For the most part, this should not change the functionality of your application, but just to make sure nothing breaks
unexpectedly, this is the reason for the major version bump instead of just a feature-release.

* * *

## Release [v6.0.0](https://github.com/sweikenb/pcntl/releases/tag/v6.0.0)

**Bugfixes**

- Sending IPC messages will now honor the returned bytes of the written buffer correctly

- **Features**
**Features**

- `ProcessOutput` allows to modify the console output beside the default `STDOUT` and `STDERR`
- Unit and functional tests added using PHPUnit and GitHub actions
Expand Down
2 changes: 1 addition & 1 deletion docs/src/common-pitfalls-and-workarounds.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ $results = $connection->getReults();
$connection->close();
foreach ($results as $result) {
$pm->runProcess(function () use ($result) {
// close connection
// re-open connection
$connection = new Connection();

// TODO process data
Expand Down
5 changes: 5 additions & 0 deletions docs/src/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ Install the latest version using [composer](https://getcomposer.org/):
composer require sweikenb/pcntl
```

## Changelog

Please consult the [CHANGELOG.md](https://github.com/sweikenb/pcntl/blob/main/CHANGELOG.md) for latest update
information.

## System Requirements

This library requires at least **PHP v8.2** with the following extensions enabled:
Expand Down

0 comments on commit a20fdbf

Please sign in to comment.