File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
All notable changes to this project will be documented in this file.
3
3
4
+ ## [ 1.2.4] - 2021-12-01
5
+ ### Updated
6
+ - change error message if not exist cache
7
+
4
8
## [ 1.2.3] - 2021-10-29
5
9
### Fixed
6
10
- requestAccessToken function response type with use cache
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ The preferred way to install this extension is through [composer](http://getcomp
14
14
Either run
15
15
16
16
```
17
- composer require indigerd/yii2-oauth2-auth-filter "1.2.3 "
17
+ composer require indigerd/yii2-oauth2-auth-filter "1.2.4 "
18
18
```
19
19
20
20
or add
21
21
22
22
```
23
- "indigerd/yii2-oauth2-auth-filter": "1.2.3 "
23
+ "indigerd/yii2-oauth2-auth-filter": "1.2.4 "
24
24
```
25
25
26
26
to the require section of your ` composer.json ` file.
30
30
-----
31
31
32
32
[ CHANGELOG ] : ./CHANGELOG.md
33
- [ version-badge ] : https://img.shields.io/badge/version-1.2.3 -blue.svg
33
+ [ version-badge ] : https://img.shields.io/badge/version-1.2.4 -blue.svg
Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ private function initCacheInstance()
189
189
try {
190
190
$ this ->cache = Instance::ensure ($ this ->cache , 'yii\caching\CacheInterface ' );
191
191
} catch (InvalidConfigException $ e ) {
192
- Yii::warning ('Unable to use cache for URL manager : ' . $ e ->getMessage ());
192
+ Yii::warning ('Unable to use cache for Auth filter : ' . $ e ->getMessage ());
193
193
}
194
194
}
195
195
}
You can’t perform that action at this time.
0 commit comments