And fix
[gitmo/MooseX-Getopt.git] / ChangeLog
1 Revision history for Perl extension MooseX-Getopt
2
3   * MooseX::Getopt::Basic
4    - Fix bug with attribute names containing upper case letters.
5
6 0.25 Thu. Nov 26 2009
7   * MooseX::Getopt
8    - Split out the warnings and the exception from Getopt so that they can be
9      overridden.
10    - Split out calling ->die on Getopt::Long::Descriptive::Usage so that
11      it can be overridden.
12    - Properly split roles as promised in 0.22.
13
14 0.24 Fri. Oct  23 2009
15   * MooseX::Getopt
16     - Fix bug with mixed case attribute names (MAROS)
17
18 0.23 Fri. Oct  02 2009
19   * MooseX::Getopt
20     - Allow the config file to return a code ref which is called to return
21       the config file location (Gordon Irving)
22
23 0.22 Sat. Sept 05 2009
24     - Require GLD 0.077 for RT#49427 as some versions are broken
25
26   * MooseX::Getopt
27     - Split into MooseX::Getopt::Basic (without the G::L::Descriptive support)
28     and MooseX::Getopt::GLD.
29
30   * Tests
31      - Ensure author tests get run when in author mode.
32
33 0.21 Thu. Aug 27 2009
34   * MooseX::Getopt
35     - Enable and document the argv parameter to the constructor.
36     - Applied patches in RT43200 and RT43255
37     - Applied patch from RT#47766 to not die if SimpleConfig cannot find the
38       default config file name.
39
40 0.20 Wed. July 9 2009
41         - fix MANIFEST.SKIP to avoid double-packaging
42
43 0.19 Wed. July 8 2009
44   * MooseX::Getopt
45     - Fix Getopt config spec for --configfile (t0m)
46     - Add support for --usage/--help/--? (drew@drewtaylor.com)
47     - Fix new_with_options to accept a hashref (DOUGDUDE@cpan.org)
48
49   * Tests
50     - Fix warning from tests with new Moose (t0m)
51     - Fix tests on Win32 from RT#44909 (taro-nishino)
52
53 0.18 Thu. April 9 2009
54   * MooseX::Getopt::Dashes
55     - New module, for converting undercores to dashes (ilmari)
56
57 0.17 Wed. April 8 2009
58   * MooseX::Getopt
59     - work with latest Moose (hdp)
60
61         ~ unify module version numbers with dist version (hdp)
62
63 0.16 Tue. February 17 2009
64         * t/
65                 - run pod tests only if RELEASE_TESTING env var is set
66
67 0.15 Sat. July 26 2008
68         * MooseX::Getopt::OptionTypeMap
69           - Accept type constraint objects in the type mapping, not just names
70
71 0.14 Thurs. July 10, 2008
72         * MooseX::Getopt::OptionTypeMap
73           - Change 'Float' which doesn't exist to 'Num' which does (perigrin)
74          
75         * MooseX::Getopt
76           - removed the default handling with Getopt::Long::Descriptive
77             as it would override constructor parameters and that was 
78             bad. Besides, Moose will just DWIM on this anyway. (stevan)
79             - added test for it (stevan)
80
81     * t/
82       - fixed Getopt::Long::Descriptive specific tests to only run 
83         if Getopt::Long::Descriptive is there (stevan)
84
85 0.13 Saturday, May 24, 2008
86     * MooseX::Getopt
87       - Commandline option shouldn't be required in the
88         case that the given "required" attribute has
89         been loaded from config (MooseX::ConfigFromFile)
90       - Support for MooseX::ConfigFromFile shouldn't require
91         that role be added at the same level as Getopt.
92       - fixed miscapitalization of NoGetopt in the docs
93       - added links to the traits in the docs
94       
95     ~ converted to Module::Install instead of 
96       Module::Build
97
98 0.12 Fri. March 14, 2008
99     ~~ updated copyright dates ~~
100
101     - upped the Moose dependency to support
102       the custom metaclass traits
103     - added Getopt::Long::Descriptive as an
104       optional dependency
105
106     * MooseX::Getopt
107       MooseX::Getopt::Meta::Attribute
108       MooseX::Getopt::Meta::Attribute::Trait
109       MooseX::Getopt::Meta::Attribute::NoGetopt
110       MooseX::Getopt::Meta::Attribute::Trait::NoGetopt
111       - added support for custom metaclass traits
112         - added tests for this
113
114 0.11 Sun. Jan. 27, 2008
115     * MooseX::Getopt
116       - Commandline option shouldn't be required in the
117         case that the given "required" attribute has
118         a default or a builder method.
119
120 0.10 Wed. Jan. 23, 2008
121     * MooseX::Getopt
122       - Support default configfile attribute when
123         used with MooseX::ConfigFromFile-based roles
124
125 0.09 Tues. Jan. 22, 2008
126     * MooseX::Getopt
127       - Use Getopt::Long::Descriptive if it's available
128
129 0.08 Tues. Dec. 8, 2007
130     * MooseX::Getopt
131       - Added support for configfile loading via
132         MooseX::ConfigFromFile-based roles with
133         the -configfile commandline option.
134
135 0.07 Tues. Dec. 4, 2007
136     * MooseX::Getopt::Meta::Attribute::NoGetopt
137       - fixed miscapitalization of NoGetopt in the docs
138
139 0.06 Fri. Nov. 23, 2007
140     * MooseX::Getopt
141       - refactored &new_with_option some so that
142         this will work better with other Getopt
143         modules (nuffin)
144
145     + MooseX::Getopt::Strict
146       - version of MooseX::Getopt which requires
147         you to specify which attributes you want
148         processed explicity
149         - added tests for this
150
151     + MooseX::Getopt::Meta::Attribute::NoGetopt
152       - a custom meta-attribute which can be
153         used to specify that an attribute should
154         not be processed
155         - added tests for this
156
157 0.05 Tues. July 3, 2007
158     * MooseX::Getopt::OptionTypeMap
159       - added some checks to make sure that the type
160         constraints are found properly and to give
161         better diagnostics
162
163 0.04 Tues. June 26, 2007
164     * MooseX::Getopt::OptionTypeMap
165       - Added support for subtype constraint inference
166         from parent types
167         - added tests and docs for this
168     * MooseX::Getopt
169       - Added extra_argv attribute
170         - added tests and docs for this
171       - We now unmangle the Getopt::Long-mangled @ARGV
172         - added tests and docs for this
173       - We now throw an exception from new_with_options
174         if Getopt fails due to bad arguments.
175         - added tests and docs for this
176
177 0.03 Wed. May 2nd, 2007
178     ~ downgraded the Getopt version requirement
179       to 2.35 as per RT #26844
180     ~ adding blblack to the authors list
181
182     * MooseX::Getopt
183       - doc update to show simple way to of excluding
184         an attribute, but not having accessors with
185         underscores (thanks to Zaba on #moose for this)
186     * MooseX::Getopt::Meta::Attribute
187       - tightening up the type constraint in the
188         cmd_alias coercion to only accept strings
189
190 0.02 Friday, April 6, 2007
191     * MooseX::Getopt
192       - added the ARGV attribute (thanks to blblack)
193         - added tests and docs for this
194
195     * MooseX::Getopt::Meta::Attribute
196       - added the cmd_aliases attribute (thanks to blblack)
197         - added tests and docs for this
198       - added support for Moose 0.19's custom
199         attribute metaclass alias registry.
200         - added tests and docs for this
201
202 0.01 Friday, March 9, 2007
203     - module released to CPAN