Skip to main content



Log-Progress-0.13


Write and parse plain-text progress messages in log file

Changes for 0.13 - 2023-01-26

  • Never divide by 0 in Parser, even if stream says 0/0
  • Parser will never return >100% progress value
  • Various dist packaging improvements, and longer timeout for tests

metacpan.org/dist/Log-Progress



Random-Day-0.13


Class for random day generation

Changes for 0.13 - 2023-01-26T19:13:52+01:00

  • Add check for year in interval of 'dt_from' and 'dt_to' in random_year().
  • Add check for year/month in interval of 'dt_from' and 'dt_to' in random_year_month().
  • Add check for year/month/day in interval of 'dt_from' and 'dt_to' in random_year_month_day().
  • Add Random::Day::InTheFuture object.
  • Add Random::Day::InThePast object.
  • Fix test dependencies.
  • Remove obsolete code from t/Random-Day/05-random.t .

metacpan.org/dist/Random-Day



ConstantCalculus-CircleConstant-0.02


Perl extension for calculating the circle constant in high accurccy.

Changes for 0.02

  • Major changes in POD documentation.
  • Major changes in program code.
  • Prepare program code for adding more calculation formulas.

metacpan.org/dist/ConstantCalc…



"Ask Bill why the string in [MS-DOS] function 9 is terminated by a
dollar sign. Ask him, because he can't answer. Only I know that."

  • Dr. Gary Kildall.

httpstatusdogs.com/418-im-a-te…



Quote-Code-1.0104


quoted strings with arbitrary code interpolation

Changes for 1.0104 - 2023-01-26

  • Make test more robust against future perl changes by not depending on exact syntax error messages. Update build infrastructure and add a github README.

metacpan.org/dist/Quote-Code



Date-Parse-Modern-0.3


Provide string to unixtime conversions

Changes for 0.3 - 2023-01-26

  • 99% format parity with Date::Parse Better debugging Better memory usage for caching Tons of code cleanup and comments

metacpan.org/dist/Date-Parse-M…



Net-Cisco-FMC-v1-0.008000


Cisco Firepower Management Center (FMC) API version 1 client library

Changes for 0.008000 - 2023-01-26T16:10:57+01:00

  • add methods for FQDNs

metacpan.org/dist/Net-Cisco-FM…




Dist-Zilla-PluginBundle-RJBS-5.023


BeLike::RJBS when you build your dists

Changes for 5.023 - 2023-01-26T09:49:07-05:00

  • improvements to workflow installed by "dzil workflower"

metacpan.org/dist/Dist-Zilla-P…



Pg-Explain-2.6


Object approach at reading explain analyze output

Changes for 2.6 - 2023-01-26

  • Fix handling of Planning I/O timings per report from Christoph Berg

metacpan.org/dist/Pg-Explain





CtrlO-PDF-0.30


high level PDF creator

Changes for 0.30

  • Remove support for PDF::API2, greatly simplifying the code
  • Remove requirement for PDF::TextBlock, use PDF::Builder instead
  • Fix inability to use negative values when setting y position
  • Round top margin to whole number

metacpan.org/dist/CtrlO-PDF




Random-Day-0.12


Class for random day generation

Changes for 0.12 - 2023-01-26T11:46:23+01:00

  • Rename example to better name.
  • Update copyright years.

metacpan.org/dist/Random-Day




MooX-Role-HasLogger-0.001001


Moo role that provides a logger attribute

Changes for 0.001001 - 2023-01-26

  • fix needed version of some prerequisites (CPAN Testers feedback)

metacpan.org/dist/MooX-Role-Ha…







Affix-0.09


A Foreign Function Interface eXtension

Changes for 0.09 - 2023-01-26T01:36:55Z

  • Structs may now contain a CodeRef
  • CodeRef, Any, etc. are now properly handled as aggregate members
  • Nesting CodeRefs used as callbacks work now
  • Bind to exported values with pin()
  • Expose aggregate by value and syscall support in Affix::Feature
  • Survive callbacks with unexpectedly empty return values
  • Delayed type resolution with InstanceOf

metacpan.org/dist/Affix



Sah-Schemas-Date-ID-0.008


Sah schemas related to date (Indonesian)

Changes for 0.008 - 2022-10-20

  • No functional changes.
  • [ux] Tweak Abstracts (give example).

metacpan.org/dist/Sah-Schemas-…



Test2-Harness-1.000142


A new and improved test harness with better Test2 integration.

Changes for 1.000142 - 2023-01-25T14:38:31-08:00

  • Add more capabilities around argument processing

metacpan.org/dist/Test2-Harnes…



HV-Monitor-0.0.6


A generalized module for gathering stats for a hypervisor.

Changes for 0.0.6 - 2023-01-25

  • -MANIFEST fix

metacpan.org/dist/HV-Monitor




MsOffice-Word-Surgeon-2.01


tamper with the guts of Microsoft docx documents, with regexes

Changes for 2.01

  • index images by either title or description field in alternative text (because recent versions of MsWord no longer have a 'title' field)
  • avoid making assumptions about attribute order in XML nodes

metacpan.org/dist/MsOffice-Wor…




Tk-HListbox-2.70


Tk Listbox widget supporting images and text entries, Tk::HList-based drop-in replacement for Tk::Listbox.

Changes for 2.70

  • Merge more patches & fixups from Jeff Stephens. Most involving hardening against undefined variable-references.
  • WARNING: Fixed selectionSet() to work properly in all valid cases - the main negative side-effect of this is that it must be called with either 1 or 2 index arguments (specifying a range) - Passing a list (>2) arguments is no longer valid and will return with a warning. Users must update any programs that use this (or Tk::HMListbox) affected by this!
  • Fix yview() which is completely broken in the underlying Tk::HList module, which also seems to fix a known TK::HMListbox scrollbar issue. This should also resolve reported issues with Tk::HMListbox set to use dual, optional scrollbars having issues with specific size settings.
  • Add xview() which is also completely broken in Tk::HList. When called with no arguments, now properly return 2 real numbers between 0 and 1 inclusive (same as Tk::Listbox). NOTE: For xview(), these values are only approximate, not precise due to Tk::HList issues.
  • Fix scan('mark') to use object variables to prevent issues when multiple HListboxes are active.
  • All methods except indexOF() now take indices (0..'end'), not the underlying Tk::HList "entry-path" numbers, and the docs have been updated to clarify previous ambiguity. Note also that selectionGet() still returns entry-paths. The proper reverse of selectionSet() is (as has always been the case in Tk::Listbox) curselection().
  • Switch messaging to (and require) the Carp module.
  • Numerous fixups to ensure compatability with Tk::Listbox.
  • Numerous other minor code & doc. cleanups and clarifications.

metacpan.org/dist/Tk-HListbox





Mojo-UserAgent-Cached-1.25


Caching, Non-blocking I/O HTTP, Local file and WebSocket user agent

Changes for 1.25 - 2023-01-25

  • (nicomen) Restrict key length to 140 chars by default to work on eCryptFS out of the box

metacpan.org/dist/Mojo-UserAge…



Lab-Measurement-3.841


Test and measure with Perl

Changes for 3.841 - 2023-01-25

  • Nanonis Tramea: More functionality (timing, data transfer)
  • Lakeshore 372: Fixes

metacpan.org/dist/Lab-Measurem…



IO-Socket-SSL-2.081


Nearly transparent SSL encapsulation for IO::Socket::INET.

Changes for 2.081 - 2023-01-25

  • new function set_msg_callback for user defined callback on each SSL message
  • showcase function in example/ssl_client.pl and example/ssl_server.pl for computing JA3S/JA3 fingerprints
  • fix tracing added in 2.076 to no longer include SSL3_RT_HEADER (noise)

metacpan.org/dist/IO-Socket-SS…



App-Perl-Module-CopyrightYears-0.03


Tool for update copyright years in Perl distribution.

Changes for 0.03 - 2023-01-25T08:40:57+01:00

  • Fix test dependencies.

metacpan.org/dist/App-Perl-Mod…



HTML-Blitz-0.04


high-performance, selector-based, content-aware HTML template engine

Changes for 0.04 - 2023-01-25

  • selectors: fix parsing of escape sequences in attribute names (e.g. `[foo\00002dbar="baz"]`)
  • selectors: fix parsing of escape sequences in quoted attribute values (e.g. `[foo-bar="b\000061z"]`)

metacpan.org/dist/HTML-Blitz



SPVM-Sys-0.34


System Calls for File IO, User, Process, Signal, Socket

Changes for 0.34 - 2022-01-06

  • Prerequirement Changes
  • New Features

metacpan.org/dist/SPVM-Sys



DBIx-Array-0.65


DBI Wrapper with Perl style data structure interfaces

Changes for 0.65 - 2023-01-24

  • Move to GitHub repository
  • Changed license from BSD to MIT
  • Cleaned up author tests

metacpan.org/dist/DBIx-Array



Sah-Schemas-Binary-0.008


Sah schemas related to binary data

Changes for 0.008 - 2022-10-20

  • No functional changes.
  • Mention related Type::Tiny type libraries & constraints.

metacpan.org/dist/Sah-Schemas-…





Graphics-Toolkit-Color-1.08


color palette creation helper

Changes for 1.08 - 2023-01-24

  • = small enhancements
  • + added method rgb_gradient_to
  • ~ changed gradient_to to hsl_gradient_to (but keeping compatibility)
  • ? even more POD fixes

metacpan.org/dist/Graphics-Too…



CPAN-Audit-20230104.001


Audit CPAN distributions for known vulnerabilities

Changes for 20230104.001 - 2023-01-04T20:58:18Z

  • Add --json to get output in JSON (Renée Bäcker, #24)
  • Updated for latest advisories

metacpan.org/dist/CPAN-Audit

#24


Text-BibTeX-0.89


interface to read and parse BibTeX files

Changes for 0.89 - 2023-01-24

  • Fix Config::AutoConf dependency version

metacpan.org/dist/Text-BibTeX



Math-Matrix-MaybeGSL-0.008


Uniform use of Math::MatrixReal and Math::GSL::Matrix.

Changes for 0.008 - 2023-01-24

  • Added row method (thanks to Andrius Merkys).
  • Added find_zeros method (thanks to Andrius Merkys).
  • Added transpose method (thanks to Andrius Merkys).
  • Overloaded plus operator (thanks to Andrius Merkys).

metacpan.org/dist/Math-Matrix-…



Google-ProtocolBuffers-Dynamic-0.41_13


fast and complete protocol buffer implementation

Changes for 0.41_13 - 2023-01-24T20:00:10Z

  • Actual fix for WKT test failure

metacpan.org/dist/Google-Proto…




Neo4j-Driver-0.35


Neo4j community graph database driver for Bolt and HTTP

Changes for 0.35 - 2023-01-24

  • Fix an issue which could cause a Bolt v3/v4 session to report "Bolt error -1" and become unusable after a server-side statement evaluation failure inside an explicit transaction.

metacpan.org/dist/Neo4j-Driver