MooseX-Getopt-0.51
[gitmo/MooseX-Getopt.git] / Changes
1 Revision history for Perl extension MooseX-Getopt
2
3 {{$NEXT}}
4
5 0.51      2013-01-27 09:38:11 PST-0800
6  - missing test prereqs now declared (thanks for the automated reports, David
7    Cantrell!)
8
9 0.50      2012-12-27 00:20:56 PST-0800
10  - unbreak Catalyst::Runtime tests (etc) by keeping _getopt_full_usage in the
11    callstack. (RT#82249)
12
13 0.49      2012-12-26 10:13:41 PST-0800
14  - silence a warning in tests if the user does not have YAML::XS installed
15    (thanks for the report, Getty!)
16  - fix off-by-one issues in test plans if optional requirements are not met
17
18 0.48      2012-12-23 18:08:04 PST-0800
19  - documentation and tests amended to prefer usage of 'trait' over 'metaclass'
20    as much as possible
21  - print_usage_text() exposed as a public method, to make it easier for
22    consuming classes to modify the behaviour when usage text is printed
23
24 0.47      2012-08-30 16:37:59 PDT-0700
25  - re-release to remove double $VERSION declarations
26
27 0.46      2012-08-30 15:17:28 PDT-0700
28  - -h is also treated as a --help option
29
30 0.45      2012-05-13 09:49:58 PDT-0700
31  - use Path::Class in test to avoid test failures on MSWin32 with filename
32    construction
33
34 0.44      2012-05-11 10:44:48 PDT-0700
35  - now respecting value of configfile passed to the constructor, when used in
36    conjunction with MooseX::ConfigFromFile. (Karen Etheridge)
37
38 0.43      2012-04-29 09:35:52 PDT-0700
39  - re-release as non-trial.
40
41 0.42-TRIAL 2012-04-15 09:13:05 PDT-0700
42  - reformatted the Changes file, with the help of CPAN::Changes, to something
43    a little more standard.
44  - more release-only tests added
45
46 0.41-TRIAL 2012-04-14 18:36:00 PDT-0700
47  - Now bails with exit status 0, rather than dying, when printing
48    requested --usage/--help information (usage printed via invalid arguments
49    will still die, however). (Karen Etheridge)
50
51 0.40      2012-04-13
52  - Fix tests when MooseX::ConfigFromFile is installed, with
53    Getopt::Long::Descriptive >= 0.091. RT#76287
54  - Pod fix from debian. Salvatore Bonaccorso <carnil@debian.org> RT#74681
55  - Spelling fix from debian. Jonathan Yu <jawnsy@cpan.org> RT#74681
56
57 0.39      2012-02-03
58  - Fix argument parsing in process_argv when used with ConfigFromFile so
59    that -v can be used as expected, rather than being grabbed as --version
60
61 0.38      2011-12-23
62  - More documentation on Getopt::Long settings and how they alter this
63    role's behaviour, in particular with regards to extra_argv capturing.
64    (Karen Etheridge)
65
66 0.37      2011-03-30
67  - Fix missing dependency. (RT#67077)
68
69 0.36      2011-03-29
70  - Fix dist.ini 'Prereq' into 'Prereqs' (Damien Krotkine)
71  - MooseX::Getopt::GLD
72    - change it to a MooseX::Role::Parameterized, so that it accepts
73      'getopt_conf' parameter (Damien Krotkine)
74
75 0.35      2011-02-09
76  - Fix missed change from Test::Exception to Test::Fatal
77
78 0.34      2011-02-08
79  - The test suite now uses Test::Fatal instead of Test::Exception. (Karen
80    Etheridge)
81  - Move most of new_with_options logic into separate publically accessible
82    process_argv method, so that arg processing can be done without actually
83    creating object (Jonathan Swartz)
84
85 0.33      2010-08-26
86  - Remove Test::Most from newly added test (RT#60766)
87
88 0.32      2010-08-26
89  - Fix handling of Union types (RT#58417)
90
91 0.31      2010-07-07
92  - Fix issue causing tests to fail if MooseX::SimpleConfig isn't installed.
93
94 0.30      2010-07-06
95  - MooseX::Getopt::Basic
96    - uses attribute insertion order when determining the order in which
97      options are documented in the usage (e.g. in $obj->usage->text). (Karen
98      Etheridge)
99
100  - MooseX::Getopt::Basic
101    - store the usage object to the usage attr (RT#58715)
102    - properly checks whether the *option* --help, --usage, or --? were used,
103      rather than the attribute 'help', 'usage' or '?' were set
104  - MooseX::Getopt::GLD
105    - add the usage attribute for storing the Getopt::Long::Descriptive::Usage
106      object, and the help attribute for storing --help, --usage and --? state
107  (RT#47865, RT#56783, RT#52474).  (Karen Etheridge)
108
109  - MooseX::Getopt::Basic
110    - Disable auto_help config in Getopt::Long, to avoid calling into pod2usage
111      when the --help option is used while MooseX::ConfigFromFile is in use
112      (the intent is just to fetch the value of the configfile option)
113      (RT#57683). (Karen Etheridge)
114
115 0.29      2010-06-15
116  - Fix repository metadata. Thanks Robert Bohne for noticing!
117
118 0.28      2010-06-05
119  - MooseX::Getopt::Strict
120    - Make it work with Getopt attribute traits in addition to attribute
121      metaclasses.
122  - Switch from Module::Install to Dist::Zilla.
123
124 0.27      2010-02-10
125  - Makefile.PL
126    - Bump dependency to Getopt::Long::Descriptive to 0.081 in an attempt to
127      avoid test failures.
128  - MooseX::Getopt::Dashes
129    - Document that using a cmd_flag argument to attributes can be used to
130      override the tr/_/-/ replacement ::Dashes does on attribute names
131
132 0.26      2009-12-10
133  - MooseX::Getopt::Basic
134    - Fix bug with attribute names containing upper case letters.
135  - Test suite
136    - Add t/106_no_ignore_case.t for testing the compatibility with
137      no_ignore_case
138
139 0.25      2009-11-26
140  - MooseX::Getopt
141    - Split out the warnings and the exception from Getopt so that they can be
142      overridden.
143   - Split out calling ->die on Getopt::Long::Descriptive::Usage so that it can
144     be overridden.
145    - Properly split roles as promised in 0.22.
146
147 0.24      2009-10-23
148  - MooseX::Getopt
149    - Fix bug with mixed case attribute names (MAROS)
150
151 0.23      2009-10-02
152  - MooseX::Getopt
153    - Allow the config file to return a code ref which is called to return the
154      config file location (Gordon Irving)
155
156 0.22      2009-09-05
157  - Require GLD 0.077 for RT#49427 as some versions are broken
158  - MooseX::Getopt
159    - Split into MooseX::Getopt::Basic (without the G::L::Descriptive support)
160      and MooseX::Getopt::GLD.
161  - Tests
162    - Ensure author tests get run when in author mode.
163
164 0.21      2009-08-27
165  - MooseX::Getopt
166    - Enable and document the argv parameter to the constructor.
167    - Applied patches in RT43200 and RT43255
168    - Applied patch from RT#47766 to not die if SimpleConfig cannot find the
169      default config file name.
170
171 0.20      2009-07-09
172  - fix MANIFEST.SKIP to avoid double-packaging
173
174 0.19      2009-07-08
175  - MooseX::Getopt
176    - Fix Getopt config spec for --configfile (t0m)
177    - Add support for --usage/--help/--? (drew@drewtaylor.com)
178    - Fix new_with_options to accept a hashref (DOUGDUDE@cpan.org)
179  - Tests
180    - Fix warning from tests with new Moose (t0m)
181    - Fix tests on Win32 from RT#44909 (taro-nishino)
182
183 0.18      2009-04-09
184  - MooseX::Getopt::Dashes
185    - New module, for converting undercores to dashes (ilmari)
186
187 0.17      2009-04-08
188  - MooseX::Getopt
189    - work with latest Moose (hdp)
190    - unify module version numbers with dist version (hdp)
191
192 0.16      2009-02-17
193  - Tests
194    - run pod tests only if RELEASE_TESTING env var is set
195
196 0.15      2008-07-26
197  - MooseX::Getopt::OptionTypeMap
198    - Accept type constraint objects in the type mapping, not just names
199
200 0.14      2008-07-10
201  - MooseX::Getopt::OptionTypeMap
202    - Change 'Float' which doesn't exist to 'Num' which does (perigrin)
203  - MooseX::Getopt
204    - removed the default handling with Getopt::Long::Descriptive as it would
205      override constructor parameters and that was bad. Besides, Moose will
206      just DWIM on this anyway. (stevan)
207      - added test for it (stevan)
208  - Tests
209    - fixed Getopt::Long::Descriptive specific tests to only run if
210      Getopt::Long::Descriptive is there (stevan)
211
212 0.13      2008-05-24
213  - MooseX::Getopt
214    - Commandline option shouldn't be required in the case that the given
215      "required" attribute has been loaded from config (MooseX::ConfigFromFile)
216    - Support for MooseX::ConfigFromFile shouldn't require that role be added
217      at the same level as Getopt.
218    - fixed miscapitalization of NoGetopt in the docs
219    - added links to the traits in the docs
220  - converted to Module::Install instead of Module::Build
221
222 0.12      2008-03-14
223  - updated copyright dates
224  - upped the Moose dependency to support the custom metaclass traits
225  - added Getopt::Long::Descriptive as an optional dependency
226  - MooseX::Getopt MooseX::Getopt::Meta::Attribute
227    MooseX::Getopt::Meta::Attribute::Trait
228    MooseX::Getopt::Meta::Attribute::NoGetopt
229    MooseX::Getopt::Meta::Attribute::Trait::NoGetopt
230    - added support for custom metaclass traits
231      - added tests for this
232
233 0.11      2008-01-27
234  - MooseX::Getopt
235    - Commandline option shouldn't be required in the case that the given
236      "required" attribute has a default or a builder method.
237
238 0.10      2008-01-23
239  - MooseX::Getopt
240    - Support default configfile attribute when used with
241      MooseX::ConfigFromFile-based roles
242
243 0.09      2008-01-22
244  - MooseX::Getopt
245    - Use Getopt::Long::Descriptive if it's available
246
247 0.08      2007-12-08
248  - MooseX::Getopt
249    - Added support for configfile loading via MooseX::ConfigFromFile-based
250      roles with the -configfile commandline option.
251
252 0.07      2007-12-04
253  - MooseX::Getopt::Meta::Attribute::NoGetopt
254    - fixed miscapitalization of NoGetopt in the docs
255
256 0.06      2007-11-23
257  - MooseX::Getopt
258    - refactored &new_with_option some so that this will work better with other
259      Getopt modules (nuffin)
260  - MooseX::Getopt::Strict
261    - version of MooseX::Getopt which requires you to specify which attributes
262      you want processed explicity
263      - added tests for this
264  - MooseX::Getopt::Meta::Attribute::NoGetopt
265    - a custom meta-attribute which can be used to specify that an attribute
266      should not be processed
267      - added tests for this
268
269 0.05      2007-07-03
270  - MooseX::Getopt::OptionTypeMap
271    - added some checks to make sure that the type constraints are found
272      properly and to give better diagnostics
273
274 0.04      2007-06-26
275  - MooseX::Getopt::OptionTypeMap
276    - Added support for subtype constraint inference from parent types
277      - added tests and docs for this
278  - MooseX::Getopt
279    - Added extra_argv attribute
280      - added tests and docs for this
281    - We now unmangle the Getopt::Long-mangled @ARGV
282      - added tests and docs for this
283    - We now throw an exception from new_with_options if Getopt fails due to
284      bad arguments.
285      - added tests and docs for this
286
287 0.03      2007-05-02
288  - downgraded the Getopt version requirement to 2.35 as per RT #26844
289  - adding blblack to the authors list
290  - MooseX::Getopt
291    - doc update to show simple way to of excluding an attribute, but not
292      having accessors with underscores (thanks to Zaba on #moose for this)
293  - MooseX::Getopt::Meta::Attribute
294    - tightening up the type constraint in the cmd_alias coercion to only
295      accept strings
296
297 0.02      2007-04-06
298  - MooseX::Getopt
299    - added the ARGV attribute (thanks to blblack)
300      - added tests and docs for this
301  - MooseX::Getopt::Meta::Attribute
302    - added the cmd_aliases attribute (thanks to blblack)
303      - added tests and docs for this
304    - added support for Moose 0.19's custom attribute metaclass alias registry.
305      - added tests and docs for this
306
307 0.01      2007-03-09
308  - module released to CPAN