Bump version to 0.002008, regen README, update Changes.
[catagits/Gitalist.git] / Changes
1 This file documents the revision history for Perl extension Gitalist.
2
3 0.002008 2011-02-26
4    - Add the ability to provide a whitelist of repos.
5    - Add support for export-ok config option.
6    - Ignore ancient/malformed tags.
7    - Use the correct perl binary we installed against (Tom Hukins)
8
9 0.002007 2011-02-19
10    - Add support for recursively searching for git repos (Dipesh Patel)
11    - Cleaned up model code in Gitalist::Git:: (Zachary Stevens)
12    - Improve POD mark-up, some typos (Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯)
13    - Regenerated README and fixed tests for bootstrapped checkouts.
14    - Add Test::Exception dep.
15
16 0.002006 2010-10-17
17    - Added notes regarding slash encoding in Catalyst
18    - Fixed typo in core.css
19    - Updated formatting in Gitalist.pm
20    - Modified README with more details on FCGI deployment with Apache
21    - Fix broken env includes in script/gitalist*.pl.
22
23 0.002005 2010-08-13
24     - Limit the number of branches/tags listed by default.
25
26 0.002004 2010-08-02
27     - Fix misnamed variable which was giving a syntax error in
28       Gitalist::Controller::Fragment::Ref.
29     - Fix blame view to display syntax highlighted blobs correctly
30       instead of outputting raw HTML.
31
32 0.002003 2010-08-02
33     - Fix for distribution not including script/env causing Makefile.PL
34       and scripts to die.
35
36 0.002002 2010-08-01
37     - Fix dist packaging issues.
38
39 0.002001 2010-07-03
40     - Fix for loadCommitInfo.
41     - Fix tests to work with local-libbery.
42     - Correct example link and FCGI script.
43     - Bumping version and updated Changes appropriately.
44     - Throttle the commit info loading.
45     - Update bootstrapping for local::lib 1.006000.
46     - Fixed author_* barewords in Makefile.PL.
47     - Handle merges in the diff view.
48     - Add script/{bootstrap.pl,env} to MANIFEST.SKIP.
49
50 0.001008 2010-06-03
51    - Add a requires_external_bin for the git command so we won't try running
52      tests unless it's present.
53    - Remove MooseX::MultiMethods as it has been broken by a recent Moose
54      change. The new code is smaller and will be faster.
55    - Add diagnostics to the tests to print out the version of git that
56      people are using.
57    - Make tests which commonly fail with older/different versions of git
58      fail with the output of their git command to make debugging the tests
59      from automated reports possible.
60
61 0.001007 2010-05-15
62     - Set the use_request_uri_for_path configuration variable to be compatible
63       with Catalyst 5.80024.
64
65 0.001006 2010-05-13
66     - Fix Catalyst::Action::REST dependency (there wasn't one previously)
67     - Depend on latest Catalyst::View::TT due to a previous bad version
68       breaking things.
69     - Add render_die => 1 in the View::TT config as we do want real exceptions
70       when we call ->render ourselves.
71
72 0.001005 2010-05-11
73     - Depend on latest MX::Declare to fix issues for people who upgrade
74       MooseX::Types::Structured to a newer version.
75     - Add some padding below, so file icons are not chopped off
76     - Updated favicon to cope with dark grey backgrounds
77
78 0.001004 2010-05-06
79     - Remove unneeded dependencies:
80       - XML::OPML::SimpleGen
81       - XML::Atom
82       - XML::RSS
83     - Fixed author_* barewords in Makefile.PL so that users checking out from
84       git without the author modules works correctly.
85
86 0.001003 2010-04-21
87     - Added folder / file icons in tree view (Foxtons)
88     - Added favicon
89     - Fix for non uri_for hard coded links for running at not root locations.
90       (RT#56747)
91
92 0.001002 2010-04-20
93     - Fix link for the project_index action.
94     - Add missing images to MANIFEST.
95
96 0.001001 2010-04-15
97     - Bumping version number to a format I understand, thanks to mst for
98       pointing me in the right direction and t0m for the new number.
99     - Cleaned up the search results - removed search from the homepage as
100       wasn't working (Foxtons).
101     - Provide a link for an atom entry. switch mode=xml to type=xhtml (Brian
102       Cassidy).
103
104 0.000006.1 2010-04-14
105     - Documentation fixes for the --repo-dir flag (Dagfinn Ilmari Mannsåker).
106
107 0.000006 2010-04-10
108     - Major frontend redesign, thanks to ranguard and the web designers at
109       Foxtons for making this happen.
110     - Major URI overhaul, Gitalist has gone from old gitweb style CGI
111       parameters to proper URIs, however the old URIs are still supported
112       and will redirect appropriately (Tomas Doran).
113     - With the URI overhaul also came breaking up actions into fragments
114       for use with Catalyst::View::Component::SubInclude.
115     - BIG BREAKING CHANGE - Gitalist::Model::GitRepos has been renamed
116       Gitalist::Model::CollectionOfRepos. You need to fix your config and
117       if you have actually installed Gitalist - remove the old model file.
118     - Bump required version of Git::PurePerl for Encoding fixes.
119     - Fix Makefile.PL to not need release deps when checking out of Git.
120
121 0.000005 2010-01-09
122     - Require Git::PurePerl for Win32 compatibility.
123     - Switch to IPC::Run::start for streamed mode, fixing RT#52658
124       and the tests with FreeBSD.
125     - Require new FCGI release in the FCGI script for upstream bug fixes.
126     - Fix tests with older versions of git.
127     - Allow the model to be configured with a list of repositories rather
128       then a directory containing repositories.
129     - Fix syntax highlighting CSS link
130     - Add per line link for previous version of a line in blame.
131
132 0.000004 2009-12-19
133     - Support being able to pass a list of repositories to view via
134       configuration, rather than having a static directory.
135     - Installation and configuration documentation has been enhanced.
136     - Project has been renamed Repository to correspond with normal git
137       terminology.
138     - Repos has been refactored into a CollectionOfRepositories role
139       and two differnet concrete implementations (the Catalyst model
140       chooses which type to build based on the config).
141     - Remove all tabs and fix no tabs test (Dagfinn Ilmari Mannsåker)
142     - Decode getpwuid values correctly (Dagfinn Ilmari Mannsåker)
143     - Generate correct provides information in META.yml so that search.cpan
144       indexes the classes contained in Gitalist correctly.
145     - Dropped the dependency on File::Stat::ModeString
146
147 0.000003 2009-12-09
148     - Officially switch repository to Shadowcat
149     - Officially switch bug tracker to rt.cpan.org
150     - Start streamlining and generally rejiging the layout.
151     - Hacked in syntax highlighting to the blame view.
152     - Further tweaks to the blame view, making it more informative.
153     - Move all POD below the code, for ::Repo and ::Project.
154
155 0.000002 2009-12-06
156    - Add documentation about how to configure a Gitalist instance.
157    - Fix so that invalid repository directory will be detected at application
158      startup and a helpful error message will be displayed.
159    - Add --repos_dir command line parameter to all of the scripts which can
160      be used to force the repository directory, overriding config and
161      environment.
162    - Add GITALIST_REPOS_DIR environment variable which will determine the
163      repository path (overriding normal config) if set.
164    - Change so that no default repos path is in the config when installed from
165      CPAN (when checked out of git, behavior of browsing AppDir/../ is
166      maintained).
167    - Do not allow directory traversal via the p param.
168
169 0.000001
170    - No changes since last dev release.
171
172 0.000000_02  UNRELEASED
173    - Fixed history action, other minor cleanups.
174
175 0.000000_01  UNRELEASED
176    - Initial release to CPAN