Skip to content

Releases: fr3nch13/cakephp-utilities

CheckAdd fix to expose underlying error.

26 Jul 23:05
728524c
Compare
Choose a tag to compare
Merge pull request #16 from fr3nch13/dev

Better way as the catch was obfuscating the real error.

Adding the git add safe option

30 Jun 20:18
fa3ffae
Compare
Choose a tag to compare

The VersionsHelper uses git to detect which tag/branch that the root application is running.

Git detects if the user that is running the git command is also the owner of the git repository. If the user isn't the owner of the repository, as in the possible case of apache/web server, git will throw an error fatal: detected dubious ownership in repository.

I've added the ability to try to mark the repo as safe by automatically running git config --global --add safe.directory ' . $this->getRootDir(); however, this may not be enough, and you may need to change the owner of the repository to the user that apache/web server runs under.

Apache usually runs under either apache or www-data on Linux systems.
To find out for yourself which user is running apache:

  • start apache
  • run this command ps -ef | egrep '(httpd|apache2|apache)' | grep sbin | grep -v root | head -n1 | awk '{print $1}'.

Multiple minor updates

20 Jun 22:43
baac59c
Compare
Choose a tag to compare
  • Updates to the Common Network Library.
  • More tests and coverage
  • Added a common fixName method for the CheckAdd Trait.

Fix for issue with finding the application root.

17 Jun 00:20
408cb84
Compare
Choose a tag to compare

Added a fix that will ensure we find and verify the application's root folder.

Fix for Fallback on ROOT constant.

12 Jun 23:02
126a09e
Compare
Choose a tag to compare

Fallback to the ROOT constant from the source application if neither the LOOK_DIR nor the ROOT environment variables are set.

Adding the Gravatar Helper.

03 Mar 21:23
47e01d0
Compare
Choose a tag to compare
Merge pull request #7 from fr3nch13/dev

Adding the gravatar helper.

Added more utilities.

03 Mar 20:18
11f80ee
Compare
Choose a tag to compare
Added more utilities. Pre-release
Pre-release
Merge pull request #6 from fr3nch13/dev

Adding controller traits and tests for them.

Adding more utilities and testing.

28 Feb 05:08
8987146
Compare
Choose a tag to compare
Pre-release
Merge pull request #5 from fr3nch13/dev

Adding more utilities and testing.

Initial alpha version

25 Feb 23:18
c1541a2
Compare
Choose a tag to compare
Initial alpha version Pre-release
Pre-release

This is an initial alpha version. I still need to add some more stuff.