Update to 1.68
Upstream changes:
Changes for version 1.68 - 2025-12-21
Changes to AlphaVantage.pm and CurrencyRates/AlphaVantage.pm to throttle queries - Issue #546
YahooJSON.pm - Add additional fields/labels - PR #544
New Module, USBonds.pm
MarketWatch.pm - Added headers to fix 401 code - Issue #542
Modified AEX.pm to return no data available is currency indicator is '%' (bonds return percentage of par/facevalue) - Issue #539
Fixed YahooWeb.pm - Issue #533 - PR #538
Removed CMBChina.pm - no longer working - Issue #534
Rewrote Union.pm for URL that returns JSON - Issue #516
Modified parsing in BVB.pm - Issue #513
Update to 0.003009
Upstream changes:
0.003009 2024-08-20
- fixed smart match warnings on perls 5.38 or greater
- stop enabling smart match support on perl 5.41 or greater
- many packaging cleanups
- removed direct dependency on syntax.pm
Update to 1.35
Upstream changes:
v1.35
What's Changed:
Add substr_count()
Move away from Dist::Milla
fix typos in Changes by @mauke in #4
Fix bug in string-containment functions by @polettix in #7
New Contributors:
@mauke made their first contribution in #4
@polettix made their first contribution in #7
Update to 1.02
Upstream changes:
version 1.02: Tue 9 Dec 13:49:31 CET 2025
Changes:
- remove the blank before kB in BYTES.
Fixes:
- remove correct redundant separator from thousands in %d
- do not use %F and %T in date formats, for broken Windows
github issue #2 [Phil Perry]
Improvements:
- flexible format for the DT modifier
- formats for DATE modifier
version 1.01: Thu 4 Dec 16:43:36 CET 2025
Improvements:
- add UNKNOWN modifier
- doc improvements
version 1.00: Wed 3 Dec 13:21:40 CET 2025
Improvements:
[21 lines not shown]
Update to 0.104007
Upstream changes:
0.104007 2025-05-04 10:08:25+02:00 Europe/Berlin
- update GPL v1 text to current version
- CPAN::Meta v1 "gpl" license is explicitly GPL v2
- Improve recognition for Apache 1.1 & 2.0
security/create-cert: Update to 2.12
While here add WWW.
Changes since 2.11:
- Try to avoid leaking temp files after switching to mktemp.
- getopt -> getopts
- Cleanup key if cert creation fails.
- Update to autoconf 2.72.
- Prefer "openssl rehash" (newer openssl) to c_rehash (sometimes
missing) using a patch from Michael Proto.
- Minor consession to ubuntu (where /bin/sh is dash).
[3 lines not shown]
Improve the rigor of function signatures and prototypes in gmake,
texinfo, and gmp sources in order to meet the C23 requirements of
gcc 15.2.1. (2nd try after the 1st try broke the build :( )
With these changes -current now also builds with gcc 15.2.1 on
Fedora 43 (using HOST_CFLAGS=-fpermissive). No functional changes
intended.
Patches are from (primarily) mrg@ and myself. Additional comments
and guidance from riastradh@ .
[VPlan] Fix use-after-free when iterating over live-ins directly.
getLiveIns returns an iterator to members of a dense map. The loop may
create new live-ins, which can trigger re-allocation of the underlying
dense map, causing use-after-free accesses for the iterator.
Make sure we iterate over a copy of the live-ins to avoid
use-after-free.
Fixes https://github.com/llvm/llvm-project/issues/173222.