Skip to content

Commit 83fabc5

Browse files
authored
Added changelogs for new versions (#248)
* Added changelogs for new versions * Added changelog for adapter-common * Added more changelogs
1 parent 48ab1b5 commit 83fabc5

File tree

22 files changed

+175
-67
lines changed

22 files changed

+175
-67
lines changed

src/Adapter/Apc/Changelog.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Change Log
22

3-
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
3+
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
44

55
## UNRELEASED
66

7+
## 1.1.0
8+
9+
### Added
10+
11+
* Support for PHP 8
12+
713
## 1.0.0
814

915
* No changes since 0.4.0
@@ -12,12 +18,12 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
1218

1319
### Added
1420

15-
* Support for the new `TaggableCacheItemPoolInterface`.
21+
* Support for the new `TaggableCacheItemPoolInterface`.
1622
* Support for PSR-16 SimpleCache
1723

1824
### Changed
1925

20-
* The behavior of `CacheItem::getTags()` has changed. It will not return the tags stored in the cache storage.
26+
* The behavior of `CacheItem::getTags()` has changed. It will not return the tags stored in the cache storage.
2127

2228
### Removed
2329

src/Adapter/Apcu/Changelog.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Change Log
22

3-
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
3+
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
44

55
## UNRELEASED
66

7+
## 1.1.0
8+
9+
### Added
10+
11+
* Support for PHP 8
12+
713
## 1.0.0
814

915
* No changes since 0.3.0
@@ -12,12 +18,12 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
1218

1319
### Added
1420

15-
* Support for the new `TaggableCacheItemPoolInterface`.
21+
* Support for the new `TaggableCacheItemPoolInterface`.
1622
* Support for PSR-16 SimpleCache
1723

1824
### Changed
1925

20-
* The behavior of `CacheItem::getTags()` has changed. It will not return the tags stored in the cache storage.
26+
* The behavior of `CacheItem::getTags()` has changed. It will not return the tags stored in the cache storage.
2127

2228
### Removed
2329

src/Adapter/Chain/Changelog.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Change Log
22

3-
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
3+
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
44

55
## UNRELEASED
66

7+
## 1.1.0
8+
9+
### Added
10+
11+
* Support for PHP 8
12+
713
## 1.0.0
814

915
### Added
@@ -25,13 +31,13 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
2531

2632
### Added
2733

28-
* Support for the new `TaggableCacheItemPoolInterface`.
34+
* Support for the new `TaggableCacheItemPoolInterface`.
2935

3036
## 0.4.0
3137

3238
### Changed
3339

34-
* `CachePoolChain::getPools` is protected instead of public
40+
* `CachePoolChain::getPools` is protected instead of public
3541

3642
## 0.3.1
3743

src/Adapter/Common/Changelog.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
# Change Log
22

3-
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
3+
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
4+
5+
## 1.2.0
6+
7+
### Added
8+
9+
* Support for PHP 8
410

511
## 1.1.0
612

7-
### Added
13+
### Added
814

915
- Support for storing binary data
1016

@@ -14,7 +20,7 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
1420

1521
### Changed
1622

17-
- Tests are now extending `PHPUnit\Framework\TestCase`
23+
- Tests are now extending `PHPUnit\Framework\TestCase`
1824

1925
## 1.0.0
2026

@@ -25,16 +31,16 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
2531
### Added
2632

2733
* `AbstractCachePool` has 4 new abstract methods: `getList`, `removeList`, `appendListItem` and `removeListItem`.
28-
* `AbstractCachePool::invalidateTags` and `AbstractCachePool::invalidateTags`
34+
* `AbstractCachePool::invalidateTags` and `AbstractCachePool::invalidateTags`
2935
* Added interfaces for our items and pools `PhpCachePool` and `PhpCacheItem`
3036
* Trait to help adapters to support tags. `TagSupportWithArray`.
3137

3238
### Changed
3339

34-
* First parameter to `AbstractCachePool::storeItemInCache` must be a `PhpCacheItem`.
35-
* Return value from `AbstractCachePool::fetchObjectFromCache` must be a an array with 4 values. Added expiration timestamp.
40+
* First parameter to `AbstractCachePool::storeItemInCache` must be a `PhpCacheItem`.
41+
* Return value from `AbstractCachePool::fetchObjectFromCache` must be a an array with 4 values. Added expiration timestamp.
3642
* `HasExpirationDateInterface` is replaced by `HasExpirationTimestampInterface`
37-
* We do not work with `\DateTime` internally anymore. We work with timestamps.
43+
* We do not work with `\DateTime` internally anymore. We work with timestamps.
3844

3945
## 0.3.3
4046

@@ -55,7 +61,7 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
5561
* The `AbstractCachePool` does not longer implement `TaggablePoolInterface`. However, the `CacheItem` does still implement `TaggableItemInterface`.
5662
* `CacheItem::getKeyFromTaggedKey` has been removed
5763
* The `CacheItem`'s second parameter is a callable that must return an array with 3 elements; [`hasValue`, `value`, `tags`].
58-
64+
5965
## 0.2.0
60-
66+
6167
* No changelog before this version

src/Adapter/Doctrine/Changelog.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Change Log
22

3-
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
3+
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
44

55
## UNRELEASED
66

7+
## 1.1.0
8+
9+
### Added
10+
11+
* Support for PHP 8
12+
713
## 1.0.0
814

915
* No changes since 0.6.0
@@ -12,12 +18,12 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
1218

1319
### Added
1420

15-
* Support for the new `TaggableCacheItemPoolInterface`.
21+
* Support for the new `TaggableCacheItemPoolInterface`.
1622
* Support for PSR-16 SimpleCache
1723

1824
### Changed
1925

20-
* The behavior of `CacheItem::getTags()` has changed. It will not return the tags stored in the cache storage.
26+
* The behavior of `CacheItem::getTags()` has changed. It will not return the tags stored in the cache storage.
2127

2228
### Removed
2329

src/Adapter/Filesystem/Changelog.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
# Change Log
22

3-
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
3+
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
44

55
## UNRELEASED
66

77
## 1.1.0
88

9+
### Added
10+
11+
* Support for PHP 8
12+
913
### Changed
1014

11-
* Use `League\Flysystem\FilesystemInterface` instead of concreate `League\Flysystem\Filesystem` class
15+
* Use `League\Flysystem\FilesystemInterface` instead of concrete `League\Flysystem\Filesystem` class
1216

1317
## 1.0.0
1418

@@ -18,12 +22,12 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
1822

1923
### Added
2024

21-
* Support for the new `TaggableCacheItemPoolInterface`.
25+
* Support for the new `TaggableCacheItemPoolInterface`.
2226
* Support for PSR-16 SimpleCache
2327

2428
### Changed
2529

26-
* The behavior of `CacheItem::getTags()` has changed. It will not return the tags stored in the cache storage.
30+
* The behavior of `CacheItem::getTags()` has changed. It will not return the tags stored in the cache storage.
2731

2832
### Removed
2933

src/Adapter/Illuminate/Changelog.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
# Change Log
22

33
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
4-
## UNRELEASED
4+
5+
## 0.3.0
56

67
### Added
78

89
* Hierarchical implementation
10+
* Support for PHP 8
911

10-
## 1.1.0
12+
## 0.2.0
1113

1214
### Fixed
1315

1416
* Let composer install laravel 5.4, 5.5 and 5.6
1517

16-
## 1.0.0
17-
18-
* No changes since 0.1.0
19-
2018
## 0.1.0
2119

2220
* First version

src/Adapter/Memcache/Changelog.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Change Log
22

3-
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
3+
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
44

55
## UNRELEASED
66

7+
## 1.1.0
8+
9+
### Added
10+
11+
* Support for PHP 8
12+
713
## 1.0.0
814

915
* No changes since 0.3.0
@@ -12,12 +18,12 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
1218

1319
### Added
1420

15-
* Support for the new `TaggableCacheItemPoolInterface`.
21+
* Support for the new `TaggableCacheItemPoolInterface`.
1622
* Support for PSR-16 SimpleCache
1723

1824
### Changed
1925

20-
* The behavior of `CacheItem::getTags()` has changed. It will not return the tags stored in the cache storage.
26+
* The behavior of `CacheItem::getTags()` has changed. It will not return the tags stored in the cache storage.
2127

2228
### Removed
2329

src/Adapter/Memcached/Changelog.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Change Log
22

3-
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
3+
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
44

55
## UNRELEASED
66

7+
## 1.1.0
8+
9+
### Added
10+
11+
* Support for PHP 8
12+
713
## 1.0.0
814

915
### Fixed
@@ -14,12 +20,12 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
1420

1521
### Added
1622

17-
* Support for the new `TaggableCacheItemPoolInterface`.
23+
* Support for the new `TaggableCacheItemPoolInterface`.
1824
* Support for PSR-16 SimpleCache
1925

2026
### Changed
2127

22-
* The behavior of `CacheItem::getTags()` has changed. It will not return the tags stored in the cache storage.
28+
* The behavior of `CacheItem::getTags()` has changed. It will not return the tags stored in the cache storage.
2329

2430
### Removed
2531

@@ -31,7 +37,7 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
3137

3238
### Fixed
3339

34-
* Issue when ttl is larger than 30 days.
40+
* Issue when ttl is larger than 30 days.
3541

3642
## 0.3.2
3743

src/Adapter/MongoDB/Changelog.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Change Log
22

3-
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
3+
The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
44

55
## UNRELEASED
66

7+
## 1.2.0
8+
9+
### Added
10+
11+
* Support for PHP 8
12+
713
## 1.1.0
814

915
### Changed
@@ -17,12 +23,12 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
1723

1824
### Added
1925

20-
* Support for the new `TaggableCacheItemPoolInterface`.
26+
* Support for the new `TaggableCacheItemPoolInterface`.
2127
* Support for PSR-16 SimpleCache
2228

2329
### Changed
2430

25-
* The behavior of `CacheItem::getTags()` has changed. It will not return the tags stored in the cache storage.
31+
* The behavior of `CacheItem::getTags()` has changed. It will not return the tags stored in the cache storage.
2632

2733
### Removed
2834

0 commit comments

Comments
 (0)