avoid MSWin32 test failures
[gitmo/MooseX-Getopt.git] / Changes
CommitLineData
5dac17c3 1Revision history for Perl extension MooseX-Getopt
eab3d04a 2
894a791c 3{{$NEXT}}
395546ae 4 - use Path::Class in test to avoid test failures on MSWin32 with filename
5 construction
278175f8 6
70.44 2012-05-11 10:44:48 PDT-0700
0a386894 8 - now respecting value of configfile passed to the constructor, when used in
9 conjunction with MooseX::ConfigFromFile. (Karen Etheridge)
3c2e131f 10
110.43 2012-04-29 09:35:52 PDT-0700
abb6efc0 12 - re-release as non-trial.
1ebd1980 13
309e2fb7 140.42-TRIAL 2012-04-15 09:13:05 PDT-0700
44c73832 15 - reformatted the Changes file, with the help of CPAN::Changes, to something
16 a little more standard.
8582c924 17 - more release-only tests added
44c73832 18
309e2fb7 190.41-TRIAL 2012-04-14 18:36:00 PDT-0700
44c73832 20 - Now bails with exit status 0, rather than dying, when printing
b29aeb85 21 requested --usage/--help information (usage printed via invalid arguments
22 will still die, however). (Karen Etheridge)
44c73832 23
ab59e697 240.40 2012-04-13
44c73832 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
ab59e697 300.39 2012-02-03
44c73832 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
ab59e697 340.38 2011-12-23
44c73832 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
ab59e697 390.37 2011-03-30
44c73832 40 - Fix missing dependency. (RT#67077)
41
ab59e697 420.36 2011-03-29
44c73832 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
ab59e697 480.35 2011-02-09
44c73832 49 - Fix missed change from Test::Exception to Test::Fatal
50
ab59e697 510.34 2011-02-08
44c73832 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
ab59e697 580.33 2010-08-26
44c73832 59 - Remove Test::Most from newly added test (RT#60766)
60
ab59e697 610.32 2010-08-26
44c73832 62 - Fix handling of Union types (RT#58417)
63
ab59e697 640.31 2010-07-07
44c73832 65 - Fix issue causing tests to fail if MooseX::SimpleConfig isn't installed.
66
ab59e697 670.30 2010-07-06
44c73832 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
880.29 2010-06-15
89 - Fix repository metadata. Thanks Robert Bohne for noticing!
90
910.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
970.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
1050.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
1120.25 2009-11-26
113 - MooseX::Getopt
2860acac 114 - Split out the warnings and the exception from Getopt so that they can be
115 overridden.
44c73832 116 - Split out calling ->die on Getopt::Long::Descriptive::Usage so that it can
117 be overridden.
9b7f80a2 118 - Properly split roles as promised in 0.22.
dfad990c 119
44c73832 1200.24 2009-10-23
121 - MooseX::Getopt
122 - Fix bug with mixed case attribute names (MAROS)
123
1240.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
ab59e697 1290.22 2009-09-05
44c73832 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
1370.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
ab59e697 1440.20 2009-07-09
44c73832 145 - fix MANIFEST.SKIP to avoid double-packaging
146
ab59e697 1470.19 2009-07-08
44c73832 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
ab59e697 1560.18 2009-04-09
44c73832 157 - MooseX::Getopt::Dashes
158 - New module, for converting undercores to dashes (ilmari)
159
ab59e697 1600.17 2009-04-08
44c73832 161 - MooseX::Getopt
162 - work with latest Moose (hdp)
163 - unify module version numbers with dist version (hdp)
164
ab59e697 1650.16 2009-02-17
44c73832 166 - Tests
167 - run pod tests only if RELEASE_TESTING env var is set
168
ab59e697 1690.15 2008-07-26
44c73832 170 - MooseX::Getopt::OptionTypeMap
171 - Accept type constraint objects in the type mapping, not just names
172
ab59e697 1730.14 2008-07-10
44c73832 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
ab59e697 1850.13 2008-05-24
44c73832 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
ab59e697 1950.12 2008-03-14
44c73832 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
ab59e697 2060.11 2008-01-27
44c73832 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
ab59e697 2110.10 2008-01-23
44c73832 212 - MooseX::Getopt
213 - Support default configfile attribute when used with
214 MooseX::ConfigFromFile-based roles
215
ab59e697 2160.09 2008-01-22
44c73832 217 - MooseX::Getopt
218 - Use Getopt::Long::Descriptive if it's available
219
ab59e697 2200.08 2007-12-08
44c73832 221 - MooseX::Getopt
222 - Added support for configfile loading via MooseX::ConfigFromFile-based
223 roles with the -configfile commandline option.
224
ab59e697 2250.07 2007-12-04
44c73832 226 - MooseX::Getopt::Meta::Attribute::NoGetopt
227 - fixed miscapitalization of NoGetopt in the docs
228
ab59e697 2290.06 2007-11-23
44c73832 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
ab59e697 2420.05 2007-07-03
44c73832 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
ab59e697 2470.04 2007-06-26
44c73832 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
ab59e697 2600.03 2007-05-02
44c73832 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
ab59e697 2700.02 2007-04-06
44c73832 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
ab59e697 2800.01 2007-03-09
44c73832 281 - module released to CPAN