Skip to content

Commit

Permalink
Release 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rgrove committed Oct 25, 2024
1 parent b852cd0 commit a7e2653
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,21 @@

All notable changes to parse-xml are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## 4.2.0 (2014-10-24)

Faster! Smaller! Better in ways you can't even see and probably don't care about! And still completely backwards compatible.

### Improved

- Parsing performance in Node.js 22 is up to 28% faster than version 4.1.0. Note that the performance gain will vary depending on the document being parsed.

- The minified bundle size has been reduced by a mind-blowing 87 bytes (uncompressed).

### Changed

- Moved initial parsing steps out of the `Parser` constructor and into a new `parse()` method. [#35](https://github.com/rgrove/parse-xml/pull/35)

This change is an internal refactoring that doesn't affect the public API, but may make error handling easier for people who like living dangerously and are using parse-xml internals in interesting ways.

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rgrove/parse-xml",
"version": "4.1.0",
"version": "4.2.0",
"description": "A fast, safe, compliant XML parser for Node.js and browsers.",
"keywords": [
"xml",
Expand Down

0 comments on commit a7e2653

Please sign in to comment.