Update dependency svgo to v3 - autoclosed #111
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^1.3.2
->^3.0.0
Release Notes
svg/svgo (svgo)
v3.3.2
Compare Source
Notice
An update on what happened with v3.3.0 and v3.3.1. While we have retained CJS support, the migration to EMS has changed the acceptable ways to import SVGO, in ways that users depended on before. This effectively made SVGO v3 a breaking change.
Rather than resolve or workaround these differences, we've opted to release SVGO v3.3.2, which is effectively a revert to v3.2.0, and deprecate versions v3.3.0 and v3.3.1. We'll then proceed to work on releasing v4 which will document the breaking changes, and feature further breaking changes that were slated for v4, like disabling
removeViewBox
by default.Before the v4.0.0 release, I'll put more focus on testing and use release candidates, just to help make the release go smoothly! 👍🏽
Sorry for the headache, and thanks for your patience.
v3.3.1
Compare Source
Notice
SVGO v3.3.0, which was meant to migrate to ESM without breaking CJS support, unfortunately broke CJS projects. There was a mistake with exports, so the
loadConfig
function wasn't available in the CJS bundle and lead to issues for many users.Thanks to everyone who raised the issue, and to @nuintun who submitted a pull request to resolve it so quickly.
I apologize for letting that breaking change through, and will aim to do better. Namely, by adding more tests to cover our exports, and any other public interface in general for each distribution of SVGO, so this doesn't happen again.
SVGO v3.3.1 should resolve the issue for CJS projects, but if you encounter anything else, do let us know by opening an issue on GitHub.
v3.3.0
Compare Source
Deprecated
This release introduced breaking changes, which have been reverted in v3.3.2. The bug fixes will be reintroduced in v4.0.0.
What's Changed
ESM
SVGO is now a dual package, serving for both Common JS and ESM usage. We believe there shouldn't be any problems, especially as SVGO as largely stateless, but feel free to open an issue if you encounter problems with this.
To be explicit, this is not a breaking change, and SVGO should continue to work in Common JS projects!
Thanks to @jdufresne for doing the bulk of the work.
Default Behavior
convertColors
, now converts all references to colors excluding references to IDs to lowercase. This can be disabled by settingconvertCase
tofalse
.Bug Fixes
cleanupIds
, treat both URI encoded and non-URI encoded IDs as the same. By @liuweifeng in #1982collapseGroups
, check styles as well as attributes. By @johnkenny54 in #1952collapseGroups
, move attributes atomically. By @johnkenny54 in https://github.com/svg/svgo/pull/1930convertPathData
, fix q control point when item is removed. By @KTibow in https://github.com/svg/svgo/pull/1927convertPathData
, preserve vertex for markers only paths. By @SethFalco in #1967mergePaths
, don't merge paths if attributes/styles depend depend on the nodes bounding box. By @johnkenny54 in #1964moveElemsAttrsToGroups
, no longer moves the transforms if group has thefilter
attribute. By @johnkenny54 in #1933prefixIds
, fixed issue where some IDs were not prefixed when style tag contained XML comments. By @john-neptune in #1942removeHiddenElems
, don't remove node if child element has a referenced ID. By @johnkenny54 in https://github.com/svg/svgo/pull/1925removeHiddenElems
, treatpath[opacity=0]
as a non-rendering node. By @johnkenny54 in #1948removeUselessDefs
, don't remove node if child element has an ID. By @johnkenny54 in https://github.com/svg/svgo/pull/1923-o
argument) ends with a trailing slash to a location that didn't exist. By @SethFalco in #1954SVG Optimization
convertColors
, introduce parameter to convert colors to common casing (lowercase/uppercase). By @JayLeininger in https://github.com/svg/svgo/pull/1692removeDeprecatedAttrs
, new plugin that is disabled by default to remove SVG attributes that are deprecated. By @jdufresne in #1869Metrics
Before and after using vectors from various sources, with the default preset of each respective version:
Before and after of the browser bundle of each respective version:
v3.2.0
Compare Source
What's Changed
Bug Fixes
q
was incorrectly converted tot
. By @KTibow in https://github.com/svg/svgo/pull/1889SVG Optimization
smartArcRounding
tofalse
. By @KTibow in https://github.com/svg/svgo/pull/1873convertToQ
tofalse
. By @KTibow in https://github.com/svg/svgo/pull/1889Performance
#stringifyPathData
for performance. By @SethFalco in https://github.com/svg/svgo/pull/1900Set
instead ofArray
for faster lookups. By @SethFalco in https://github.com/svg/svgo/pull/1899Metrics
Before and after using vectors from various sources, with the default preset of each respective version:
Before and after of the browser bundle of each respective version:
v3.1.0
Compare Source
What's Changed
Bug Fixes
<style>
tag contains XML comments. By @john-neptune in https://github.com/svg/svgo/pull/1736<defs>
), namely when<defs>
are defined at the end of the document. By @KTibow in https://github.com/svg/svgo/pull/1879url('#a')
) across various plugins. By @SethFalco in https://github.com/svg/svgo/pull/1881SVG Optimization
defaultMarkupDeclarations
. By @SethFalco in https://github.com/svg/svgo/pull/1872Metrics
Before and after using vectors from various sources, with the default preset of each respective version:
Before and after of the browser bundle of each respective version:
v3.0.5
Compare Source
What's Changed
Bug Fixes
Z
between mergableM
/m
commands. By @KTibow in https://github.com/svg/svgo/pull/1856z
conversions. By @KTibow in https://github.com/svg/svgo/pull/1842<switch>
, as empty containers can be used for attributes likerequiredFeatures
. By @vincentbernat in https://github.com/svg/svgo/pull/1747.d.ts
file extension instead of.ts
. By @Exotelis in https://github.com/svg/svgo/pull/1780Chores
#loadConfig
method. By @nuintun in https://github.com/svg/svgo/pull/1844Metrics
Before and after using vectors from various sources, with the default preset of each respective version:
Before and after of the browser bundle of each respective version:
v3.0.4
Compare Source
Includes various bug fixes for existing plugins and a new optimization. Also splits
removeXMLNS
, which removed XLink, into two separate plugins,removeXMLNS
andremoveXlink
.What's Changed
Default Behavior
xmlns:xlink
) namespace. If that is desirable, you should enable the new Remove XLink (removeXlink
) plugin, which does more while being safer. By @TrySound and @SethFalco in https://github.com/svg/svgo/pull/1535Bug Fixes
pre
elements inforeignObject
. By @SethFalco in https://github.com/svg/svgo/pull/1796@-webkit-keyframes
in<style>
node. By @SethFalco in https://github.com/svg/svgo/pull/1826SVG Optimization
z
command if going back to initial position, or dropz
if redundant. By @KTibow in https://github.com/svg/svgo/pull/1822xmlns:xlink
) namespace and migrates from XLink attributes to the SVG 2 equivalent. Disabled by default. By @TrySound and @SethFalco in https://github.com/svg/svgo/pull/1535Metrics
Before and after using vectors from various sources, with the default preset of each respective version:
Before and after of the browser bundle of each respective version:
v3.0.3
Compare Source
Includes various bug fixes and optimizations for existing plugins.
We're also revamped the documentation for the project. You can find it on svgo.dev!
The frontend for svgo.dev is maintained in svg/svgo.dev, contributions are welcome.
What's Changed
Settings
preservePatterns
parameter. Preserves legal comments by default, same as the previous behavior, but can now be overridden. By @SethFalco in https://github.com/svg/svgo/pull/1812removeAny
parameter tofalse
by default for accessibility. By @SethFalco in https://github.com/svg/svgo/pull/1806Bug Fixes
defs
children after optimization. By @SethFalco in https://github.com/svg/svgo/pull/1785null
,undefined
, or empty plugin. Instead, log a warning and ignore it. By @SethFalco in https://github.com/svg/svgo/issues/1128SVG Optimization
on*
) andhref
attributes withjavascript:
URIs. By @cakeinpanic and @SethFalco in https://github.com/svg/svgo/pull/1807, https://github.com/svg/svgo/pull/1818, https://github.com/svg/svgo/pull/1819, https://github.com/svg/svgo/pull/1820Performance
Chores
Metrics
Before and after using vectors from various sources, with the default preset of each respective version:
Before and after of the browser bundle of each respective version:
v3.0.2
Compare Source
Installing
@types/csso
no longer requiredv3.0.1
Compare Source
Thanks to @Kreeg, @XhmikosR and @TrySound
v3.0.0
Compare Source
SVGO v3
Improvements and fixes
datauri
option whenmultipass
is not enabledBreaking channges
Config
Typescript types are exposed out of the box. No longer need to install
@types/svgo
Active flag is no longer supported
extendDefaultPlugins
is removed,preset-default
plugin should be used insteadwhen need to customize plugins defaults
Enabled sortAttrs plugin by default to get better gzip compression.
Can be disabled if necessary
cleanupIDs plugin is renamed to cleanupIds
Removed cleanupIds plugin "prefix" param, prefixIds should be used instead
Public API
Removed width and height from optimization result.
Can be found with custom plugin
Removed error and modernError from optimization result
Now all errors are thrown, parsing error can be checked by name
Custom plugins
Removed
full
,perItem
andperItemReverse
plugin types.visitor
is the only supported plugin api soplugin.type
is no longer required.
Removed
plugin.active
flag.Removed
plugin.params
used as default params, destructuring with defaults can be used insteadname
andfn
are only required nowRemoved
createContentItem
and JSAPI class from nodes.All nodes are now plain objects with one exception.
parentNode need to be defined to not break builtin plugins.
Thanks to @istarkov, @boidolr, @deining, @ranman, @mondeja, @liamcmitchell-sc, @rogierslag, @kriskowal, @hugolpz and @TrySound
v2.8.0
Compare Source
If you enjoy SVGO and would like to support our work, consider sponsoring us directly via our OpenCollective.
Join us in our discord
Features and bug fixes
xmlns:xlink
attribute (https://github.com/svg/svgo/pull/1508)require
to fix segfaults in linux (https://github.com/svg/svgo/pull/1605)Refactorings
DX
I found some users are trying to enable plugins which are not part of default preset, for example
To fix this I made docs more concrete about plugin (svg/svgo@5165ccb)
and introduced a warning when true is specified in overrides (svg/svgo@cb7e9be).
Please give us feedback if you still have issues.
Thanks to @IlyaSkriblovsky, @devongovett, @matheus1lva, @omgovich, @renatorib and @TrySound
v2.7.0
Compare Source
If you enjoy SVGO and would like to support our work, consider sponsoring us directly via our OpenCollective.
Join us in our discord
ES Modules support
This release adds support for es modules in svgo.config.js when package.json type field is "module".
For projects with mixed cjs and esm svgo.config.mjs and svgo.config.cjs are also supported as fallback.
See https://github.com/svg/svgo/pull/1583
Fixes
Refactorings
Follwing plugins are migrated to the new visitor plugin api and covered with tsdoc
Other internal changes
Thanks to @renatorib, @matheus1lva, @omgovich, @deepsweet, @ai, @samouss and @TrySound
v2.6.1
Compare Source
optimize(svg)
usage without config (https://github.com/svg/svgo/pull/1573)Thanks to @XhmikosR, @thewilkybarkid, @renatorib, @matheus1lva, @omgovich and @TrySound
v2.6.0
Compare Source
If you enjoy SVGO and would like to support our work, consider sponsoring us directly via our OpenCollective.
We have some good stuff in this release
Better syntax errors (https://github.com/svg/svgo/pull/1553)
Before people struggled to figure out what and why happens with such cryptic error
This gives too little information when a lot of svgs are transformed.
New errors look like this, include context and point to exact location with the issue.
We hope this will solve many issues when dealing with bundlers and other tools integrations.
pefixIds plugin is now idempotent (https://github.com/svg/svgo/pull/1561)
To get better compression results SVGO uses multipass option. This option is used
to run prefixIds plugin only once to prefix ids and classes properly.
Though sometimes users run svgo manually a few times which leads to duplicated
prefixes and make code much bigger. To solves this prefixIds was redesigned
to add prefix only when it does not exit in ids and classes.
Eventually all plugins are planned to be determenistic and idempotent
so multipass option would not be necessary and single pass compression
could be as effective as possible.
New js2svg options (https://github.com/svg/svgo/pull/1546)
js2svg.eol: 'lf' | 'crlf'
Allows to customize end of line characters which is usually resolved by os.EOL in node.
finalNewline: boolean
Ensures SVG output has a final newline which is required for some tools like git.
Fixes and refactorings
Follwing plugins are migrated to the new visitor plugin api and covered with tsdoc
Also fixed a few bugs
Thanks to @XhmikosR, @matheus1lva, @deepsweet, @omgovich, @adalinesimonian and @TrySound
v2.5.0
Compare Source
In this release we have a couple of fixes
Visitor api now get parentNode in enter and exit callback
And a lot of plugins are migrated to visitor api and covered them with tsdoc
Thanks to @XhmikosR, @morganney, @oBusk, @matheus1lva and @TrySound
v2.4.0
Compare Source
Hey everybody!
In this release I happy to introduce the new plugin "preset-default" which allows to declaratively setup and customize default set of plugins. Previous solution
extendDefaultPlugins
utility prevented parcel users from using cachable json config, svgo-loader and svgo-jsx required svgo to be installed locally. "preset-default" plugin is just another builtin plugi.We also fixed a few bugs
Thanks to @TrySound, @ydaniv, @ludofischer, @XhmikosR and @joseprio
v2.3.1
Compare Source
Fixed vulnerability in css-select dependency (https://github.com/svg/svgo/pull/1485)
Thanks to @ericcornelissen
v2.3.0
Compare Source
Hey, everybody! We have a big release here.
Before:
After:
--exclude
flag which uses regexps to exclude some files from--folder
. See #1409Internal AST is migrated to XAST. This spec makes maintaining plugins easier and may be used as interop with other tools like SVGR.
The new visitor plugin type combines features of "full", "perItem" and "perItemReverse" plugins without loosing simplicity. Eventually only visitor api will be supported. See #1454
Also small fixes
Thanks to @chambo-e, @strarsis, @XhmikosR, @omgovich and @TrySound
v2.2.2
Compare Source
v2.2.1
Compare Source
This is a big patch with new style computing (https://github.com/svg/svgo/pull/1399) and landed to master regression tests
A lot of bugs are fixed
<style>
type attribute in inlineStyles plugin (https://github.com/svg/svgo/pull/1400)<style>
support in removeHiddenElems plugin (https://github.com/svg/svgo/pull/1399)<style>
support when removing useless path commands (svg/svgo@c21fef5)<style>
support when combining path commands (svg/svgo@ba7e9bd)<pattern>
when at least one argument is present (svg/svgo@0e6b0c4)<marker>
with display none (svg/svgo@d3e3726)<svg>
(svg/svgo@28c01cf)435 of 526 regression tests are passing
Thanks to @XhmikosR @sk- and @TrySound
v2.2.0
Compare Source
Wow, two minor releases in a row. There is a big reason for that. We got a new logo! See it in readme. Big thanks to @DerianAndre.
There were also implemented brand new path data parser and stringifier (https://github.com/svg/svgo/pull/1378 and https://github.com/svg/svgo/pull/1387) to do more reliable transformations and produce smaller svg.
A cup of small fixes
<tspan>
inside<a>
(svg/svgo@091172a)Thanks to @sk- @XhmikosR @deepsweet and @TrySound
v2.1.0
Compare Source
This release introduced two big changes
See fixed bugs
<svg />
with enabled cleanupIDs plugin (svg/svgo@9b97e06)--config
flag does not exist or json string is specified (svg/svgo@a855b40)xml:space="preserve"
(svg/svgo@776ec1e)<g>
whenfilter
attribute is specified (svg/svgo@c1d5f0f)Thanks to @XhmikosR @sk- @chromakode @devongovett and @TrySound
v2.0.3
Compare Source
<defs>
by reusePaths plugin (https://github.com/svg/svgo/pull/1201)rx
orry
attributes are not specified (svg/svgo@7f4e052)<mask>
(svg/svgo@4490d62)<path>
by default to support many broken non-browser environments (https://github.com/svg/svgo/pull/1353)Thanks to @ChrisRu @XhmikosR @yisibl @TrySound
v2.0.2
Compare Source
Thanks to @XhmikosR and @TrySound
v2.0.1
Compare Source
--indent
flag in CLI (https://github.com/svg/svgo/pull/1331)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.