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