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