Skip to content

Commit a20fdbf

Browse files
committed
add release-notes
1 parent 01084b8 commit a20fdbf

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

CHANGELOG.md

+21-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,32 @@
11
# Changelog
22

3+
## Release [v7.0.0](https://github.com/sweikenb/pcntl/releases/tag/v7.0.0)
4+
5+
**Bugfixes**
6+
7+
- Proper signal handling and propagation #11
8+
9+
**Features**
10+
11+
- Introduced a `wait()`-function for the `ProcessQueue` itself which should be used when working with queues instead
12+
of using the `wait()` method of the `ProcessManager` itself.
13+
- Adding PHP 8.3 support to phpunit test-matrix
14+
15+
**Breaking Changes**
16+
17+
- NOTE: The POSIX signal handling fix might affect the order in which callbacks will be called.
18+
For the most part, this should not change the functionality of your application, but just to make sure nothing breaks
19+
unexpectedly, this is the reason for the major version bump instead of just a feature-release.
20+
21+
* * *
22+
323
## Release [v6.0.0](https://github.com/sweikenb/pcntl/releases/tag/v6.0.0)
424

525
**Bugfixes**
626

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

9-
- **Features**
29+
**Features**
1030

1131
- `ProcessOutput` allows to modify the console output beside the default `STDOUT` and `STDERR`
1232
- Unit and functional tests added using PHPUnit and GitHub actions

docs/src/common-pitfalls-and-workarounds.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ $results = $connection->getReults();
3030
$connection->close();
3131
foreach ($results as $result) {
3232
$pm->runProcess(function () use ($result) {
33-
// close connection
33+
// re-open connection
3434
$connection = new Connection();
3535

3636
// TODO process data

docs/src/installation.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ Install the latest version using [composer](https://getcomposer.org/):
66
composer require sweikenb/pcntl
77
```
88

9+
## Changelog
10+
11+
Please consult the [CHANGELOG.md](https://github.com/sweikenb/pcntl/blob/main/CHANGELOG.md) for latest update
12+
information.
13+
914
## System Requirements
1015

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

0 commit comments

Comments
 (0)