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