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 @@ -4,8 +4,16 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [11.0.19](https://github.com/avoidwork/filesize.js/compare/11.0.18...11.0.19)

- fix: resolve audit findings — padding truncation, isNaN clarity, structuredClone [`#300`](https://github.com/avoidwork/filesize.js/pull/300)
- docs: add issue templates, security policy, and update contributing guide [`#299`](https://github.com/avoidwork/filesize.js/pull/299)

#### [11.0.18](https://github.com/avoidwork/filesize.js/compare/11.0.16...11.0.18)

> 25 June 2026

- chore: release v11.0.18 [`#295`](https://github.com/avoidwork/filesize.js/pull/295)
- fix: stop dropping digits when pad is combined with a locale [`#292`](https://github.com/avoidwork/filesize.js/pull/292)
- Bump oxlint from 1.70.0 to 1.71.0 [`#294`](https://github.com/avoidwork/filesize.js/pull/294)
- Bump oxfmt from 0.55.0 to 0.56.0 [`#293`](https://github.com/avoidwork/filesize.js/pull/293)
Expand Down
2 changes: 1 addition & 1 deletion dist/filesize.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @copyright 2026 Jason Mulligan <jason.mulligan@avoidwork.com>
* @license BSD-3-Clause
* @version 11.0.18
* @version 11.0.19
*/
'use strict';

Expand Down
2 changes: 1 addition & 1 deletion dist/filesize.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @copyright 2026 Jason Mulligan <jason.mulligan@avoidwork.com>
* @license BSD-3-Clause
* @version 11.0.18
* @version 11.0.19
*/
// Error Messages
const INVALID_NUMBER = "Invalid number";
Expand Down
2 changes: 1 addition & 1 deletion dist/filesize.min.js

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

2 changes: 1 addition & 1 deletion dist/filesize.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @copyright 2026 Jason Mulligan <jason.mulligan@avoidwork.com>
* @license BSD-3-Clause
* @version 11.0.18
* @version 11.0.19
*/
(function(g,f){typeof exports==='object'&&typeof module!=='undefined'?f(exports):typeof define==='function'&&define.amd?define(['exports'],f):(g=typeof globalThis!=='undefined'?globalThis:g||self,f(g.filesize={}));})(this,(function(exports){'use strict';// Error Messages
const INVALID_NUMBER = "Invalid number";
Expand Down
2 changes: 1 addition & 1 deletion dist/filesize.umd.min.js

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

4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "filesize",
"description": "Lightweight, zero-dependency JavaScript utility to convert bytes to human-readable strings with localization support",
"version": "11.0.18",
"version": "11.0.19",
"homepage": "https://filesizejs.com",
"author": "Jason Mulligan <jason.mulligan@avoidwork.com>",
"repository": {
Expand Down
Loading