Tdewolff-minify

Latest version: v2.20.34

Safety actively analyzes 638418 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 7 of 20

2.12.9

- [HTML: fix panic for malformed IE conditional comment,](https://github.com/tdewolff/minify/commit/68d601fccd01e81cacfec0605987b21448df481d) [fixes](https://github.com/tdewolff/minify/commit/68d601fccd01e81cacfec0605987b21448df481d) https://github.com/tdewolff/minify/issues/596
- [cmd: fix bundling of JS files when files end in a comment,](https://github.com/tdewolff/minify/commit/644e2e1f874bf3a896cd0fd45adf758cdac23f69) [fixes](https://github.com/tdewolff/minify/commit/644e2e1f874bf3a896cd0fd45adf758cdac23f69) https://github.com/tdewolff/minify/issues/594
- [SVG: keep attribute value when empty, see](https://github.com/tdewolff/minify/commit/8c966ad0deb9f833d2d3e03d64ffdc29fce09d23) https://github.com/tdewolff/minify/issues/576
- [JS: fix bug in replacing unicode escapes; don't reparse already replaced escapes](https://github.com/tdewolff/minify/commit/34d9a1213f5c8e70b30d492be09e875fb2552de0)
- [CSS: fix bug for unsupported nested components,](https://github.com/tdewolff/minify/commit/770d012f44f9c609f6a24968333676268a5dc15e) [fixes](https://github.com/tdewolff/minify/commit/770d012f44f9c609f6a24968333676268a5dc15e) https://github.com/tdewolff/minify/issues/602

2.12.8

- [Update Go version to 1.18,](https://github.com/tdewolff/minify/commit/2e3aa6e6b801227c360b719d9784528e4b0d08df) [fixes](https://github.com/tdewolff/minify/commit/2e3aa6e6b801227c360b719d9784528e4b0d08df) https://github.com/tdewolff/minify/pull/593
- [HTML: fix spacing around <script></script>;](https://github.com/tdewolff/minify/commit/1d436e3dde1eaf8a965e6a754ff8efc4cd6cd17f) [fixes](https://github.com/tdewolff/minify/commit/1d436e3dde1eaf8a965e6a754ff8efc4cd6cd17f) https://github.com/tdewolff/minify/issues/592
- [HTML: fix KeepWhitespace after block end tag; improves solution of](https://github.com/tdewolff/minify/commit/f90bf0b56ad597bfaa75f1c56c3be6c8cafd255a) https://github.com/tdewolff/minify/issues/442
- [HTML: add and improve tag traits for whitespace handling](https://github.com/tdewolff/minify/commit/94fc76e722d68d533dd4dca47d67a0d1eee7566d)
- [HTML: fix whitespace removal for inline tags, ie. keep space in <del> a </del> for most cases](https://github.com/tdewolff/minify/commit/43cf162fd2160602eece2e4fd830e7f1c432c890)
- [JS: keep bang comments,](https://github.com/tdewolff/minify/commit/de84f71b29e13a7835e484891ed15d1f9b227d4b) [fixes](https://github.com/tdewolff/minify/commit/de84f71b29e13a7835e484891ed15d1f9b227d4b) https://github.com/tdewolff/minify/issues/552
- [cmd: trailing slash in source path will not copy directory itself but all the files inside](https://github.com/tdewolff/minify/commit/b59895a2872f8d4a374b9e85f9c36ece4ba5718b)
- [cmd: trailing slash for destination path resolves ambiguity when writing to a directory](https://github.com/tdewolff/minify/commit/3dedbc784408b14c4f7b128ce226c01fdf058218)
- [cmd: allow use of dash - for source/destination to mean stdin/stdout](https://github.com/tdewolff/minify/commit/e87a716b30a1433c73ac259812a8b0926847b088)
- [cmd: better error messages when using stdin/stdout in combination with --recursive or --bundle](https://github.com/tdewolff/minify/commit/65bbd3b7bcef06d21fac1af6a0ef7ff70a49800a)

2.12.7

- [JS: fix bundling JS file separator,](https://github.com/tdewolff/minify/commit/51deaa742ea0f31fd57c0f65fe237e38f224aede) [fixes](https://github.com/tdewolff/minify/commit/51deaa742ea0f31fd57c0f65fe237e38f224aede) https://github.com/tdewolff/minify/issues/584
- cmd: preserve mode,ownership,timestamps on all created directories, see https://github.com/tdewolff/minify/issues/562
- [cmd: remove deprecated --preserve-links and add --preserve=all as option, see https://github.com/tdewolff/minify/issues/562](https://github.com/tdewolff/minify/commit/c9ecb52b2eeef8a812d01c23289849d3287d04ed)
- [JS: don't convert \0,\x00,\u0000 to literal NULL as it breaks RegExp; convert \x00,\u0000 to \0 only if it can't possibly be an octal escape sequence (see https://github.com/tdewolff/minify/issues/577); fixes https://github.com/tdewolff/minify/issues/585](https://github.com/tdewolff/minify/commit/bf2187d141bb46a807174779f6cbd3a16eb680f1)

2.12.6

- [SVG: keep empty attributes;](https://github.com/tdewolff/minify/commit/8bbcb00eacd191f666d730df1137e8babbfe6f3a) [fixes](https://github.com/tdewolff/minify/commit/8bbcb00eacd191f666d730df1137e8babbfe6f3a) https://github.com/tdewolff/minify/issues/576
- [JS: use literal NULL instead of escaped zero in strings,](https://github.com/tdewolff/minify/commit/9145984972756c8b17f7edaf4d6e2391cb3fef65) [fixes](https://github.com/tdewolff/minify/commit/9145984972756c8b17f7edaf4d6e2391cb3fef65) https://github.com/tdewolff/minify/issues/577
- [JS: fix parsing of string expressions at the start of statement lists that are no UseStrictDirectives](https://github.com/tdewolff/minify/commit/7d47c2c620e37388d39b21db1131b8480ef71df4)
- [JS: decode unicode escape sequences in strings to UTF-8 literals](https://github.com/tdewolff/minify/commit/9fbf9105be774ca8d4174c54f08525c799269319)
- [JS: fix unicode string escape when not a valid UTF-8 character](https://github.com/tdewolff/minify/commit/03bc264ebf0ec6ae46bdf9c4f4327b7e9e4c77d9)
- [HTML: do not convert lang attribute value to lower](https://github.com/tdewolff/minify/commit/769fa7dca09d3371d6d27497f66a9d8599bdcafc) https://github.com/tdewolff/minify/issues/579
- [JS: fix race condition for ECMAScript version and remove deprecated NoNullishOperator (use Version instead), fixes https://github.com/tdewolff/minify/issues/582](https://github.com/tdewolff/minify/commit/a1ee1775baf8191000849f42d63ef73dac4ec12b)

2.12.5

- [CSS: fix order in background-position:center left; see](https://github.com/tdewolff/minify/commit/340df5d9dd66a97124891b224b9da417372fe04f) https://github.com/tdewolff/minify/pull/222
- [JS: support different ECMAScript version to toggle optimizations, merge with NoNullishOperator and add NoOptionalCatchParameter, fixes](https://github.com/tdewolff/minify/commit/a52d6063a776119f623fc6d1736a27bb59d26ec1) https://github.com/tdewolff/minify/issues/540
- [HTML: make mediatype parameters case sensitive,](https://github.com/tdewolff/minify/commit/4eb3b3f2bec9faa04da856c3d2ff6726b25b74b1) [fixes](https://github.com/tdewolff/minify/commit/4eb3b3f2bec9faa04da856c3d2ff6726b25b74b1) https://github.com/tdewolff/minify/issues/545
- [HTML: fix last commit, see](https://github.com/tdewolff/minify/commit/d8f68ae4383ccd7e91027a109ae0155f55ccb8a3) https://github.com/tdewolff/minify/issues/545
- [HTML: don't replace &amp; by & when followed by what could be an entity, even though it is not terminated by a semicolon (as the spec requires), fixes ](https://github.com/tdewolff/minify/commit/16bb165d2dae21e4b13811e5070911718a5766f9) https://github.com/tdewolff/minify/issues/546
- [CSS: limit too many nested functions](https://github.com/tdewolff/minify/commit/f70b78faf3594966597dd30d91f02dee44d09e64)
- [SVG: don't remove rect with zero width or height,](https://github.com/tdewolff/minify/commit/8457bd33fd230b766984c65ba311cc3a776d23c4) [fixes](https://github.com/tdewolff/minify/commit/8457bd33fd230b766984c65ba311cc3a776d23c4) https://github.com/tdewolff/minify/issues/557
- [cmd: copy file if minify fails,](https://github.com/tdewolff/minify/commit/09565512e0e2990c786e2ade9efc5f9225016864) [fixes](https://github.com/tdewolff/minify/commit/09565512e0e2990c786e2ade9efc5f9225016864) https://github.com/tdewolff/minify/issues/560
- [cmd: add --incluce/--exclude filters, and allow comma-separated patterns for --match/--include/--exclude, see](https://github.com/tdewolff/minify/commit/b6e161a3cc06fb727374794463b02a06a6f1f962) https://github.com/tdewolff/minify/issues/560
- [cmd: throw error when using multiple input files (such as when using *) to a non-existing output directory in line with cp behaviour, fixes](https://github.com/tdewolff/minify/commit/f123d2ffd1301f50e3c19d54e1af87eb022be1bc) https://github.com/tdewolff/minify/issues/562

2.12.4

- [JS: fix escaping in template literal with $ and ${ characters, fixes](https://github.com/tdewolff/minify/commit/2b1fa676b9f62ff1206ffd4d8a24b0469ed51d78) https://github.com/tdewolff/minify/issues/538

Page 7 of 20

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.