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