Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.4] - 2026-03-15

### Security
- Updated urllib3 from >=2.5.0 to >=2.6.3 to address multiple high-severity vulnerabilities:
- CVE-2026-21441: Decompression-bomb safeguards bypassed when following HTTP redirects (streaming API)
- CVE-2025-66471: Streaming API improperly handles highly compressed data
- CVE-2025-66418: Unbounded number of links in the decompression chain

## [1.2.3] - 2025-10-27

### Changed
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "purl2src"
version = "1.2.3"
version = "1.2.4"
description = "Translate Package URLs (PURLs) into validated download URLs for source code artifacts"
readme = "README.md"
requires-python = ">=3.8"
Expand All @@ -30,7 +30,7 @@ classifiers = [
dependencies = [
"click>=8.0.0",
"requests>=2.28.0",
"urllib3>=2.5.0",
"urllib3>=2.6.3",
]

[project.optional-dependencies]
Expand Down
Loading