Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 5, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
cssnano 7.0.6 -> 7.1.2 age adoption passing confidence
htmlnano 2.1.1 -> 2.1.5 age adoption passing confidence
postcss (source) 8.5.3 -> 8.5.6 age adoption passing confidence
posthtml 0.16.6 -> 0.16.7 age adoption passing confidence
srcset 5.0.1 -> 5.0.2 age adoption passing confidence
svgo (source) ^3.3.2 -> ^4.0.0 age adoption passing confidence
terser (source) 5.39.0 -> 5.44.0 age adoption passing confidence

Release Notes

cssnano/cssnano (cssnano)

v7.1.2: v7.1.2

Compare Source

What's Changed

Full Changelog: https://github.com/cssnano/cssnano/compare/[email protected]@7.1.2

v7.1.1: v71.1.1

Compare Source

Bug Fixes

Full Changelog: https://github.com/cssnano/cssnano/compare/[email protected]@7.1.1

v7.1.0

Compare Source

Changes

  • Update to SVGO 4.0
  • Update browserslist

v7.0.7

Compare Source

What's Changed

Full Changelog: https://github.com/cssnano/cssnano/compare/[email protected]@7.0.7

posthtml/htmlnano (htmlnano)

v2.1.5

Compare Source

Fixed
  • Broken CommonJS import ([#​373])

v2.1.4

Compare Source

Fixed

v2.1.3

Compare Source

Changed
  • Migrate to TypeScript ([#​336])
  • Remove docs/ from the npm package.

v2.1.2

Compare Source

Added
  • skipInternalWarnings flag to avoid console.warn output [#​293]
Fixed
  • Use Node.js sort instead of timsort [#​328]
postcss/postcss (postcss)

v8.5.6

Compare Source

  • Fixed ContainerWithChildren type discriminating (by @​Goodwine).

v8.5.5

Compare Source

  • Fixed package.jsonexports compatibility with some tools (by @​JounQin).

v8.5.4

Compare Source

posthtml/posthtml (posthtml)

v0.16.7

Compare Source

sindresorhus/srcset (srcset)

v5.0.2

Compare Source

  • Fix density descriptor validation to match HTML specification 654e615
  • Fix validation of width descriptors in strict mode 60d80ec

svg/svgo (svgo)

v4.0.0

Compare Source

Banner celebrating the release of SVGO v4.0.0. Includes the SVGO mascot drawing on a chalkboard with the changes in default plugins. For example, removeViewBox was moved from default plugins to available plugins.

Illustration by Vukory

It's been just over a year since our first release candidate, but I believe we can now release SVGO v4.0.0 with confidence! Thank you to all contributors who tested our RC builds and reported issues back up, this really smoothed out the process.

We actually wanted to do the release sooner, but it was a challenge to find the right time to publish a major release, since that means setting time aside to support users through migrations, helping downstream projects migrate, being available to fix or document things that users found to have an unexpected impact by this release, etc. I appreciate everyone's patience, and now that this is done, we can hopefully increase the pace of development again and tackle that backlog of old bugs. ^-^'

Breaking Changes

Please refer to the Migration Guide from v3 to v4 for a more concise version! This section is more verbose as it delves into the motivation of changes too.

Dropped Support for Node.js v14

Node.js v14 is no longer supported by the Node.js team, including security support, since 30 April 2023. Node.js v16 is no longer supported either, but as some are still using it, we'll save dropping support for Node.js v16 for the next major release.

This allows us to update our dependencies to more recent versions and to access more modern Node.js APIs.

Node.js v14 may still work at the time of this release, but we'll no longer be testing against v14 from now on.

Default Plugins

Both removeViewBox and removeTitle have been disabled by default. Both have been major pain points for users and don't make sense to enable in most cases. Other libraries wrapping SVGO have also been disabling these plugins by default, such as Docusaurus and SVGR.

  • removeViewBox removes the scalability of SVGs.
  • removeTitle reduces accessibility, which preserving accessibility is more important than optimization.

If you would like either of these plugins enabled, you can do so by configuring it in the SVGO config, see the README for more context, however please read the warnings described in the documentation of the plugins first:

  export default {
    plugins: [
      'preset-default', // built-in plugins enabled by default
+     'removeViewBox',
+     'removeTitle',
    ],
  };
removeScriptElement → removeScripts

The removeScriptElement plugin has been renamed to removeScripts, to more accurately reflect what the plugin does. It does not only remove the <script> tag, but also event handlers and script URIs from links.

To migrate, amend your SVGO config to refer to removeScripts instead if you use that plugin.

  export default {
    plugins: [
      'preset-default', // built-in plugins enabled by default
-     'removeScriptElement',
+     'removeScripts',
    ],
  };
Imports/Exports

We now enforce boundaries between the intended public API and any internal structures/helpers. This is the biggest change in SVGO's JavaScript API and will enable maintainers and users to have a mutual understanding of what is public API and what isn't.

There are two ways to import SVGO:

  • svgo — for normal usage, such as scripts or server-side applications.
  • svgo/browser — for browser usage.

If you use the browser bundle, you must amend how you import SVGO:

- import { optimize } from 'svgo/dist/svgo.browser.js';
+ import { optimize } from 'svgo/browser';

For ESM/browser, you must use named imports:

// ESM and Browser, named exports
import { VERSION } from 'svgo';
console.log(VERSION);  // 4.0.0-rc.0

// ESM and Browser, import all
import * as svgo from 'svgo/browser';
console.log(svgo.VERSION); // 4.0.0-rc.0

// Common JS, default export
const svgo = require('svgo');
console.log(svgo.VERSION);  // 4.0.0-rc.0

// CommonJS, named exports
const { VERSION } = require('svgo');
console.log(VERSION); // 4.0.0-rc.0

We support 3 environments, ESM, Common JS, and browser. The only functional difference is that the loadConfig function is not exported in the browser bundle.

If you depended on a helper that we haven't declared as public, then you are encouraged to implement it yourself, or dig into our source and copy it over to your project.

Importing Plugins

If you import/require the array of built-in plugins, or a single plugin during runtime, this is now a top-level export instead:

// builtin.mjs - get an array of all built-in plugins
- import { builtin } from 'svgo/lib/builtin';
+ import { builtinPlugins } from 'svgo'

// plugin.mjs - get a single plugin
- import presetDefault from 'svgo/plugins/preset-default';
+ import { builtinPlugins } from 'svgo';
+ const prefixDefault = builtinPlugins.find(plugin => plugin.name === 'preset-default');

// plugin-map.mjs - get all plugins as a map using the plugin name as a key
import { builtinPlugins } from 'svgo';
const pluginMap = builtinPlugins.reduce((acc, val) => acc.set(val.name, val), new Map());
Selector Helpers

The XastNode#parentNode property was declared legacy and pending removal for v4, but was still used internally. The remaining instances have now been removed, which required a refactor of the selector helpers.

This effects custom plugins that use any of the following functions, where the selector (2nd) argument could reference parent or sibling nodes (i.e. div > span):

  • querySelectorAll
  • querySelector
  • matches

Previously, these functions had the context of the whole node tree, even if a child node was passed to it. It no longer has that context by default. The new API for these functions is as follows:

// applies `selector` with the context of the `childNode` and its descendants
const nodes = querySelectorAll(childNode, selector);

// applies `selector` with the context of the entire node tree relative from `childNode`
// the `rootNode` is required if the result of `selector` may depend on the parent or sibling of `childNode`
const nodes = querySelectorAll(childNode, selector, rootNode);

// this usage has the same behavior as v3, as `rootNode` is already the entire node tree 
const nodes = querySelectorAll(rootNode, selector);

A helper has been provided named #mapNodesToParents, which does this for you. This can be used to easily migrate to the new API. If you're not sure if you need it, then it's safer to take this approach. The third argument won't be necessary if selector does not traverse nodes, for example, querying using one or more attributes of a single node.

- import { querySelectorAll } from 'svgo';
+ import { querySelectorAll, mapNodesToParents } from 'svgo';

- const nodes = querySelectorAll(childNode, selector);
+ const nodes = querySelectorAll(childNode, selector, mapNodesToParents(rootNode));

What Else

ESM

SVGO is now a dual package, serving for both Common JS and ESM usage. To be more explicit, SVGO will continue to work on 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 setting convertCase to false.
Bug Fixes
Features
  • Add VERSION export so get the version of SVGO during runtime. By @​SethFalco in #​2016
  • Introduce an isPreset and plugins property to plugins, which are only defined for presets. This will indicate if the plugin is a preset, and return the plugins that are in the preset in the order they are invoked.
SVG Optimization
  • convertColors, introduce parameter to convert colors to common casing (lowercase/uppercase). By @​JayLeininger in #​1692
  • removeDeprecatedAttrs, new plugin that is disabled by default to remove SVG attributes that are deprecated. By @​jdufresne in #​1869
  • removeEditorsNSData, include Boxy SVG namespace in the list of editor namespaces to remove. By @​sisp in #​2008
  • removeEditorsNSData, include Krita namespace in the list of editor namespaces to remove. By @​SethFalco in #​2131
Performance
Developer Experience
  • We now generate our type declarations from JSDoc comments instead of maintaining them manually. Types will be much more accurate, include more documentation, and are guaranteed to be in sync with the implementation.

Metrics

Before and after using vectors from various sources, with the default preset of each respective version:

SVG Original v3.3.2 v4.0.0 Delta
Arch Linux Logo 9.529 KiB 4.115 KiB 4.097 KiB ⬇️ 0.018 KiB
Blobs 50.45 KiB 42.623 KiB 42.633 KiB ⬆️ 0.01 KiB
Isometric Madness 869.034 KiB 540.582 KiB 540.141 KiB ⬇️ 0.441 KiB
tldr-pages Banner 2.071 KiB 1.07 KiB 1.07 KiB
Wikipedia Logo 161.551 KiB 111.668 KiB 111.727 KiB ⬆️ 0.059 KiB

Note: The increase in size from previous versions is from disabling removeViewBox and removeTitle, with the benefit of preserving scalability and accessibility.

Before and after of the browser bundle of each respective version:

v3.3.2 v4.0.0 Delta
svgo.browser.js 753.0 kB 780.2kB ⬆️ 27.2 kB
terser/terser (terser)

v5.44.0

Compare Source

  • Support using and await using declarations (#​1635)

v5.43.1

Compare Source

  • Prevent niche optimizations that would move around block declarations
  • Add lhs_constants to CompressOptions type (#​1621)

v5.43.0

Compare Source

  • Do not wrap callbacks in parentheses (wrap_func_args format option is now false by default)
  • Do not inline functions into for loops (for performance reasons)

v5.42.0

Compare Source

  • Improved performance in the parse step by adding a fast path for simple identifiers.
  • Improved ESTree conversion

v5.41.0

Compare Source

  • fixed semicolon insertion between class fields, when the field names are number literals
  • keep_numbers format option now works for bigint
  • internal: correctly mark accessors' is_generator property
  • internal: do not read or assign quote properties without need
  • internal: add missing equivalent_to comparison

v5.40.0

Compare Source

  • Fix exporting AssignmentExpression (default assign pattern) to ESTree
  • Fix ESTree output of object keys with quotes
  • Fix handling of an ESTree empty export {} (#​1601)
  • Fix some const and let resulting from ESTree input (#​1599)

v5.39.2

Compare Source

  • Fix crash when parsing bare yield inside a template string.
  • Update internally used acorn version requirement

v5.39.1

Compare Source

  • Fix bitwise operations that could mix BigInt and number

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Apr 5, 2025
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.6.1 fix(deps): update dependency astro to v5.6.2 Apr 14, 2025
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.6.2 fix(deps): update dependency astro to v5.7.0 Apr 15, 2025
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.7.0 fix(deps): update dependency astro to v5.7.1 Apr 16, 2025
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.7.1 fix(deps): update dependency astro to v5.7.2 Apr 16, 2025
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.7.2 fix(deps): update dependency astro to v5.7.3 Apr 17, 2025
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.7.3 fix(deps): update dependency astro to v5.7.4 Apr 18, 2025
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.7.4 fix(deps): update dependency astro to v5.7.5 Apr 23, 2025
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.7.5 fix(deps): update dependency astro to v5.7.6 Apr 28, 2025
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.7.6 fix(deps): update dependency astro to v5.7.7 Apr 28, 2025
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.7.7 fix(deps): update dependency astro to v5.7.8 Apr 28, 2025
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.7.8 fix(deps): update dependency astro to v5.7.9 Apr 29, 2025
@renovate renovate bot changed the title fix(deps): update dependency astro to v5.7.9 fix(deps): update dependencies Apr 30, 2025
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from ad564e2 to 0ef5dd3 Compare June 23, 2025 16:39
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from 0d26268 to eaf7737 Compare July 3, 2025 16:27
@renovate renovate bot force-pushed the renovate/dependencies branch 4 times, most recently from 6b29849 to 7d99d37 Compare July 17, 2025 14:10
@renovate renovate bot force-pushed the renovate/dependencies branch 4 times, most recently from b5a1d3c to a1736f7 Compare July 28, 2025 18:28
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from 3430511 to fa237a5 Compare July 31, 2025 23:58
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from 64be2d9 to 85050d5 Compare August 7, 2025 17:53
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from aa18696 to 55e7fad Compare August 13, 2025 16:44
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from 64fdd7b to a399a50 Compare August 22, 2025 19:06
@renovate renovate bot force-pushed the renovate/dependencies branch 4 times, most recently from 91f4809 to f50e46f Compare September 5, 2025 12:59
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from 38b7fa5 to 0b3f975 Compare September 19, 2025 09:53
@renovate renovate bot force-pushed the renovate/dependencies branch from 0b3f975 to 337a2fe Compare September 25, 2025 21:08
@renovate renovate bot force-pushed the renovate/dependencies branch from 337a2fe to 7e284d9 Compare October 14, 2025 10:45
@renovate renovate bot force-pushed the renovate/dependencies branch from 7e284d9 to c3ef0d1 Compare October 21, 2025 11:15
@renovate renovate bot force-pushed the renovate/dependencies branch from c3ef0d1 to 5eaca2e Compare October 29, 2025 17:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant