1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
Change history for URI-PackageURL
2.24 2026-01-26
- Imported all PURL type definition files from https://package-url/purl-spec
- Added "URI::PackageURL::Type" helper class for normalize components,
validation and load the using PURL type definition schema file, generate
repository or download URLs and more
- Added "validate" param in "URI::PackageURL->new"
- Added "--validate" option to "purl-tool(1)" for check if the provided PURL
string is valid using the exit code ("0" - valid, "1" not valid)
- Added "--info TYPE" option to "purl-tool(1)" for display information about
provided PURL type (allowed components, repository, examples, etc.)
- Improved man pages for "purl-tool(1)" and "vers-tool(1)"
- Added PURL test cases from https://github.com/package-url/purl-spec (package-url/purl-spec#514)
- Added VERS test cases from https://github.com/package-url/vers-spec (package-url/vers-spec#28)
- Improved 'name' and 'namespace' parsing (package-url/purl-spec#582 - package-url/purl-spec#583)
- FIX NPM PURL string parser
- Writes some debug messages when checksums are not formatted correctly and
if there are unknown qualifiers.
- Added "URI::VersionRange->from_native" method
- Added "PURL" and "VERS" package alias for "URI::PackageURL" and "URI::VersionRange"
- Sync with PURL v1.0.0 spec
- Sync with VERS main spec
2.23 2025-07-11
- Updated CPAN PURL type spec
- Added PURL_LEGACY_CPAN_TYPE env
- Added "to_hash" helper
- Use "checksum" qualifier as singular (giterlizzi/perl-URI-PackageURL#15)
- Added getter/setter methods for PURL components (giterlizzi/perl-URI-PackageURL#16)
- Improved the support of "vers" qualifier (giterlizzi/perl-URI-PackageURL#17)
- Improved encoding
- Added support for "vers:none/*" and "vers:all/*" in "URI::VersionRange"
- Improved version comparator class loader in "URI::VersionRange"
- Updated tests
- Synced "test-suite-data.json" from "package-url/purl-spec"
2.22 2024-12-16
- Improved parsing of non-canonical PURL (package-url/purl-spec#363)
- Improved "URI::VersionRange->constraint_contains"
- Updated "maven" repository URL
- FIX typo in documentation
- Synced "test-suite-data.json" from "package-url/purl-spec"
2.21 2024-07-24
- Use RFC 2119 terms for CPAN purl type specification (sjn)
- Added "swid" purl type support
- Moved normalization and validation check in "URI::PackageURL::Util"
- Dropped support for "version_prefix" qualifier for "github", "gitlab" and
"bitbucket" PURL types in "purl_to_urls" util (pombredanne via giterlizzi/perl-URI-PackageURL#14)
2.20 2024-05-13
- Added support for the official "cpan" PURL type specification (giterlizzi/perl-URI-PackageURL#8)
- Added "Version Range" (vers) support (giterlizzi/perl-URI-PackageURL#12)
- Added "URI::VersionRange::Version::cpan" version comparator for "cpan" scheme
- Added "vers-tool(1)"
- FIX Apply percent-encoding in "subpath" in "to_string" method
2.11 2024-04-19
- Improved the cpan PURL type to be compatible with the 'PURL-TYPES' specification
(giterlizzi/perl-URI-PackageURL#8 - https://github.com/package-url/purl-spec/blob/master/PURL-TYPES.rst)
- Added "luarocks" PURL type support
- Improved test suite (giterlizzi/perl-URI-PackageURL#11)
- Renamed CLI package in "URI::PackageURL::App"
- Changed JSON module pre-requisite to "JSON::PP" to be compatible with CPAN Toolchain
(giterlizzi/perl-URI-PackageURL#12)
2.04 2023-11-16
- Added "docker", "bitbuket", "golang" support to
"URI::PackageURL::Util::purl_to_urls"
- Added new options for create canonical purl string using "purl-tool(1)"
(giterlizzi/perl-URI-PackageURL#9)
- Added sample scripts
- Removed empty "qualifier" keys in "URI::PackageURL->from_string"
2.03 2023-11-09
- Improved validation during encode and decode "purl" string
- Fixed CPAN repository URL
- FIX Qualifiers are case sensitive
(giterlizzi/perl-URI-PackageURL#4)
- FIX PURLs containing multiple namespaces segments parse incorrectly
(giterlizzi/perl-URI-PackageURL#5)
- FIX Incorrect parsing of PURLs that begin with "pkg:/"
(giterlizzi/perl-URI-PackageURL#6)
- Improved "t/99-official-purl-test-suite.t" test
2.02 2023-09-22
- Added core "JSON" module prerequisite in Makefile.PL (#4)
2.01 2023-09-17
- Added "repository_url" qualifier support for "cpan" PURL type
2.00 2023-06-13
- Added "purl-tool(1)" (giterlizzi/perl-URI-PackageURL#3)
- Added "URI::PackageURL::Util::purl_to_urls" helper
- Fixed name qualifier for "cpan" (giterlizzi/perl-URI-PackageURL#2)
- Fixed some little issues
1.10 2022-08-01
- Fixed "namespace vs name" (RT#143917)
- Fixed substitution warning when "version" component is not provided
in URI::PackageURL->from_string
1.02 2022-07-31
- Fixed decode when "namespace" component is "undef"
1.01 2022-07-26
- Fixed documentation and test prerequisite (JSON::PP)
1.00 2022-07-25
- First release of URI::PackageURL
|