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