We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d67f92 commit 578c8e9Copy full SHA for 578c8e9
CHANGELOG.md
@@ -1,5 +1,25 @@
1
# Changelog
2
3
+
4
+## 1.2.0 (2021-10-04)
5
6
+* Feature: Simplify usage by supporting new [default loop](https://reactphp.org/event-loop/#loop).
7
+ (#39 by @clue and #44 by @SimonFrings)
8
9
+ ```php
10
+ // old (still supported)
11
+ $factory = new Clue\React\SQLite\Factory($loop);
12
13
+ // new (using default loop)
14
+ $factory = new Clue\React\SQLite\Factory();
15
+ ```
16
17
+* Feature: Reject null byte in path to SQLite database file.
18
+ (#42 by @SimonFrings)
19
20
+* Maintenance: Improve documentation and examples.
21
+ (#38 by @PaulRotmann and #43 by @SimonFrings)
22
23
## 1.1.0 (2020-12-15)
24
25
* Improve test suite and add `.gitattributes` to exclude dev files from exports.
0 commit comments