chore(deps): update bun packages (major) #2660
Merged
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:
^5.4.7
->^7.0.0
^2.4.2
->^3.0.0
^22.13.1
->^23.0.0
^1.4.0
->^2.0.0
^2.8.0
->^3.0.0
Release Notes
gka/chroma.js (chroma-js)
v3.1.2
Compare Source
v3.1.1
Compare Source
v3.1.0
Compare Source
'transparent'
as black with 0% opacity - resolves #280v3.0.0
Compare Source
lab()
,lch()
,oklab()
,oklch()
space.setLabWhitePoint
.color.css()
will no longer return legacy CSS colors likergb(255, 255, 0)
but use modern CSS colors likergb(255 255 0)
instead.puppeteer/puppeteer (puppeteer)
v23.6.1
Compare Source
v23.6.0
: puppeteer: v23.6.0Compare Source
Features
Dependencies
v23.5.3
: puppeteer: v23.5.3Compare Source
Miscellaneous Chores
Dependencies
v23.5.2
: puppeteer: v23.5.2Compare Source
Miscellaneous Chores
Dependencies
v23.5.1
: puppeteer: v23.5.1Compare Source
Miscellaneous Chores
Dependencies
v23.5.0
: puppeteer: v23.5.0Compare Source
Miscellaneous Chores
Dependencies
v23.4.1
: puppeteer: v23.4.1Compare Source
Miscellaneous Chores
Dependencies
v23.4.0
: puppeteer: v23.4.0Compare Source
Features
Dependencies
v23.3.1
: puppeteer: v23.3.1Compare Source
Miscellaneous Chores
Dependencies
v23.3.0
: puppeteer: v23.3.0Compare Source
Miscellaneous Chores
Dependencies
v23.2.2
: puppeteer: v23.2.2Compare Source
Miscellaneous Chores
Dependencies
v23.2.1
: puppeteer: v23.2.1Compare Source
Miscellaneous Chores
Dependencies
v23.2.0
: puppeteer: v23.2.0Compare Source
Features
Dependencies
v23.1.1
Compare Source
v23.1.0
: puppeteer: v23.1.0Compare Source
Features
Dependencies
v23.0.2
Compare Source
v23.0.1
Compare Source
v23.0.0
: puppeteer: v23.0.0Compare Source
⚠ BREAKING CHANGES
Features
Code Refactoring
Dependencies
PKief/svg-color-linter (svg-color-linter)
v2.0.3
Compare Source
df68e6c
1ea8432
22059c2
v2.0.2
Compare Source
0916de7
v2.0.0
Compare Source
c5fbb3f
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
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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.