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
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.4] - 2026-02-20

### Fixed
- Handle XML entity references (e.g. `&`) in element text, matching Python feedparser behavior (#59, #60)

### Changed
- Update `pyo3` from 0.27.2 to 0.28.x to fix memory corruption vulnerability RUSTSEC-2026-0013 (#51, #62)
- Switch CI security audit from `npm audit` to `pnpm audit` for correct override handling (#62)
- Bump `minimatch` to >=10.2.1 to resolve ReDoS vulnerability GHSA-3ppc-4f35-3m26 (#62)
- Upgrade `@biomejs/biome` to 2.4.0 (#49, #54, #57)
- Make Rust coverage upload non-blocking in CI
- Bump `lewagon/wait-on-check-action` from 1.3.4 to 1.5.0 (#50)
- Add dependabot auto-merge workflow

### Dependencies
- Bump `bytes` from 1.11.0 to 1.11.1 (#52)
- Bump `memchr` from 2.7.6 to 2.8.0 (#56)
- Bump `thiserror` in the patch-updates group (#48)
- Bump patch-updates group with multiple updates (#53, #55, #58)

## [0.4.3] - 2026-01-15

### Added
Expand Down Expand Up @@ -187,7 +207,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Comprehensive test coverage
- Documentation with examples

[Unreleased]: https://github.com/bug-ops/feedparser-rs/compare/v0.4.3...HEAD
[Unreleased]: https://github.com/bug-ops/feedparser-rs/compare/v0.4.4...HEAD
[0.4.4]: https://github.com/bug-ops/feedparser-rs/compare/v0.4.3...v0.4.4
[0.4.3]: https://github.com/bug-ops/feedparser-rs/compare/v0.4.2...v0.4.3
[0.4.2]: https://github.com/bug-ops/feedparser-rs/compare/v0.4.1...v0.4.2
[0.4.1]: https://github.com/bug-ops/feedparser-rs/compare/v0.4.0...v0.4.1
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.4.3"
version = "0.4.4"
edition = "2024"
rust-version = "1.88.0"
authors = ["bug-ops"]
Expand Down
2 changes: 1 addition & 1 deletion crates/feedparser-rs-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "feedparser-rs",
"version": "0.4.3",
"version": "0.4.4",
"description": "High-performance RSS/Atom/JSON Feed parser for Node.js",
"main": "index.js",
"types": "index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion crates/feedparser-rs-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "feedparser-rs"
version = "0.4.3"
version = "0.4.4"
description = "High-performance RSS/Atom/JSON Feed parser with feedparser-compatible API"
readme = "README.md"
license = { text = "MIT OR Apache-2.0" }
Expand Down
Loading