Merge branch 'topic/no_auto_help' of git.moose.perl.org:MooseX-Getopt into topic...
[gitmo/MooseX-Getopt.git] / ChangeLog
1 Revision history for Perl extension MooseX-Getopt
2
3   * MooseX::Getopt::Basic
4     - Disable auto_help config in Getopt::Long, to avoid calling into
5     pod2usage when the --help option is used while MooseX::ConfigFromFile
6     is in use (the intent is just to fetch the value of the configfile
7     option).  (RT#57683) (Karen Etheridge)
8
9 0.29 Tue. Jun 15 2010
10   * Fix repository metadata. Thanks Robert Bohne for noticing!
11
12 0.28 Sat. Jun 05 2010
13   * MooseX::Getopt::Strict
14     - Make it work with Getopt attribute traits in addition to
15       attribute metaclasses.
16
17   * Switch from Module::Install to Dist::Zilla.
18
19 0.27 Sun. Feb 10 2010
20   * Makefile.PL:
21     - Bump dependency to Getopt::Long::Descriptive to 0.081 in an attempt to
22       avoid test failures.
23
24   * MooseX::Getopt::Dashes
25     - Document that using a cmd_flag argument to attributes can be used to
26       override the tr/_/-/ replacement ::Dashes does on attribute names
27
28 0.26 Thu. Dec 10 2009
29   * MooseX::Getopt::Basic
30     - Fix bug with attribute names containing upper case letters.
31   * Test suite:
32     - Add t/106_no_ignore_case.t for testing the compatibility with
33       no_ignore_case
34
35 0.25 Thu. Nov 26 2009
36   * MooseX::Getopt
37    - Split out the warnings and the exception from Getopt so that they can be
38      overridden.
39    - Split out calling ->die on Getopt::Long::Descriptive::Usage so that
40      it can be overridden.
41    - Properly split roles as promised in 0.22.
42
43 0.24 Fri. Oct  23 2009
44   * MooseX::Getopt
45     - Fix bug with mixed case attribute names (MAROS)
46
47 0.23 Fri. Oct  02 2009
48   * MooseX::Getopt
49     - Allow the config file to return a code ref which is called to return
50       the config file location (Gordon Irving)
51
52 0.22 Sat. Sept 05 2009
53     - Require GLD 0.077 for RT#49427 as some versions are broken
54
55   * MooseX::Getopt
56     - Split into MooseX::Getopt::Basic (without the G::L::Descriptive support)
57     and MooseX::Getopt::GLD.
58
59   * Tests
60      - Ensure author tests get run when in author mode.
61
62 0.21 Thu. Aug 27 2009
63   * MooseX::Getopt
64     - Enable and document the argv parameter to the constructor.
65     - Applied patches in RT43200 and RT43255
66     - Applied patch from RT#47766 to not die if SimpleConfig cannot find the
67       default config file name.
68
69 0.20 Wed. July 9 2009
70     - fix MANIFEST.SKIP to avoid double-packaging
71
72 0.19 Wed. July 8 2009
73   * MooseX::Getopt
74     - Fix Getopt config spec for --configfile (t0m)
75     - Add support for --usage/--help/--? (drew@drewtaylor.com)
76     - Fix new_with_options to accept a hashref (DOUGDUDE@cpan.org)
77
78   * Tests
79     - Fix warning from tests with new Moose (t0m)
80     - Fix tests on Win32 from RT#44909 (taro-nishino)
81
82 0.18 Thu. April 9 2009
83   * MooseX::Getopt::Dashes
84     - New module, for converting undercores to dashes (ilmari)
85
86 0.17 Wed. April 8 2009
87   * MooseX::Getopt
88     - work with latest Moose (hdp)
89
90     ~ unify module version numbers with dist version (hdp)
91
92 0.16 Tue. February 17 2009
93     * t/
94         - run pod tests only if RELEASE_TESTING env var is set
95
96 0.15 Sat. July 26 2008
97     * MooseX::Getopt::OptionTypeMap
98       - Accept type constraint objects in the type mapping, not just names
99
100 0.14 Thurs. July 10, 2008
101     * MooseX::Getopt::OptionTypeMap
102       - Change 'Float' which doesn't exist to 'Num' which does (perigrin)
103
104     * MooseX::Getopt
105       - removed the default handling with Getopt::Long::Descriptive
106         as it would override constructor parameters and that was
107         bad. Besides, Moose will just DWIM on this anyway. (stevan)
108         - added test for it (stevan)
109
110     * t/
111       - fixed Getopt::Long::Descriptive specific tests to only run
112         if Getopt::Long::Descriptive is there (stevan)
113
114 0.13 Saturday, May 24, 2008
115     * MooseX::Getopt
116       - Commandline option shouldn't be required in the
117         case that the given "required" attribute has
118         been loaded from config (MooseX::ConfigFromFile)
119       - Support for MooseX::ConfigFromFile shouldn't require
120         that role be added at the same level as Getopt.
121       - fixed miscapitalization of NoGetopt in the docs
122       - added links to the traits in the docs
123
124     ~ converted to Module::Install instead of
125       Module::Build
126
127 0.12 Fri. March 14, 2008
128     ~~ updated copyright dates ~~
129
130     - upped the Moose dependency to support
131       the custom metaclass traits
132     - added Getopt::Long::Descriptive as an
133       optional dependency
134
135     * MooseX::Getopt
136       MooseX::Getopt::Meta::Attribute
137       MooseX::Getopt::Meta::Attribute::Trait
138       MooseX::Getopt::Meta::Attribute::NoGetopt
139       MooseX::Getopt::Meta::Attribute::Trait::NoGetopt
140       - added support for custom metaclass traits
141         - added tests for this
142
143 0.11 Sun. Jan. 27, 2008
144     * MooseX::Getopt
145       - Commandline option shouldn't be required in the
146         case that the given "required" attribute has
147         a default or a builder method.
148
149 0.10 Wed. Jan. 23, 2008
150     * MooseX::Getopt
151       - Support default configfile attribute when
152         used with MooseX::ConfigFromFile-based roles
153
154 0.09 Tues. Jan. 22, 2008
155     * MooseX::Getopt
156       - Use Getopt::Long::Descriptive if it's available
157
158 0.08 Tues. Dec. 8, 2007
159     * MooseX::Getopt
160       - Added support for configfile loading via
161         MooseX::ConfigFromFile-based roles with
162         the -configfile commandline option.
163
164 0.07 Tues. Dec. 4, 2007
165     * MooseX::Getopt::Meta::Attribute::NoGetopt
166       - fixed miscapitalization of NoGetopt in the docs
167
168 0.06 Fri. Nov. 23, 2007
169     * MooseX::Getopt
170       - refactored &new_with_option some so that
171         this will work better with other Getopt
172         modules (nuffin)
173
174     + MooseX::Getopt::Strict
175       - version of MooseX::Getopt which requires
176         you to specify which attributes you want
177         processed explicity
178         - added tests for this
179
180     + MooseX::Getopt::Meta::Attribute::NoGetopt
181       - a custom meta-attribute which can be
182         used to specify that an attribute should
183         not be processed
184         - added tests for this
185
186 0.05 Tues. July 3, 2007
187     * MooseX::Getopt::OptionTypeMap
188       - added some checks to make sure that the type
189         constraints are found properly and to give
190         better diagnostics
191
192 0.04 Tues. June 26, 2007
193     * MooseX::Getopt::OptionTypeMap
194       - Added support for subtype constraint inference
195         from parent types
196         - added tests and docs for this
197     * MooseX::Getopt
198       - Added extra_argv attribute
199         - added tests and docs for this
200       - We now unmangle the Getopt::Long-mangled @ARGV
201         - added tests and docs for this
202       - We now throw an exception from new_with_options
203         if Getopt fails due to bad arguments.
204         - added tests and docs for this
205
206 0.03 Wed. May 2nd, 2007
207     ~ downgraded the Getopt version requirement
208       to 2.35 as per RT #26844
209     ~ adding blblack to the authors list
210
211     * MooseX::Getopt
212       - doc update to show simple way to of excluding
213         an attribute, but not having accessors with
214         underscores (thanks to Zaba on #moose for this)
215     * MooseX::Getopt::Meta::Attribute
216       - tightening up the type constraint in the
217         cmd_alias coercion to only accept strings
218
219 0.02 Friday, April 6, 2007
220     * MooseX::Getopt
221       - added the ARGV attribute (thanks to blblack)
222         - added tests and docs for this
223
224     * MooseX::Getopt::Meta::Attribute
225       - added the cmd_aliases attribute (thanks to blblack)
226         - added tests and docs for this
227       - added support for Moose 0.19's custom
228         attribute metaclass alias registry.
229         - added tests and docs for this
230
231 0.01 Friday, March 9, 2007
232     - module released to CPAN