Skip to content

Releases: byjg/php-jwt-session

Release 4.9.0

25 Aug 17:12
5ab56f4
Compare
Choose a tag to compare

Important Notice

  • Dropped support for PHP 7.4 and lower.

What's Changed

New Contributors

Full Changelog: 2.0.0...4.9.0

Release 2.0.0

09 Jan 02:42
6f31d19
Compare
Choose a tag to compare

Important changes that break compatibility with previous versions:

  • Upgrade Jwt-Wrapper component (byjg/php-jwt-wrapper#2)
  • Use SessionConfig class instead a lot or arguments
  • Removing PHPSESSID based on issue #10
  • Moving method replaceSessionHandler() to SessionConfig

Examples:

before

<?php
$handler = new \ByJG\Session\JwtSession(
    'your.domain.com', 
    'your super secret key', 
    null, 
    null, 
    '.mydomain.com'
);
$handler->replaceSessionHandler(true);

now

<?php
$sessionConfig = (new \ByJG\Session\SessionConfig('your.domain.com'))
     ->withSecret('your super secret key')
     ->withCookie('.mydomain.com', '/')
     ->replaceSessionHandler();
 
 $handler = new \ByJG\Session\JwtSession($sessionConfig);

Release 1.0.3

03 Dec 17:36
cadf6d7
Compare
Choose a tag to compare

Update Issue #6 - Cookie Set and Delete Error
Update Issue #7 - Include Path as Parameters
Update Issue #8 - Set HttpOnly (Security patch)

Release 1.0.2

25 Aug 14:37
7f5780c
Compare
Choose a tag to compare

Fixed convert object issues

Release 1.0.1

20 Mar 02:49
b12db86
Compare
Choose a tag to compare

Allow to set cookie domain

Initial Release

27 May 21:40
Compare
Choose a tag to compare
Merge pull request #1 from byjg/1.0

1.0