Releases: josantonius/php-session
1.1.9
IMPORTANT
-
Version 1.x is considered as deprecated and unsupported.
-
In the next version (2.x) the library will be completely restructured and will only be compatible with PHP 8 or higher versions.
-
It is recommended to review the documentation for the next version and make the necessary changes before starting to use it, as it will not be compatible with version 1.x.
-
Improved documentation;
README.md
,CODE_OF_CONDUCT.md
,CONTRIBUTING.md
andCHANGELOG.md
. -
Removed
Codacy
. -
Removed
PHP Coding Standards Fixer
. -
The
master
branch was renamed tomain
. -
The
develop
branch was added to use a workflow based onGit Flow
. -
Travis
is discontinued for continuous integration.GitHub Actions
will be used from now on. -
Added
.github/CODE_OF_CONDUCT.md
file. -
Added
.github/CONTRIBUTING.md
file. -
Added
.github/FUNDING.yml
file. -
Added
.github/workflows/ci.yml
file. -
Added
.github/lang/es-ES/CODE_OF_CONDUCT.md
file. -
Added
.github/lang/es-ES/CONTRIBUTING.md
file. -
Added
.github/lang/es-ES/LICENSE
file. -
Added
.github/lang/es-ES/README
file. -
Deleted
.travis.yml
file. -
Deleted
.editorconfig
file. -
Deleted
CONDUCT.MD
file. -
Deleted
README-ES.MD
file. -
Deleted
.php_cs.dist
file.
1.1.8
- Added ability to set a lifeTime during session init and added tests.
1.1.7
-
The tests were fixed.
-
Changes in documentation.
1.1.6
-
Set the correct
phpcbf
fix command incomposer.json
. -
Logical condition was unified.
-
Set static methods should in tests class. Use
::
instead of->
. -
Added
Josantonius\Session\Session::getPrefix()
method. -
Added
Josantonius\Session\Tests\SessionTest::testSetPrefix()
method.
1.1.5
-
Implemented
PHP Mess Detector
to detect inconsistencies in code styles. -
Implemented
PHP Code Beautifier and Fixer
to fixing errors automatically. -
Implemented
PHP Coding Standards Fixer
to organize PHP code automatically according to PSR standards.
1.1.4
-
Implemented
PSR-4 autoloader standard
from all library files. -
Implemented
PSR-2 coding standard
from all library PHP files. -
Implemented
PHPCS
to ensure that PHP code complies withPSR2
code standards. -
Implemented
Codacy
to automates code reviews and monitors code quality over time. -
Implemented
Codecov
to coverage reports. -
Added
Session/phpcs.ruleset.xml
file. -
Deleted
Session/src/bootstrap.php
file. -
Deleted
Session/tests/bootstrap.php
file. -
Deleted
Session/vendor
folder. -
Changed
Josantonius\Session\Test\SessionTest
class toJosantonius\Session\SessionTest
class.
1.1.3
-
Unit tests supported by
PHPUnit
were added. -
The repository was synchronized with
Travis CI
to implement continuous integration. -
Added
Session/src/bootstrap.php
file -
Added
Session/tests/bootstrap.php
file. -
Added
Session/phpunit.xml.dist
file. -
Added
Session/_config.yml
file. -
Added
Session/.travis.yml
file. -
Deleted
Josantonius\Session\Session::display()
method. -
Deleted
Josantonius\Session\Tests\SessionTest
class. -
Deleted
Josantonius\Session\Tests\SessionTest::testSetPrefix()
method. -
Deleted
Josantonius\Session\Tests\SessionTest::testSet()
method. -
Deleted
Josantonius\Session\Tests\SessionTest::testSetMultiple()
method. -
Deleted
Josantonius\Session\Tests\SessionTest::testPull()
method. -
Deleted
Josantonius\Session\Tests\SessionTest::testGet()
method. -
Deleted
Josantonius\Session\Tests\SessionTest::testGetSecondKey()
method. -
Deleted
Josantonius\Session\Tests\SessionTest::testId()
method. -
Deleted
Josantonius\Session\Tests\SessionTest::testRegenerate()
method. -
Deleted
Josantonius\Session\Tests\SessionTest::testDisplay()
method. -
Deleted
Josantonius\Session\Tests\SessionTest::testDestroyOneKeySession()
method. -
Deleted
Josantonius\Session\Tests\SessionTest::testDestroyAllSessions()
method. -
Deleted
Josantonius\Session\Tests\SessionTest::testDestroyAllSessions()
method. -
Added
Josantonius\Session\Test\SessionTest
class. -
Added
Josantonius\Session\Test\SessionTest::testSetPrefix()
method. -
Added
Josantonius\Session\Test\SessionTest::testInit()
method. -
Added
Josantonius\Session\Test\SessionTest::testSet()
method. -
Added
Josantonius\Session\Test\SessionTest::testSetMultiple()
method. -
Added
Josantonius\Session\Test\SessionTest::testPull()
method. -
Added
Josantonius\Session\Test\SessionTest::testPullNonExistent()
method. -
Added
Josantonius\Session\Test\SessionTest::testGet()
method. -
Added
Josantonius\Session\Test\SessionTest::testGetNonExistent()
method. -
Added
Josantonius\Session\Test\SessionTest::testGetWithSecondKey()
method. -
Added
Josantonius\Session\Test\SessionTest::testGetWithSecondKeyNonExistent()
method. -
Added
Josantonius\Session\Test\SessionTest::testGetAll()
method. -
Added
Josantonius\Session\Test\SessionTest::testId()
method. -
Added
Josantonius\Session\Test\SessionTest::testRegenerate()
method. -
Added
Josantonius\Session\Test\SessionTest::testValidateRegenerateId()
method. -
Added
Josantonius\Session\Test\SessionTest::testDestroy()
method.
1.1.2
- Added
Josantonius\Session\Exception\SessionException
class. - Added
Josantonius\Session\Exception\Exceptions
abstract class. - Added
Josantonius\Session\Exception\SessionException->__construct()
method.
1.1.1
- Some files were excluded from download and comments and readme files were updated.
1.1.0
- Compatible with PHP 5.6 or higher.