Skip to content
This repository has been archived by the owner on Feb 17, 2024. It is now read-only.

Releases: semibreve/minim

Fix cookie path issue

08 Mar 10:05
Compare
Choose a tag to compare

The cookie's path was being set to the empty string '' and so would misbehave at sub-directories deeper than one level. This release fixes that issue by setting it to / to cover the whole domain.

Fix Breaking Issue

24 Jan 21:04
Compare
Choose a tag to compare

The previous release (v1.4) is fundamentally broken. Trying to decrypt an empty session token cookie throws a bunch of errors. This release fixes that issue.

Use Library for Encryption

24 Jan 20:38
Compare
Choose a tag to compare

The task of encrypting/decrypting the session token files has been delegated to Taylor Hornby's library which seems relatively time-tested and popular. This should be a nice boost to security.

Documentation update

08 Dec 11:21
Compare
Choose a tag to compare

Not a functionality update, but a documentation update. Corrects various inaccuracies in the README.md file about the name of the package.

Rename release

08 Dec 11:02
Compare
Choose a tag to compare

Transferred this repository to a dedicated organisation because it's useful and modular enough to be there. Plus it makes adding contributors easier. This necessitated renaming the package.

Bugfix release for multiple calls to isAuthenticated

25 Sep 18:31
Compare
Choose a tag to compare

The use of setcookie to persist the authentication token was causing the following weirdness to happen:

$a = $auth->isAuthenticated(); // true
$b = $auth->isAuthenticated(); // false

This release addresses this bug. The isAuthenticated function can now be called twice or more in the same request and still give an accurate return value.

Change to bcrypt hashes

23 Sep 21:56
Compare
Choose a tag to compare

This version changes from SHA-256 to bcrypt hashing and adds a utility called minim-genhash to generate hashes for inclusion in the configuration file.

PSR version fix

16 Sep 18:51
Compare
Choose a tag to compare

Package previously used PSR-0 instead of PSR-4 as the autoloading mechanism, creating a problem. This bugfix release remedies that.

Bugfix/consistency release for autoloader

16 Sep 18:41
Compare
Choose a tag to compare

This release adds a \\ to the end of the namespace in the autoloader and a `/`` to the end of the file path. From what I've seen this is best practice and might fix a problem with the autoloader.

Initial release

14 Sep 19:02
Compare
Choose a tag to compare

This is my first release going out via Packagist. Might work, might not. We're about to find out.