Skip to content

Commit

Permalink
updated CHANGELOG.md and README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
1ma committed Apr 7, 2020
1 parent d054b4d commit b6b1023
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### [0.9.7] - 2020-04-07

* (Improvement) Implemented support for Unix paths as means to connect to a Redis server.
* (Bugfix) Ensure RedisSessionHandler::read() always returns a string (contributed by [therosco](https://github.com/therosco)).
* (Docs) Acknowledged `redis.session.locking_enabled` INI directive from the native extension (starting from v4.1.0).
* (Improvement) Updated versions of testing containers.

### [0.9.6] - 2018-03-31

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

* Initial pre-release

[0.9.7]: https://github.com/1ma/RedisSessionHandler/compare/v0.9.6...v0.9.7
[0.9.6]: https://github.com/1ma/RedisSessionHandler/compare/v0.9.5...v0.9.6
[0.9.5]: https://github.com/1ma/RedisSessionHandler/compare/v0.9.4...v0.9.5
[0.9.4]: https://github.com/1ma/RedisSessionHandler/compare/v0.9.3...v0.9.4
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ the Redis server, just like the vanilla phpredis session handler:
session.save_path = "localhost"
session.save_path = "localhost?timeout=2.5"
session.save_path = "tcp://1.2.3.4:5678?prefix=APP_SESSIONS:&database=2"
session.save_path = "unix:///var/run/redis.sock"
session.save_path = "/var/run/redis.sock?database=2"
```

Available query params:
Expand All @@ -51,6 +53,8 @@ Available query params:

Currently only a single host definition is supported.

Note than when connecting through a Unix socket the timeout is ignored.


## Known Caveats

Expand Down

0 comments on commit b6b1023

Please sign in to comment.