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