File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.3.0 (2021-11-12)
4
+
5
+ * Feature: Support upcoming PHP 8.1 release.
6
+ (#49 by @SimonFrings )
7
+
8
+ * Feature: Support passing custom PHP binary as optional argument to ` Factory ` .
9
+ (#45 and #46 by @clue )
10
+
11
+ ``` php
12
+ // advanced usage: pass custom PHP binary to use when spawning child process
13
+ $factory = new Clue\React\SQLite\Factory(null, '/usr/bin/php6.0');
14
+ ```
15
+
16
+ * Feature: Support using blocking SQLite adapter when using an empty binary path.
17
+ (#48 by @clue)
18
+
19
+ ```php
20
+ // advanced usage: empty binary path runs blocking SQLite in same process
21
+ $factory = new Clue\React\SQLite\Factory(null, '');
22
+ ```
23
+
24
+ * Feature: Use default `php` binary instead of respecting `PHP_BINARY` when automatic binary detection fails for non-CLI SAPIs.
25
+ (#50 by @clue)
3
26
4
27
## 1.2.0 (2021-10-04)
5
28
Original file line number Diff line number Diff line change @@ -438,7 +438,7 @@ This project follows [SemVer](https://semver.org/).
438
438
This will install the latest supported version:
439
439
440
440
``` bash
441
- $ composer require clue/reactphp-sqlite:^1.2
441
+ $ composer require clue/reactphp-sqlite:^1.3
442
442
```
443
443
444
444
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments