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 c59ae3c commit bfa65caCopy full SHA for bfa65ca
CHANGELOG.md
@@ -0,0 +1,14 @@
1
+# Changelog
2
+
3
+## Updating from 1.0.0 to 2.0.0
4
+ - Overall php version requirement was bumped from `5.5` to `7.3`
5
+ - Fluent interfaces in `Dataloader::prime()`,`DataLoader::clear` and `DataLoader::clearAll()` were removed. So change usages like:
6
+ ```php
7
+ $dataloader->clear('A')->prime('A', 'Y');
8
+ ```
9
+ to:
10
11
+ $dataloader->clear('A');
12
+ $dataloader->prime('A', 'Y');
13
14
+ - All classes in the library have been marked as final.
0 commit comments