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