Blame Changes

Packit 73b376
Revision history for Role-Tiny
Packit 73b376
Packit 73b376
2.000006 - 2017-11-08
Packit 73b376
  - account for code references stored directly in stash (for perl 5.28)
Packit 73b376
  - work around hint leakage when loading modules in perl 5.8 and 5.10.1
Packit 73b376
Packit 73b376
2.000005 - 2016-11-01
Packit 73b376
  - revert change to MRO::Compat usage
Packit 73b376
Packit 73b376
2.000004 - 2016-10-31
Packit 73b376
  - Fix consuming stubs from roles (RT#116674).
Packit 73b376
  - Fix error message when applying conflicting roles to an object.
Packit 73b376
  - Drop prerequisite on MRO::Compat on perl 5.8.
Packit 73b376
Packit 73b376
2.000003 - 2016-04-21
Packit 73b376
  - don't install subs if importing into a package that is already a role.  This
Packit 73b376
    can happen if the module previously imported Moo::Role.
Packit 73b376
Packit 73b376
2.000002 - 2016-04-19
Packit 73b376
  - restore compatibility with Moo versions pre 1.004_003
Packit 73b376
  - delay loading Class::Method::Modifiers until applying modifiers to a package
Packit 73b376
  - use croak rather than die for reporting errors
Packit 73b376
  - apply method modifiers only once, even if they are applied via multiple
Packit 73b376
    composition paths (RT#106668)
Packit 73b376
Packit 73b376
2.000001 - 2015-04-24
Packit 73b376
  - fix generating invalid package names with single colons when abbreviating
Packit 73b376
    long package names (RT#103310)
Packit 73b376
  - don't run module interaction tests for user installs
Packit 73b376
Packit 73b376
2.000000 - 2015-02-26
Packit 73b376
  * Incompatible Changes
Packit 73b376
    - Role::Tiny no longer applies fatal warnings to roles created with it.
Packit 73b376
      strict and non-fatal warnings will continue to be applied.
Packit 73b376
Packit 73b376
1.003004 - 2014-10-22
Packit 73b376
  - allow does_role to be overridden by Moo::Role
Packit 73b376
Packit 73b376
1.003003 - 2014-03-15
Packit 73b376
  - overloads specified as method names rather than subrefs are now applied
Packit 73b376
    properly
Packit 73b376
  - allow superclass to provide conflicting methods (RT#91054)
Packit 73b376
  - use ->is_role internally to check if a package is a role
Packit 73b376
  - document that Role::Tiny applies strict and fatal warnings
Packit 73b376
Packit 73b376
1.003002 - 2013-09-04
Packit 73b376
  - abbreviate generated package names if they are longer than perl can handle
Packit 73b376
    (RT#83248)
Packit 73b376
  - add explicit dependency on the version of Exporter that added 'import'
Packit 73b376
Packit 73b376
1.003001 - 2013-07-14
Packit 73b376
  - fix test accidentally requiring Class::Method::Modifiers
Packit 73b376
Packit 73b376
1.003000 - 2013-07-14
Packit 73b376
  - allow composing roles simultaneously that mutually require each other
Packit 73b376
    (RT#82711)
Packit 73b376
  - Fix _concrete_methods_of returning non-CODE entries
Packit 73b376
  - fix broken implementation of method conflict resolution
Packit 73b376
    (Perlmonks#1041015)
Packit 73b376
  - add is_role method for checking if a given package is a role
Packit 73b376
  - drop minimum perl version - code tests just fine on 5.6.1 and 5.6.2
Packit 73b376
Packit 73b376
1.002005 - 2013-02-01
Packit 73b376
  - complain loudly if Class::Method::Modifiers is too old (and skip tests)
Packit 73b376
  - don't use $_ as loop variable when calling arbitrary code
Packit 73b376
Packit 73b376
1.002004 - 2012-11-02
Packit 73b376
  - remove accidentally-introduced strictures.pm usage
Packit 73b376
Packit 73b376
1.002003 - 2012-10-29
Packit 73b376
  - fix method modifier breakage on 5.10.0
Packit 73b376
Packit 73b376
1.002002 - 2012-10-28
Packit 73b376
  - skip t/around-does.t when Class::Method::Modifiers is not installed
Packit 73b376
    (RT#80310)
Packit 73b376
Packit 73b376
1.002001 - 2012-10-26
Packit 73b376
  - t/does-Moo.t moved to 'xt' (RT#80290)
Packit 73b376
  - don't die when looking for 'DOES' on perl < 5.10 (RT#80402)
Packit 73b376
Packit 73b376
1.002000 - 2012-10-19
Packit 73b376
  - load class in addition to roles when using create_class_from_roles
Packit 73b376
  - fix module name in Makefile.PL (RT#78591)
Packit 73b376
  - when classes consume roles, override their DOES method (RT#79747)
Packit 73b376
  - method modifiers can be used for 'does' and 'DOES'
Packit 73b376
Packit 73b376
1.001005 - 2012-07-18
Packit 73b376
  - localize UNIVERSAL::can change to avoid confusing TB2
Packit 73b376
  - properly report roles consumed by superclasses
Packit 73b376
Packit 73b376
1.001004 - 2012-07-12
Packit 73b376
  - remove strictures.pm from the test supplied by mmcleric so we install again
Packit 73b376
  - when applying runtime roles include roles from original class in new class
Packit 73b376
    ( fixes ::does_role checks)
Packit 73b376
Packit 73b376
1.001003 - 2012-06-19
Packit 73b376
  - correctly apply modifiers with role composition
Packit 73b376
  - check for conflicts during role-to-object application (test from mmcleric)
Packit 73b376
  - add an explicit return to all exported subs so people don't accidentally
Packit 73b376
    rely on the return value
Packit 73b376
  - store coderefs as well as their refaddrs to protect against crazy
Packit 73b376
Packit 73b376
1.001002 - 2012-05-05
Packit 73b376
  - alter duplication test to not provoke Class::Method::Modifiers loading
Packit 73b376
Packit 73b376
1.001001 - 2012-04-27
Packit 73b376
  - remove strictures from one last test file
Packit 73b376
Packit 73b376
1.001000 - 2012-04-27
Packit 73b376
  - Documentation improvements, no code changes
Packit 73b376
Packit 73b376
1.000_901 - 2012-04-12
Packit 73b376
  - Fix MANIFEST inclusion of Role::Basic composition
Packit 73b376
Packit 73b376
1.000_900 - 2012-04-11
Packit 73b376
  - Add composition with tests stolen from Role::Basic
Packit 73b376
Packit 73b376
1.000001 - 2012-04-03
Packit 73b376
  - Document that Class::Method::Modifiers must be depended on separately
Packit 73b376
  - Update tests so that they skip correctly without C::M::M
Packit 73b376
  - Add a SEE ALSO section
Packit 73b376
Packit 73b376
1.000000 - 2012-03-29
Packit 73b376
  - Remove redundant code in create_class_with_roles
Packit 73b376
  - Minor doc fix to does_role
Packit 73b376
  - Split Role::Tiny out into its own dist
Packit 73b376
Packit 73b376
Changes below this line are from when Role::Tiny was still bundled with Moo:
Packit 73b376
Packit 73b376
  - Fix a bug where coercions weren't called on lazy default/builder returns
Packit 73b376
  - Switch Moo::Utils to using Module::Runtime, and add the 5.8 %INC
Packit 73b376
    leakage fix into Role::Tiny's _load_module to provide partial parity
Packit 73b376
  - Update incompatibilities with Moose documentation
Packit 73b376
  - Remove Sub::Quote's outstanding queue since it doesn't actually slow
Packit 73b376
    things down to do it this way and makes debugging easier.
Packit 73b376
  - Revert 'local $@' around require calls to avoid triggering Unknown Error
Packit 73b376
  - Explicitly require Role::Tiny in Role::Tiny::With (RT#70446)
Packit 73b376
  - Fix spurious 'once' warnings under perl -w
Packit 73b376
Packit 73b376
0.009013 - 2011-12-23
Packit 73b376
  - fix up Class::XSAccessor version check to be more robust
Packit 73b376
  - improved documentation
Packit 73b376
  - fix failures on perls < 5.8.3
Packit 73b376
  - fix test failures on cygwin
Packit 73b376
Packit 73b376
0.009012 - 2011-11-15
Packit 73b376
  - make Method::Generate::Constructor handle $obj->new
Packit 73b376
  - fix bug where constants containing a reference weren't handled correctly
Packit 73b376
    (ref(\[]) is 'REF' not 'SCALAR', ref(\v1) is 'VSTRING')
Packit 73b376
Packit 73b376
0.009011 - 2011-10-03
Packit 73b376
  - add support for DEMOLISH
Packit 73b376
  - add support for BUILDARGS
Packit 73b376
Packit 73b376
0.009010 - 2011-07-20
Packit 73b376
  - missing new files for Role::Tiny::With
Packit 73b376
Packit 73b376
0.009009 - 2011-07-20
Packit 73b376
  - remove the big scary warning because we seem to be mostly working now
Packit 73b376
  - perl based getter dies if @_ > 1 (XSAccessor already did)
Packit 73b376
  - add Role::Tiny::With for use in classes
Packit 73b376
  - automatically generate constructors in subclasses when required so that
Packit 73b376
    subclasses with a BUILD method but no attributes get it honoured
Packit 73b376
  - add coerce handling
Packit 73b376
Packit 73b376
0.009008 - 2011-06-03
Packit 73b376
  - transfer fix to _load_module to Role::Tiny and make a note it's an inline
Packit 73b376
  - Bring back 5.8.1 compat
Packit 73b376
Packit 73b376
0.009007 - 2011-02-25
Packit 73b376
  - I botched the copyright. re-disting.
Packit 73b376
Packit 73b376
0.009006 - 2011-02-25
Packit 73b376
  - handle non-lazy default and builder when init_arg is undef
Packit 73b376
  - add copyright and license info for downstream packagers
Packit 73b376
  - weak ref checking for Sub::Quote to avoid bugs on refaddr reuse
Packit 73b376
  - Switch composed role names to be a valid package name
Packit 73b376
Packit 73b376
0.9.5 Tue Jan 11 2011
Packit 73b376
  - Fix clobberage of runtime-installed wrappers by Sub::Defer
Packit 73b376
  - Fix nonMoo constructor firing through multiple layers of Moo
Packit 73b376
  - Fix bug where nonMoo is mistakenly detected given a Moo superclass
Packit 73b376
    with no attributes (and hence no own constructor)
Packit 73b376
Packit 73b376
0.9.4 Mon Dec 13 2010
Packit 73b376
  - Automatic detection on non-Moo superclasses
Packit 73b376
Packit 73b376
0.9.3 Sun Dec 5 2010
Packit 73b376
  - Fix _load_module to deal with pre-existing subpackages
Packit 73b376
Packit 73b376
0.9.2 Wed Nov 17 2010
Packit 73b376
  - Add explanation of Moo's existence
Packit 73b376
  - Change @ISA setting mechanism to deal with a big in 5.10.0's get_linear_isa
Packit 73b376
  - Change 5.10 checks to >= to not try and load MRO::Compat on 5.10.0
Packit 73b376
  - Make 'perl -Moo' DTRT
Packit 73b376
Packit 73b376
0.9.1 Tue Nov 16 2010
Packit 73b376
  - Initial release