CodeIgniter Forums
Where can i find more detail on existing bugs? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Development (https://forum.codeigniter.com/forumdisplay.php?fid=6)
+--- Forum: CodeIgniter 3.x (https://forum.codeigniter.com/forumdisplay.php?fid=17)
+--- Thread: Where can i find more detail on existing bugs? (/showthread.php?tid=62480)



Where can i find more detail on existing bugs? - gonzalioz - 07-19-2015

Hi,

Im working on a new project and would like to use version 3.0. However, when looking in the changeling of the manual (http://www.codeigniter.com/user_guide/changelog.html). I notice there are a few bugs fixes for 3.0 in 3.0.1. Some seem to be quite serious, it is only described in one sentence though, so it might not be.

I'm especially interested in:
3.0.1
Fixed a bug (#3801) - Output Library method _display_cache() incorrectly looked for the last modified time of a directory instead of the cache file.

I will be using static files for caching, so this applies to me I presume. Does this mean caching using files is just pretty much completely broken? Will I have to wait till code igniter 3.0.1 is released or cherry-pick this bug fix?

Is there a page where we can find more info on bugs?

Thank you in advance!


RE: Where can i find more detail on existing bugs? - kenjis - 07-19-2015

#3801 is the issue number of GitHub repository.
You can search on https://github.com/bcit-ci/CodeIgniter

See https://github.com/bcit-ci/CodeIgniter/pull/3801


RE: Where can i find more detail on existing bugs? - Avenirer - 07-19-2015

To answer your question about bug fix. You don't have to wait for version 3.0.1. Whatever you find in the changelog means that you can get it from the Github repository. In other words, you just copy and paste the system directory from Github on your server.


RE: Where can i find more detail on existing bugs? - Narf - 07-20-2015

(07-19-2015, 10:23 PM)Avenirer Wrote: To answer your question about bug fix. You don't have to wait for version 3.0.1. Whatever you find in the changelog means that you can get it from the Github repository. In other words, you just copy and paste the system directory from Github on your server.

Keep in mind that what's on GitHub is still a development version. We try to maintain it stable, but if you use it, do it at your own risk.


RE: Where can i find more detail on existing bugs? - Narf - 07-20-2015

Also, the fact that there's info on 3.0.1 in the official docs is by accident ... that's our mistake. Smile


RE: Where can i find more detail on existing bugs? - gonzalioz - 07-20-2015

@kenjis
Thanks! Very helpful.

@Avenirer, Narf
Yeah, copy pasting code from the development is something I don't want to risk. I'll cherry-pick using git if it's really really necessary.

Haha, k. Yeah, I see it has been removed.