Skip to content

Commit

Permalink
Update to 1.715
Browse files Browse the repository at this point in the history
Upstream changes:
1.715     2023-05-04 13:09:22-05:00 America/Chicago

  [Fixed]

  - Fixed Multiplex adapter losing context details. Normally, the
    Log::Any::Proxy joins all of the arguments passed in to a logging
    method if the adapter it's using does not support structured data.
    Multiplex supports structured data, but one of the adapters inside
    may not. So, the Multiplex adapter must also perform this
    concatenation to avoid losing those additional arguments.

    Thanks @jrubinator and @GrantStreetGroup for discovering this bug
    and providing the fix! [Github #95]

1.714     2023-03-20 11:48:30-05:00 America/Chicago

  [Fixed]

  - Fixed Syslog adaptor losing ident and facility information if
    another library wrongly calls Sys::Syslog::closelog(). This is not
    a perfect solution, but a perfect solution can only ever be to fix
    the close that's calling closelog() :P

    Thanks to Tom Christiansen and @GrantStreetGroup for reporting this
    issue and providing the fix.

1.713     2022-12-12 12:44:52-06:00 America/Chicago

  [Fixed]

  - Fixed tests failing due to missing Devel::Stacktrace. This is an
    optional module, so we do not explicitly depend on it. Thanks
    @dbevans and @perlpunk for reporting this issue! (Github #93)

1.712     2022-12-09 11:05:10-06:00 America/Chicago

  [Added]

  - Added `Log::Any::Proxy::WithStackTrace` to provide a stack trace at
    the caller site. Thanks @larryl and @GrantStreetGroup for providing
    this feature!

  [Other]

  - Removed Travis, as they stopped supporting free Github repos :(

1.711     2022-11-22 11:28:01-06:00 America/Chicago

  [Fixed]

  - Fixed proxy not exposing 'category' attribute (#86). Thanks
    @andrew-grechkin!
  - Fixed not being able to get a proxy for the "root" category (empty
    string) (#90). Thanks @XSven!
  • Loading branch information
wen committed Jun 3, 2023
1 parent b58b8fa commit ea17052
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions devel/p5-Log-Any/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# $NetBSD: Makefile,v 1.38 2022/06/28 11:32:40 wiz Exp $
# $NetBSD: Makefile,v 1.39 2023/06/03 13:11:38 wen Exp $

DISTNAME= Log-Any-1.710
DISTNAME= Log-Any-1.715
# 1.708 -> 1.70.8
PKGNAME= p5-${DISTNAME:C/-([0-9])\.([0-9])([0-9])([0-9])/-\1.\2\3.\4/}
PKGREVISION= 1
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Log/}

Expand Down
8 changes: 4 additions & 4 deletions devel/p5-Log-Any/distinfo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.25 2021/10/26 10:16:51 nia Exp $
$NetBSD: distinfo,v 1.26 2023/06/03 13:11:38 wen Exp $

BLAKE2s (Log-Any-1.710.tar.gz) = d051ace5be60b70be6634339602515006be7f1c0ae8c6e0e1d9d7c0420f63c40
SHA512 (Log-Any-1.710.tar.gz) = 1aff56c1c4c51d4e9aae43add704dd2da86ea320ee095a613bd569c2f0ea546c98d27a1e0854f9b88cc1772bf438ee3be80ba2f61e8c15f39497035993f122e3
Size (Log-Any-1.710.tar.gz) = 55883 bytes
BLAKE2s (Log-Any-1.715.tar.gz) = 41b99ee33bf360299d5ba645800fe8c34f3742d1b172aa47ca78052f703a7717
SHA512 (Log-Any-1.715.tar.gz) = 3acfc951608e77ba9a75af2259720b816d61efaae037d3cb479a0a4d3ce7a177b0f295863a6e59f7f697f2679a8c74b457a55c5f567ac5e3f73b678ba7107d8b
Size (Log-Any-1.715.tar.gz) = 59607 bytes

0 comments on commit ea17052

Please sign in to comment.