Skip to content

Commit b6b1023

Browse files
committed
updated CHANGELOG.md and README.md
1 parent d054b4d commit b6b1023

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### [0.9.7] - 2020-04-07
2+
3+
* (Improvement) Implemented support for Unix paths as means to connect to a Redis server.
4+
* (Bugfix) Ensure RedisSessionHandler::read() always returns a string (contributed by [therosco](https://github.com/therosco)).
5+
* (Docs) Acknowledged `redis.session.locking_enabled` INI directive from the native extension (starting from v4.1.0).
6+
* (Improvement) Updated versions of testing containers.
7+
18
### [0.9.6] - 2018-03-31
29

310
* (Bugfix) Fixed regenerated sessions expiration date (contributed by [@kavacky](https://github.com/kavacky))
@@ -31,6 +38,7 @@
3138

3239
* Initial pre-release
3340

41+
[0.9.7]: https://github.com/1ma/RedisSessionHandler/compare/v0.9.6...v0.9.7
3442
[0.9.6]: https://github.com/1ma/RedisSessionHandler/compare/v0.9.5...v0.9.6
3543
[0.9.5]: https://github.com/1ma/RedisSessionHandler/compare/v0.9.4...v0.9.5
3644
[0.9.4]: https://github.com/1ma/RedisSessionHandler/compare/v0.9.3...v0.9.4

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ the Redis server, just like the vanilla phpredis session handler:
4040
session.save_path = "localhost"
4141
session.save_path = "localhost?timeout=2.5"
4242
session.save_path = "tcp://1.2.3.4:5678?prefix=APP_SESSIONS:&database=2"
43+
session.save_path = "unix:///var/run/redis.sock"
44+
session.save_path = "/var/run/redis.sock?database=2"
4345
```
4446

4547
Available query params:
@@ -51,6 +53,8 @@ Available query params:
5153

5254
Currently only a single host definition is supported.
5355

56+
Note than when connecting through a Unix socket the timeout is ignored.
57+
5458

5559
## Known Caveats
5660

0 commit comments

Comments
 (0)