File perl-Log-Any.changes of Package perl-Log-Any

-------------------------------------------------------------------
Tue Mar  8 10:28:21 UTC 2016 - coolo@suse.com

- updated to 1.040
   see /usr/share/doc/packages/perl-Log-Any/Changes

  1.040     2016-02-24 17:47:00-05:00 America/New_York
  
      [Fixed]
  
      - Fixed duplicated documentation sections.

-------------------------------------------------------------------
Sat Feb 13 10:12:34 UTC 2016 - coolo@suse.com

- updated to 1.038
   see /usr/share/doc/packages/perl-Log-Any/Changes

  1.038     2016-02-10 14:15:31-07:00 America/Mazatlan
  
      - No changes from 1.037
  
  1.037     2016-02-05 20:22:34-05:00 America/New_York (TRIAL RELEASE)
  
      [Fixed]
  
      - Fixed t/filescreen.t Unicode string tests to use a backwards
        compatible form.  Should fix tests before 5.16.
  
  1.035     2016-02-04 14:47:20-05:00 America/New_York (TRIAL RELEASE)
  
      [Changed]
  
      - The default formatter now replaces a code reference argument with
        the results of calling the code reference ONLY when it is the first
        argument (in place of a format string).  Code references in
        subsequent arguments (to sprintf) are not executed, as this would
        break backwards compatibility.
  
      [Documented]
  
      - Noted that repeatedly calling 'set' to set an adapter without calling
        'remove' or using the 'lexically' feature will leak memory.
  
  1.033     2016-02-03 10:32:57-05:00 America/New_York (TRIAL RELEASE)
  
      [Added]
  
      - The default formatter now expands code references.  If the first
        argument is a code reference, it is expanded and returned.  If an
        argument to "sprintf" style formatting is a code reference, it is
        expanded.
  
      [Changed]
  
      - The File adapter now opens files with the ":utf8" layer.  It also
        takes a 'binmode' attribute to change the default.
  
      [Fixed]
  
      - does_not_contain_ok test adapter function now gives proper
        diagnostic message
  
      - all diagnostic messages that output the captured log now
        correctly dump the log with pretty formatting
  
      [Documented]
  
      - documented the 'proxy_class' argument to `get_logger`
  
      [~Internal~]
  
      - Data::Dumper is loaded lazily, to reduce module load times
        for programs that don't need it.

-------------------------------------------------------------------
Tue Apr 14 21:20:56 UTC 2015 - coolo@suse.com

- updated to 1.032
   see /usr/share/doc/packages/perl-Log-Any/Changes

  1.032     2015-03-26 17:23:37-04:00 America/New_York
  
      - no changes from 1.031
  
  1.031     2015-03-26 06:08:17-04:00 America/New_York (TRIAL RELEASE)
  
      [Fixed]
  
      - Log::Any::Adapter::Test passed through all constructor arguments,
        which could be fatal when mocking adapters without all key-value
        pairs (like Log::Any::Adapter::File); now this only passes through
        the category and ignores other parameters when used as an
        adapter class override.
  
  1.03      2015-01-01 22:39:41-05:00 America/New_York
  
      [Changed]
  
      - Log::Any::Proxy concatenates arguments to basic logging functions
        with a space character before passing them to adapters as a single
        string.  This ensures consistency across adapters that handle
        multiple arguments differently.
  
  1.02      2014-12-28 07:06:49-05:00 America/New_York
  
      [Fixed]
  
      - Some adapters relied on Log::Any::Adapter::Util also loading
        Log::Any so this behavior has been restored.
  
  1.01      2014-12-26 22:25:13-05:00 America/New_York
  
      [Fixed]
  
      - 'numeric_level' was not exported properly from
        Log::Any::Adapter::Util
  
  1.00      2014-12-25 22:04:13-05:00 America/New_York
  
      [Added]
  
      - Logging now goes via a Log::Any::Proxy object instead of directly to
        an adapter. This allows easy customization of the message production.
  
      - File, Stdout, and Stderr adapters now support a minimum
        log level parameter.
  
      [Changed]
  
      - Removed dead code from Log::Any::Adapter::Base; particularly this
        was the formatting code, since this is now handled by
        Log::Any::Proxy.
  
      [Fixed]
  
      - File will flock the handle when writing (if flock is avaiable).
  
      - Won't die if adapters aren't loadable modules as long as they
        provide a constructor.  This allows using private adapters
        defined in another file.
  
      [Documented]
  
      - Revised docs for creating adapters
  
      - Fixed typos and improved docs for Log::Any::Adapter::Util; removed
        stub docs for modules that didn't need it.
  
      [Deprecated]
  
      - Deprecated some methods in Log::Any::Adapter::Util
  
      [Internal]
  
      - Merged Log-Any and Log-Any-Adapter distributions; reduces code
        duplication and ensures Log::Any and adapter framework stay in sync
  
      - Eliminates all non-core dependencies (as of Perl 5.8.1), including
        Capture::Tiny, Devel::GlobalDestruction and Guard
  
  0.92      2014-12-15 07:12:38-05:00 America/New_York (TRIAL RELEASE)
  
  0.91      2014-12-14 22:13:09-05:00 America/New_York (TRIAL RELEASE)
  
  0.90      2014-12-12 17:08:22-05:00 America/New_York (TRIAL RELEASE)

-------------------------------------------------------------------
Tue Nov 26 07:35:13 UTC 2013 - coolo@suse.com

- updated to 0.15
  * Fixes
    - Hide 'package Log::Any::Adapter' from PAUSE/Module::Metadata - miyagawa
- removed patches:
  * noprovides.diff (now upstream)

-------------------------------------------------------------------
Mon Dec 19 14:51:46 UTC 2011 - coolo@suse.de

- update to 0.14
  * Fixes
   - Fix version number in Log/Any.pm - Stephen Thirlwal


-------------------------------------------------------------------
Tue Aug 23 15:29:53 UTC 2011 - chris@computersalat.de

- update to 0.13
  * Fixes
    - Fix typo in lib/Log/Any/Adapter/Test.pm - RT #69850 - Stephen Thirlwall
- fix deps
  * 'ExtUtils::MakeMaker' => '6.30'
- rebase noprovides patch

-------------------------------------------------------------------
Tue May 31 14:29:06 UTC 2011 - coolo@novell.com

- regenerate with newer cpanspec

-------------------------------------------------------------------
Thu Apr  7 17:59:41 UTC 2011 - coolo@novell.com

- update to 0.12
  * Fixes
    - Return false from null adapter is_xxx methods - RT #64164 - Chip Salzenberg
    - Eliminate 'subroutine redefined' warning in case Log::Any::Adapter loaded before
      Log::Any::Test
  
  * Implementation
    - Migrate to Dist::Zilla

-------------------------------------------------------------------
Mon Jan 17 15:51:57 UTC 2011 - coolo@novell.com

- make sure this package does not provide Log::Any::Adapter

-------------------------------------------------------------------
Tue Nov 30 19:20:26 UTC 2010 - coolo@novell.com

- switch to perl_requires macro

-------------------------------------------------------------------
Mon Nov 29 18:30:24 UTC 2010 - coolo@novell.com

- remove /var/adm/perl-modules

-------------------------------------------------------------------
Fri Nov 19 22:05:43 UTC 2010 - pascal.bleser@opensuse.org

- initial package (0.11)

openSUSE Build Service is sponsored by