Upstream changes:
0.20 2014-09-06 23:04:12Z
- Moose earlier than 2.0300 had a broken ->does method, which called methods
on a class's meta when it might not be initialized (RT#98424)
0.19 2014-06-17 04:57:07Z
- more comprehensive testing with Moo/Mouse/Moose
- fixed cleaning of constants
0.18 2014-06-14 20:12:59Z
- better method detection for Mouse (github #4, Graham Knop)
0.17 2014-06-10 20:13:14Z
- Add -except to import options. This allows you to explicitly not clean a
sub. (github #3, Dave Rolsky)
0.16 2014-05-27 04:50:22Z (TRIAL RELEASE)
- Changed the code to no longer _require_ Class::MOP. If your class is not a
Moose class then we don't load Class::MOP. This was particularly
problematic for Moo classes. Using namespace::autoclean with a Moo class
"upgraded" it to be a Moose class.
- Using this module broke overloading in a class. Reported by Chris
Weyl. (RT#50938)
0.15 2013-12-14 17:47:21Z
- update configure_requires checking in Makefile.PL, add CONTRIBUTING file
0.14 2013-10-09 03:06:00Z
- bump dependency on B::Hooks::EndOfScope, to get the separation of
pure-perl and XS components (RT#89245)
- repository migrated to the github moose organization
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package
Like last time, where this caused no complaints.
Changes from previous:
----------------------
0.13 Wed, 24 Aug 2010 09:33:00 +0000
* Fix issue in dist.ini which was causing links to be incorrectly generated.
* Re-package to remove BEGIN { $VERSION hackery by using a newer
Dist-Zilla.
0.12 Fri, 04 Feb 2010 10:39:00 +0000
* Bump namespace::clean dep to 0.20 to pull in the bugfix for
Package::Stash::XS 0.19
pkgsrc change: handle p5-Class-MOP now being part of p5-Moose
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.
sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
Upstream changes:
0.09 Tue, 15 Sep 2009 07:45:16 +0200
* Fix to avoid deprecation warnings from the latest Class::MOP, but
it still works with older versions too. (Dave Rolsky)
* Fix a documentation typo (Jonathan Yu).
of imported devel/p5-MooseX-Traits-Pluggable.
When you import a function into a Perl package, it will naturally also be
available as a method.
The namespace::autoclean pragma will remove all imported symbols at the end
of the current package's compile cycle. Functions called in the package
itself will still be bound by their name, but they won't show up as methods
on your class or instances.
This module is very similar to namespace::clean, except it will clean all
imported functions, no matter if you imported them before or after you used
the pagma. It will also not touch anything that looks like a method,
according to Class::MOP::Class::get_method_list.