1.3.2 (November 29, 2008)
=========================
Security Fixes:
* None.
Bug fixes:
* -roll was failing for colormapped images.
* VID: Memory leak fix.
* PREVIEW: Solarize parameter was wrong.
* Delegates previously using 'spawn' needed an ampersand so that
starting the child process does not hang the GUI.
Feature improvements:
* +profile now supports an exclusion syntax. For example ``+profile
'!icm,*'`` removes all of the profiles except for the ICM profile.
The new syntax also allows multiple profiles to be listed at once.
Performance Improvements:
* AdaptiveThreshold, Blur, Convolve, and MotionBlur no longer
process the opacity channel unless the image has one.
Pkgsrc changes:
- register all dependencies
- add new dependency on devel/p5-Class-Data-Inheritable
Upstream changes:
0.32 21 Oct 2008
* use Class::Data::Inheritable to define delegate_class()
class accessor in base Model
0.33 22 Nov 2008
* fix Tutorial wrt RT#40846
0.34 24 Nov 2008
* fix make_primary_key_string to return undef if multi-col
PK has no values
0.35 24 Nov 2008
* call edit() after initializing object and form with passed
in params, so that the init_form() method can have all data
already set.
Upstream changes:
4.018 Fri Nov 28 23:19:01 PST 2008
revised XS code to be full re-entrant, thread safe in Util.xs v1.26
removed all traces of mutex locks in Util.xs v1.26
removed function 'threads' here an in UtilPP v1.6
4.017 Sun Nov 23 19:32:59 PST 2008
Extended the capability of 'splitref' to allow splitting of
objects into multiple pieces with differing CIDR masks.
Returned object list can be split from bottom to top
or from top to bottom depending on which method is called
split, rsplit, splitref, rsplitref
Thanks to kashmish <kashmish@gmail.com> for the idea on
improving functionality of 'split'.
Thanks to Rob Riepel <riepel@networking.Stanford.EDU>
for a faster and more accurate _compV6 function.
in UtitPP v1.5
correct documentation error
add threads reporting (empty string)
in Util v1.25
add threads reporting that returns a comma separated
string of build headers.
added what is hopefully thread safe operation via
serializaton. Must be invoked by "--with-threads"
in Lite v1.12
corrected missing Zeros subroutine
Zeros and Zero both will work
in Lite v1.12
added minus (-) overloading to allow the subtraction
of two NetAddr::IP objects to get the difference between
the object->{addr}'s as a numeric value
Thanks to Rob Riepel <riepel@networking.Stanford.EDU>
for the initial code and inspiration for this enhancement
4.016 Wed Nov 5 18:13:20 PST 2008
in Util/ version 1.24
Clean up Makefile.PL to check actual required link
libraries against the perl build for consistency
Pkgsrc changes:
- adjust dependency on devel/p5-Class-MOP
- add new dependency on devel/p5-Task-Weaken
Upstream changes:
0.62 Wed November 26, 2008
* Moose::Meta::Role::Application::ToClass
Moose::Meta::Role::Application::ToRole
- fixed issues where excluding and aliasing the
same methods for a single role did not work
right (worked just fine with multiple
roles) (stevan)
- added test for this (stevan)
* Moose::Meta::Role::Application::RoleSummation
- fixed the error message when trying to compose
a role with a role it excludes (Sartak)
* Moose::Exporter
- Catch another case where recursion caused the value
of $CALLER to be stamped on (t0m)
- added test for this (t0m)
* Moose
- Remove the make_immutable keyword, which has been
deprecated since April. It breaks metaclasses that
use Moose without no Moose (Sartak)
* Moose::Meta::Attribute
- Removing an attribute from a class now also removes delegation
(handles) methods installed for that attribute (t0m)
- added test for this (t0m)
* Moose::Meta::Method::Constructor
- An attribute with a default that looked like a number (but was
really a string) would accidentally be treated as a number
when the constructor was made immutable (perigrin)
- added test for this (perigrin)
* Moose::Meta::Role
- create method for constructing a role
dynamically (Sartak)
- added test for this (Sartak)
- anonymous roles! (Sartak)
- added test for this (Sartak)
* Moose::Role
- more consistent error messages (Sartak)
* Moose::Cookbook::Roles::Recipe1
- attempt to explain why a role that just requires
methods is useful (Sartak)
Pkgsrc changes:
- add new dependency on devel/p5-Task-Weaken
Upstream changes:
0.71 Wed November 26, 2008
* Class::MOP::Class
* Class::MOP::Module
- Actual package creation has moved upward from
Class to Module so that Moose roles can share
the code (Sartak)
0.70_01 Mon, November 19, 2008
* Class::MOP
- Fixes for failures with blead (Florian Ragwitz)
- Silenced compiler warnings (Florian Ragwitz)
GNOME is the GNU Network Object Model Environment.
The GNOME project intends to build a complete, easy-to-use desktop
environment for the user, and a powerful application framework for
the software developer.
This is a meta package for the second major version of the GNOME
project. It provides the GNOME mobile support, defined
by the project as the "GNOME mobile".
* Fix a bug in the b-tree delete algorithm that seems like it might
be able to cause database corruption. The bug was first introduced in
version 3.6.6.
* Fix a memory leak that can occur following a disk I/O error.
Pkgsrc changes:
o Change to use Module::Build
Upstream changes:
0.99 October 03 2008
- Now can exclude some paths from the comparison:
- http://rt.cpan.org/Ticket/Display.html?id=39705
0.98 September 13 2008
- Added the LICENSE section to the POD (Kwalitee).
- Added the "use warnings" (Kwalitee).
- Added the "Repository URL" on the resources page.
Pkgsrc changes:
o Adjusted dependencies to fit the new requirements.
Upstream changes:
0.52 - 2008-11-19
- Fix spelling of QuoteCharacter
0.51 - 2008-11-19
- Added QuoteCharecter parameter to new() to control quoting of
attributes (perigrin)
- Added Tests and Docs
This module has a very simple task - to be a base class for PerlSAX
drivers and filters. It's default behaviour is to pass the input directly
to the output unchanged. It can be useful to use this module as a base class
so you don't have to, for example, implement the characters() callback.
The main advantages that it provides are easy dispatching of events the right
way (ie it takes care for you of checking that the handler has implemented
that method, or has defined an AUTOLOAD), and the guarantee that filters
will pass along events that they aren't implementing to handlers downstream
that might nevertheless be interested in them.