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