Recent Perl modules, releases and favorites.
Last updated 8 August 2026 12:30 AM
Last updated 8 August 2026 12:30 AM
Dist-Zilla-PluginBundle-RSRCHBOY
Release | 7 Aug 2026 11:21 PM | Author: RSRCHBOY | Version: 0.078
Zilla your distributions like RSRCHBOY!
Dist::Zilla::PluginBundle::RSRCHBOY is a ready-made Dist::Zilla bundle that captures the author RSRCHBOY's preferred distribution build, test, metadata and release setup so you can apply his conventions by adding [@RSRCHBOY] to your dist.ini. It assembles a curated set of plugins for things like metadata generation, POD weaving and stopwords, test helpers, Git and GitHub automation, release signing and post-release install steps, while allowing you to tune bundled plugins by passing Plugin::Name.option entries in dist.ini. If you want to inspect exactly what it will do first, the companion Dist::Zilla::App::Command::dumpphases makes the phases easy to review. The bundle is actively maintained and configurable via options such as sign, tweet, github and install_on_release, and note that recent behavior in version 0.078 defaults to not tweeting or signing releases; report bugs or feature requests on the project's GitHub issue tracker.
Sim-OPT
Release | 7 Aug 2026 11:10 PM | Author: GLBRUNE | Version: 0.921
CPAN Testers: Unknown 100.0%
Sim::OPT is an optimization and parametric exploration program that can mix sequential and parallel block search methods
Sim::OPT is a Perl toolkit for steering and automating parametric optimization and exploration workflows that drive text‑based simulation models. It helps you generate and morph input files, run batches of simulations, and search a multidimensional parameter space using overlapping block searches that mix sequential and parallel update strategies, with options for factorial, star, face‑centered composite designs and metamodel‑based searches. The framework can operate by launching simulations or by mining precomputed results, records clear instance naming and mapping for traceability, and includes utility modules for model morphing and specialized tasks such as ESP‑r shading tweaks, creating AutoCAD 3D plots from parallel coordinates, and building sparse-data metamodels. The distribution provides an "opt" entry command, example workflows for ESP‑r and EnergyPlus, and runs on Linux. Sim::OPT is dual licensed with the open source copy available on CPAN under GPL v3 and additional proprietary components offered by the author, and the changelog in this release contains the original packaging metadata.
Catalyst-Plugin-Session-Store-DBIC
Release | 7 Aug 2026 08:15 PM | Author: ARODLAND | Version: 0.15
Upvotes: 5 | CPAN Testers: Pass 100.0%
Store your sessions via DBIx::Class
Catalyst::Plugin::Session::Store::DBIC lets you persist Catalyst web application session data directly in a database using DBIx::Class, making it easy to plug sessions into your existing DBIC models without writing custom storage code. It acts as a thin wrapper around Catalyst::Plugin::Session::Store::Delegate, so you get straightforward mapping of session id, data and expiry fields to a DBIC result class while still being able to fall back to the Delegate module for more advanced control. Configure it by naming the DBIx::Class result source (dbic_class) and optional field names for id, session_data and expires, and be aware that session data is MIME::Base64 encoded and can trigger warnings if your database column is too small so use MEDIUMTEXT or larger for heavy sessions in MySQL. The module does not auto-clean expired rows so you should run delete_expired_sessions periodically or via a scheduler. Recent fixes addressed a bug where changing a session id could produce a “row not found” error, so upgrading to the latest release is recommended.
The CPAN Security Advisory data as a Perl data structure, mostly for CPAN::Audit
CPANSA::DB is a small Perl module that ships the CPAN Security Advisory dataset as a ready-to-use Perl data structure. It exposes a single db function that returns a hash reference of all advisory reports so scripts and tools can programmatically check known security advisories for CPAN distributions. The module is primarily used by CPAN::Audit but can be consumed by any code that needs the advisory data, and a JSON equivalent is also available. Releases are published on GitHub and include GPG signatures and GitHub attestations so you can verify the archive and trust the data before using it.
Bundles functionalities for the tool query-worms
Net::WoRMS is a small Perl wrapper around the World Register of Marine Species (WoRMS) SOAP API that powers the query-worms utility, providing web access, parsing and simple output formatting through a Moo object and SOAP::Lite. It exposes easy-to-use methods to search species by name, fetch a taxon record by AphiaID, page through child taxa and print results in TEXT, CSV or SQL formats, and it includes a debug mode and hooks to change the SOAP endpoint, namespace and output format before initialization. The module is aimed at developers who need quick, scriptable access to WoRMS data from Perl or command-line tools and favors simple integration over heavy abstraction. Recent work focused on documentation polish and CPAN deployment fixes so installation and usage should be more straightforward; the module does depend on SOAP::Lite and a small Moo-based type layer.
GitHub Actions workflow generator, analyzer, and optimizer
App::GHGen is a command line tool that generates, checks, and optimizes GitHub Actions workflows so you can add or maintain CI with minimal effort. It can auto-detect your project type or let you choose from templates for Perl, Node, Python, Rust, Go, Ruby, Docker, and static sites, then produce opinionated workflows with dependency caching, concurrency controls, proper permissions, and common lint and coverage steps. It also analyzes existing workflows for performance, security, cost, and maintenance problems, offers cost estimates, and can safely apply fixes or open a pull request with suggested changes; it can even run inside GitHub Actions to comment on PRs or act as a CI quality gate. Perl projects get special attention with multi-OS and multi-version matrices, smart minimum-version detection, CPAN caching via local::lib, cross-platform syntax checks, optional Perl::Critic and coverage, and sensible defaults that you can customize. If you want to reduce CI minutes, keep Actions secure and up to date, or automate workflow maintenance across many repositories then this tool is likely relevant. The recent 0.08 release bumps the Perl setup action and fixes analyzer false positives around outdated runner detection while tightening matching logic and aligning analyzer and fixer rules so flagged issues are reliably fixable.
SAML bindings and protocol implementation
Net::SAML2 is a Perl library for implementing the Service Provider side of SAML 2.0 Web Browser Single Sign On, letting your application create AuthnRequests, sign and verify Redirect and POST bindings, process responses from Identity Providers, decrypt EncryptedAssertions and generate or consume metadata. It is mature and widely tested against providers such as Auth0, Microsoft Azure, Google GSuite, Okta, Keycloak, ADFS and Shibboleth, and supports both signing and signature verification workflows. Recent releases harden security by requiring a trust anchor (cacert or cert_text) for Response and Assertion verification, add defenses against XML signature wrapping, and fix several CVEs, so upgrading is recommended. Note that Net::SAML2 is SP-side only and expects XML metadata from the IdP.
File-Rotate-Simple
Release | 7 Aug 2026 02:42 PM | Author: RRWO | Version: v0.4.0
No-frills file rotation
File::Rotate::Simple is a lightweight, no-frills Perl utility for rotating files by renaming them with numeric suffixes so you keep a simple set of backups. It can increment existing rotation numbers, limit kept files by count or by age in days, and is usable via an object interface, a legacy method call, or an exported function for quick scripts. You can customize the starting number, apply timestamped extensions using strftime with a special %# placeholder for the rotation number, replace or append extensions to preserve original suffixes, and optionally touch the file after rotation. The time attribute accepts Time::Piece and, since v0.4.0, DateTime::Lite and DateTime::Tiny objects. The module intentionally keeps behavior simple and does not track or fill gaps in rotation sequences. Recent changes include enhanced time object support and a security fix to avoid touching destinations of dangling symlinks when rotating (CVE-2026-17435). Note that current releases require Perl 5.14 or later and older Perl users should use the v0.2.x series.
Params-Get
Release | 7 Aug 2026 01:52 PM | Author: NHORNE | Version: 0.16
Normalise subroutine arguments regardless of calling convention
Params::Get provides a single helper, get_params, that turns whatever a Perl caller might hand your subroutine into a consistent hash reference so you can write one simple normalisation call at the top of each public method instead of reimplementing argument parsing over and over. It understands the common Perl styles including a lone hashref, named key/value pairs, a single scalar tied to a default key, an arrayref shorthand or \@_, scalarrefs, CODE refs or blessed objects, and an arrayref of positional key names, and it pairs nicely with Params::Validate::Strict and Return::Set to enforce input and output contracts. The function returns a hashref on success or undef in the documented empty case and will croak or confess on misuse so bugs are reported from the caller frame. Be aware of a few documented limitations such as the fast-path that treats a single hashref as the hash rather than as a value for a default key, ambiguity when a caller passes a single empty arrayref, silent overwriting of duplicate keys in flat lists, and the lack of a way to mark a scalar default as optional. The current 0.16 release tightens edge-case handling, removes some redundant checks, improves performance of common paths, and adds extended security and unit tests.
Perl-Tidy
Release | 7 Aug 2026 01:27 PM | Author: SHANCOCK | Version: 20260808
Upvotes: 149 | CPAN Testers: Pass 100.0%
Indent and reformat perl scripts
Perl::Tidy is a module that brings the perltidy formatter into your Perl programs so you can parse, beautify, and analyze Perl source from code rather than the command line. You can feed it files, strings, arrays or stream objects and capture output, errors and logs, pass command-line style options or a perltidyrc, and hook in prefilters, postfilters or a formatter callback to inspect tokenized lines for custom processing. It is useful for editors, linters, automated formatting in build and CI systems, or any tool that needs to rewrite or report on Perl code while preserving control over encoding and error handling. The distribution is mature and actively maintained and the 20260808 release fixes a rare tokenization instability around an eval/map pattern and improves here-doc handling and related warnings, making the formatter more robust for tricky edge cases. The module is distributed under the GNU General Public License.
Imager-Font-W32
Release | 7 Aug 2026 11:59 AM | Author: TONYC | Version: 0.97
Win32 font driver for Imager
Imager::Font::W32 brings Windows GDI font rendering to the Imager image library so Perl programs on Win32 can draw text using native Windows fonts. You obtain a font with Imager::Font->new specifying type => "w32" and then pass that font to Imager methods like string to render text onto images. It is intended for Windows-only use when you want native font appearance and metrics in generated images. Note that the module was renamed after older Imager releases could mistakenly report Win32 font support when an unrelated Win32.pm was present.
Imager-Font-FT2
Release | 7 Aug 2026 11:53 AM | Author: TONYC | Version: 1.005
FreeType 2 font driver for Imager
Imager::Font::FT2 is the FreeType 2 based font backend for the Imager image library that lets you load TrueType and other FreeType-supported fonts and draw text into images via Imager::Font (for example, Imager::Font->new(file => "foo.ttf", type => "ft2")). It is intended for anyone using Imager who needs reliable font rendering, including anti-aliased and non-aliased text, glyph names and related font queries, and relies on the system FreeType 2 library at build and runtime. The module has had a few packaging and build fixes to improve compatibility with newer FreeType releases and toolchains and to clean up warnings and memory-test issues, and there is a historical caveat that older Imager releases used a different module name which could confuse probe logic on systems without FreeType installed. If you use Imager and need robust font support from the system FreeType implementation, this module is the appropriate backend to choose.
Imager-File-TIFF
Release | 7 Aug 2026 11:53 AM | Author: TONYC | Version: 1.006
TIFF image file support for Imager
Imager::File::TIFF integrates libtiff support into the Imager framework so Perl programs can read and write TIFF images, typically by calling Imager->read or Imager->write; it also provides class methods to list available TIFF compression codecs with their numeric ids and names and to report the libtiff build date, build version and runtime library version, which helps when choosing compression options or diagnosing compatibility.
Imager-File-PNG
Release | 7 Aug 2026 11:53 AM | Author: TONYC | Version: 1.003
PNG Image file support for Imager
Imager::File::PNG provides PNG image read and write support for the Imager toolkit, letting you load and save PNG files (including paletted, interlaced and 16‑bit/sample images) through Imager in a straightforward way. It exposes low level class methods to read and write PNG data from Imager::IO objects, which are useful for related formats that encapsulate PNG such as APNG or ICO and for other advanced embedding scenarios. The module also supports metadata handling and lets you control things like zlib compression level when writing files. Recent updates cleaned up build warnings and refreshed the bundled Devel::CheckLib helper to improve compatibility and compilation robustness.
Imager-File-JPEG
Release | 7 Aug 2026 11:53 AM | Author: TONYC | Version: 1.005
JPEG Image file support for Imager
Imager::File::JPEG is the Imager extension that adds robust JPEG read and write support to the Imager image toolkit, letting Perl programs load, save and control JPEG images from within Imager. It exposes high-level controls for common JPEG features such as progressive output, optimization, subsampling, smoothing and restart markers and it also surfaces more advanced libjpeg-specific knobs including arithmetic coding, JFIF header control and mozjpeg tuning and compression profile settings. The module reports which libjpeg variant it was built against and its version, and provides helpers to detect libjpeg-turbo or mozjpeg and whether encoding or decoding of arithmetic coding is supported so you can adapt behavior to the available library. It integrates EXIF and IPTC handling via Imager and the recent releases include security and stability fixes, including patched EXIF parsing issues and a memory-leak fix, making it suitable for projects that need reliable, configurable JPEG handling in Perl.
Imager-File-GIF
Release | 7 Aug 2026 11:52 AM | Author: TONYC | Version: 1.005
GIF Image file support for Imager
Imager::File::GIF is the GIF reader and writer plugin for the Imager Perl image library, letting Perl scripts load and save GIF images through the Imager object model. It plugs into Imager so you can use familiar Imager methods to handle GIF files, and detailed options and behavior are documented in Imager::Files. Use this module when you need simple, integrated GIF input/output support within Imager-based image processing.
Perl extension for Generating 24 bit Images
Imager is a mature Perl image library for creating, manipulating and saving full color images in a wide range of formats. It makes common tasks easy from simple scripts such as resizing or thumbnailing to more advanced work like drawing primitives and text, alpha blending, color conversion, filtering and matrix transforms, and it can read and write PNG, JPEG, GIF, TIFF, ICO/CUR and many other formats via optional format handlers. You work with image objects created by Imager->new, call methods such as scale, crop, filter, paste and string, and then write the result to disk, so it is a good fit for web backends, batch image processing and small graphics tools where you want direct control from Perl. The project is actively maintained and recent releases include important security and robustness fixes to EXIF/JPEG/GIF/TIFF handling, so upgrading to the latest version is recommended.
Search-Trigram
Release | 7 Aug 2026 11:41 AM | Author: LNATION | Version: 0.02
Trigram inverted index search with Dice coefficient scoring
Search::Trigram is a compact, in-memory trigram inverted-index for Perl that makes it easy to add UTF-8 documents and run fast fuzzy or substring-style searches. You add texts and get back numeric ids, then search with a query string to receive a ranked list of matches scored by the Dice coefficient over shared trigrams, with case-insensitive matching at the byte level and a default result limit of 10. The module supports marking documents deleted and reclaiming space with an optimize call, clearing the whole index, and querying counts of live documents and distinct trigrams. For extension authors there is a documented C ABI so other XS code can drive the same index without a Perl frame, and the ABI is designed to avoid cross-module memory and ownership pitfalls by keeping object lifetime in Perl and returning borrowed text pointers that are invalidated on mutation.
Catalyst-View-ChromePDF
Release | 7 Aug 2026 11:23 AM | Author: RRWO | Version: v0.1.0
Convert HTML (or TT) content to PDF using Chrome
Catalyst::View::ChromePDF is a Catalyst view that renders HTML or Template‑Toolkit output to PDF by driving Chrome or a Chrome‑compatible browser through WWW::Mechanize::Chrome, making it a modern replacement for Catalyst::View::Wkhtmltopdf. You configure it in your app and stash a pdf hash with either a template or raw HTML and options like page size, orientation, download disposition and filename, or you can pass an existing mechanize instance or chrome launch arguments. It intentionally mirrors familiar wkhtmltopdf settings where possible while noting some differences such as lowercase orientation and the need to supply Chrome launch executable via chrome_args, and it currently does not support margins, DPI, or image quality options. Be aware that temporary HTML and PDF files are written to tmpdir and may remain after failures or when returning filehandles so you should arrange periodic cleanup for sensitive data. The module requires Perl 5.24 or newer and the source and issue tracker are on GitHub.
Lingua-famibeib
Release | 7 Aug 2026 11:06 AM | Author: LION | Version: v0.05
Module to interact with the famibeib language
Lingua::famibeib is the top-level Perl module for working with famibeib, an artificial language, and serves as the entry point to a small ecosystem of helpers for parsing, manipulating, and generating famibeib text. It ties together submodules that focus on text handling, sentence-level operations, and word-level details while integrating with Data::Identifier so words and modifiers can be registered and discovered. The distribution includes practical features such as number-word parsing, main-verb resolution and other grammar-aware utilities, and it also provides experimental tools like a proper-name generator and visual markers for words in display modules. Recent updates added a Wellknown helper module, IDE annotations, improved verb and adjective parsing, and support for registering generators, making the package convenient for developers building parsers, generators, or language tooling around famibeib.
The Sidef Programming Language - A modern, high-level programming language
Sidef is a modern, multi-paradigm programming language packaged as a Perl module so you can embed, compile, optimize, and execute Sidef code from Perl and reuse the entire CPAN ecosystem. It blends object-oriented and functional features with a rich numeric type system that includes arbitrary-precision integers, rationals, floats and complex numbers, and it offers conveniences like pattern matching, lazy evaluation, multiple dispatch, a REPL, AST-level parsing and transformation, and the ability to compile Sidef to readable Perl for inspection or high-performance deployment. The module supports multi-level optimization and optional DBM-backed caching to speed repeated runs and can use GMP/MPFR/MPC or optional Math::GMP* libraries and a PARI/GP backend for heavy numeric workloads. If you embed Sidef expect some operational details to consider such as required native math libraries for best performance, the DBM cache not being thread-safe without external coordination, and Unicode behavior relying on Perl itself. Note in the recent 26.08 release there is a breaking change: the regex union operator now performs alternation rather than concatenation, so patterns using the old behavior may need updating.
Non-blocking DBI on your event loop
DBIx::Loop provides a non-blocking wrapper around DBI so you can run database work without stalling an event loop. It exposes a future-based API where query and do return futures that integrate with your event loop via a small adapter for IO::Async, Mojo::IOLoop, AnyEvent and others. At connect time it chooses one of two backends: a universal worker pool that runs blocking DBD calls in separate worker processes and works with any DBD including SQLite, or a native file-descriptor async path for DBD::Pg that drives libpq directly and avoids worker serialization. Results come back as simple structures so query yields rows as arrayrefs plus a columns list and do yields rows_affected and an optional insert_id. Transactions are supported and pinned to a single connection so you can run BEGIN and COMMIT safely inside the async model. DBIx::Loop is not an event loop itself so you must supply an adapter, and its goal is latency isolation and concurrency rather than raw per-query speed. If you run an event-driven server and need a straightforward future-based way to use DBI without blocking, this module is likely a good fit.
CPAN-MetaCurator
Release | 7 Aug 2026 07:05 AM | Author: RSAVAGE | Version: 1.29
Manage a database of curated Perl modules
CPAN::MetaCurator is a maintenance toolkit for the cpan.metacurator.sqlite database that helps you curate and publish CPAN metadata and Perl wiki content. It bundles utilities to prepare wiki content, export Perl.Wiki.html, convert those exports into a jsTree-friendly structure for web presentation, rebuild the Perl Wiki tree, patch an index.html and upload the results, and it converts Changes into a machine-readable Changelog.ini via Module::Metadata::Changes. The distribution follows a simple versioning rule where versions below 1.00 are development and 1.00 and up are production, and it is maintained by Ron Savage with source and issues tracked on GitHub and RT. The code is released under the Perl 5 license and is intended for anyone who needs a practical, open source way to manage CPAN metadata and publish Perl wiki content.
Getopt-Guided
Release | 7 Aug 2026 06:57 AM | Author: SVW | Version: v3.2.3
Getopts implementation that follows POSIX utility guidelines
Getopt::Guided is a POSIX-compliant option parser for Perl that provides an iterator-style getopts implementation and a small toolkit to map parsed options into useful program state. Use getopts to parse @ARGV (or a supplied argument array) into a hash containing flags, single-value options, multi-value lists, and name=value maps, with support for negatable flags and incrementable flags like verbosity counters. Use processopts to attach scalar, array, hash, or callback destinations so your options are applied in a defined semantic order and to handle actions like printing version info. readopts can prepend defaults from a per-user rc file located via XDG_CONFIG_HOME with a sensible fallback and print_version_info follows GNU-style recommendations when you want a -V option. The module exports its functions and a few constants on request and recent releases added map-style options with HASH destinations for key=value collections and improved behavior when XDG_CONFIG_HOME is not set.
Markdown-Simple
Release | 7 Aug 2026 06:51 AM | Author: LNATION | Version: 0.19
Markdown to HTML
Markdown::Simple is a compact, compiled Perl extension that converts Markdown into HTML with GitHub Flavored Markdown enabled by default while letting you opt into strict CommonMark or toggle individual features like tables, strikethrough, task lists, autolinks, raw HTML handling, and hard line breaks. It exposes a simple functional API for one-off conversions and an object interface that reuses an internal parser arena to avoid repeated allocations when rendering many documents, and it also provides strip_markdown to produce plain text. Optional extras include fenced-code syntax highlighting via Eshu and runtime SIMD acceleration for faster parsing, and you can disable individual Markdown constructs if you need literal passthrough. Note that it is an XS module so it builds native code during installation and may require a C toolchain. The recent 0.19 release fixes memory leaks discovered during rendering and scanning.
Version-Semantic
Release | 7 Aug 2026 06:14 AM | Author: SVW | Version: v2.1.1
Immutable SemVer scheme based version class
Version::Semantic is a Perl class for representing immutable Semantic Versioning (SemVer 2.0.0) numbers as objects so you can parse, print, compare and increment real semver strings including optional "v" prefixes, pre-release tags and build metadata. You create objects with parse() or new(), inspect attributes like major, minor, patch, prefix, pre_release and build, stringify versions for output, and use the built-in comparison behavior to order versions according to SemVer precedence. It also exposes the regular expression used for parsing via semver_re() and provides an increment() method that supports major, minor, patch and an experimental "trial" strategy for TRIAL pre-releases. Note that as of v2.0.0 parse() now returns undef for unparsable strings by default and only throws an error if you request a fatal parse, so code that relied on earlier behavior should be updated. This module is a good fit when you need accurate, comparable SemVer objects in Perl scripts or release tooling.
Perl Wrapper for the Simple DirectMedia Layer 3.0
SDL3 is a Perl binding for the SDL 3.0 library that gives Perl programs cross-platform access to low-level multimedia and input features such as windowing, 2D rendering, GPU compute, audio, keyboard, mouse, gamepads, timers, threads and more. It exposes the full SDL API through selectable import tags so you can pull in only the subsystems you need or use the :all tag for everything. The module supports SDL's callback-based application entry points and maps the hundreds of SDL types and functions to Perl, with the usual caution about using low-level atomics unless you are experienced in lockless concurrency. Documentation links to the upstream SDL3 wiki for detailed behavior and function reference. Recent releases (v0.0.5) bundled a large set of working example programs and demos into the distribution to make it much easier to learn by example, so this is a practical choice if you want to write games, multimedia tools, or platform-agnostic GUI and hardware-access code in Perl.
Class-Simple-Cached
Release | 7 Aug 2026 02:07 AM | Author: NHORNE | Version: 0.07
CPAN Testers: Pass 100.0%
Cache getter results for any get/set object
Class::Simple::Cached is a small, transparent wrapper that adds a read cache to any Class::Simple‑style get/set object so repeated getter calls avoid expensive recomputation or remote round trips. You give it a cache backend either as a CHI-compatible object or a plain hashref and a target object to wrap, and the wrapper proxies all method calls so zero‑argument calls are served from the cache when present while setters always write through to the wrapped object and update the cache. Cache coherency is not automatic so you must invalidate entries yourself if the inner object can change by other means. The module is handy for speeding up read-heavy access patterns but has a few documented limitations: setter arguments are not part of the cache key so different setter calls can overwrite each other, falsy scalars like 0 or the empty string are not cached, a special sentinel string represents cached undef (so that literal string can collide), DESTROY may purge a shared CHI cache globally, and it does not work with Memoize. The recent 0.07 release tightened security around constructor argument injection and sentinel comparisons for overloaded values and also delivers several performance improvements and expanded tests.
HTML-Defang
Release | 6 Aug 2026 11:11 PM | Author: ROBM | Version: 1.09
Cleans HTML as well as CSS of scripting and other executable contents, and neutralises XSS attacks
HTML::Defang is a Perl library for safely cleaning HTML and CSS by removing executable content and neutralising XSS vectors while keeping safe markup intact. It uses a whitelist approach and a custom parser designed to handle real world, messy HTML the way browsers do, and it can strip or comment out scripts, embedded objects, dangerous attributes, URLs and CSS declarations. The module is highly customizable through callbacks that let you inspect or modify tags, attributes, URLs, style rules and plain content, and attribute values are passed as references so you can alter output in place. Options let you fix mismatched tags, return body-only content, delete defanged fragments instead of commenting them out, and control how already-defanged names are handled. Typical uses are sanitising user-supplied HTML in web apps, email rendering or any system that must accept rich content safely. A recent and important fix makes title, textarea, noembed and noframes content be treated as opaque raw text, closing an XSS bypass where a literal end tag plus active markup could be smuggled inside what previously looked like a harmless comment.
DBIx-QuickDB
Release | 6 Aug 2026 10:38 PM | Author: EXODIST | Version: 0.000062
Upvotes: 4 | CPAN Testers: Pass 100.0%
Quickly start a db server
DBIx::QuickDB lets you spin up throwaway database servers quickly for testing and local development, supporting PostgreSQL, MySQL/MariaDB, SQLite and more via pluggable drivers. You can create named databases at compile-time as convenient constants or build them at runtime and get DBI-ready handles, control startup/teardown, point to an existing data directory or let QDB create and clean temporary ones, and preload schema SQL per driver. The API is simple: DBIx::QuickDB->build_db(...) creates or returns an instance and check_driver helps you probe available backends, while environment variables such as QDB_TMPDIR and DB_VERBOSE let you tune temp paths and server logging. Recent releases have hardened pooling and cloning, sanitizing and PID-tagging instance directories to avoid cross-process collisions, improved watcher behavior so servers are reaped cleanly and errors report clearer diagnostics, and added retries and safer teardown on Windows and slow hosts, making ephemeral databases far more reliable in parallel or forked test runs. If you need reliable, configurable ephemeral databases for tests or development, DBIx::QuickDB is a lightweight, production-hardened choice.