Skip to content

Commit bfa65ca

Browse files
committed
Created a changelog of the changes
1 parent c59ae3c commit bfa65ca

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)