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