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