Skip to content

build(deps-dev): bump svgo from 0.7.2 to 1.1.1#532

Closed
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/svgo-1.1.1
Closed

build(deps-dev): bump svgo from 0.7.2 to 1.1.1#532
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/svgo-1.1.1

Conversation

@dependabot-preview
Copy link
Copy Markdown

Bumps svgo from 0.7.2 to 1.1.1.

Release notes

Sourced from svgo's releases.

1.1.1 / 17.09.2018

  • Fixed crash in SVGO.optimize() when ‘info’ is absent.
  • Removed extra space after cleanupListOfValues plugin.

1.1.0 / 16.09.2018

  • Fixed collapseGroups plugin removing property with a child having inherit value.
  • version attribute value is not more being rounded.
  • Fixed jsAPI clone method with respect to the introduced CSS classes.
  • Fixed scaling strokes with vector-effect="non-scaling-stroke" (by alexjlockwood).
  • Fixed passing properties from groups in collapseGroups plugin if child have a filter (by stristr).
  • Fixed arc path commands parsing without separators after flags, effectively producing a JS error.
  • Fixed viewBox separators parsing.
  • Fixed removeNonInheritableGroupAttrs plugin to work as intended.
  • Fixed removing path segments without length in presence of stroke-linecap.
  • Fixed removeUnknownsAndDefaults plugin removing attributes from elements with id.
  • Fixed converting to large arcs from nearly straight lines curves.
  • Fixed collapseGroups plugin affecting <switch> and its subgroups.
  • Fixed convertTransform plugin converting to rotate() with wrong sign in some case.
  • Fixed cleanupListOfValues plugin not preserving non-numeric values.
  • Fixed !important being passed to attributes in convertStyleToAttrs plugin.
  • Added option keepImportant to convertStyleToAttrs plugin to preserve styles with !important.
  • removeHiddenElems plugin now also removes elements with visibility="hidden" attribute (by mikolaj92).
  • Added forceAbsolutePath option to convertPathData plugin to always use absolute coordinates (by cool).
  • Added keepRoleAttr for removeUnknownsAndDefaults plugin to preserve role- attributes (by himedlooff).
  • Added xmlns order option in sortAttrs plugin (by hellatan).
  • Added an option to prefixIds plugin to pass prefix as false or as a function that returns false (by vzaidman).
  • prefixIds plugin now adds prefix to every class (by vzaidman).
  • Updated and improved docs a bit (multiple authors).

1.0.5 / 26.02.2018

Fixed issue with prefixIDs plugin not replacing url() values correctly (by harrisjose).

1.0.4 / 30.01.2018

  • Fixed bug with removing groups that are direct child of <switch>.
  • Fixed bug with shorthand path points counting (thanks alexjlockwood for noticing).
  • Fixed crash on parsing invalid transform, e.g. without close parenthesis.

1.0.3 / 08.11.2017

  • Fixed removeViewBox plugin to check for zero start coordinates.
  • Removed extra info from STDOUT when it set to output.

1.0.2 / 03.11.2017

  • Fixed a couple of errors related to inlineStyles plugin.
  • Updated some lost details in documentation to reflect v1.0 changes.

1.0.1 / 31.10.2017

  • Fixed error “Object.defineProperty called on non-object” in images with <foreignObject/>.

1.0.0 / 30.10.2017

  • SVGO now requires Node 4 or higher.
... (truncated)
Changelog

Sourced from svgo's changelog.

[ > ] 1.1.1 / 17.09.2018

  • Fixed crash in SVGO.optimize() when ‘info’ is absent.
  • Removed extra space after cleanupListOfValues plugin.

[ > ] 1.1.0 / 16.09.2018

  • Fixed collapseGroups plugin removing property with a child having inherit value.
  • version attribute value is not more being rounded.
  • Fixed jsAPI clone method with respect to the introduced CSS classes.
  • Fixed scaling strokes with vector-effect="non-scaling-stroke" (by alexjlockwood).
  • Fixed passing properties from groups in collapseGroups plugin if child have a filter (by stristr).
  • Fixed arc path commands parsing without separators after flags, effectively producing a JS error.
  • Fixed viewBox separators parsing.
  • Fixed removeNonInheritableGroupAttrs plugin to work as intended.
  • Fixed removing path segments without length in presence of stroke-linecap.
  • Fixed removeUnknownsAndDefaults plugin removing attributes from elements with id.
  • Fixed converting to large arcs from nearly straight lines curves.
  • Fixed collapseGroups plugin affecting <switch> and its subgroups.
  • Fixed convertTransform plugin converting to rotate() with wrong sign in some case.
  • Fixed cleanupListOfValues plugin not preserving non-numeric values.
  • Fixed !important being passed to attributes in convertStyleToAttrs plugin.
  • Added option keepImportant to convertStyleToAttrs plugin to preserve styles with !important.
  • removeHiddenElems plugin now also removes elements with visibility="hidden" attribute (by mikolaj92).
  • Added forceAbsolutePath option to convertPathData plugin to always use absolute coordinates (by cool).
  • Added keepRoleAttr for removeUnknownsAndDefaults plugin to preserve role- attributes (by himedlooff).
  • Added xmlns order option in sortAttrs plugin (by hellatan).
  • Added an option to prefixIds plugin to pass prefix as false or as a function that returns false (by vzaidman).
  • prefixIds plugin now adds prefix to every class (by vzaidman).
  • Updated and improved docs a bit (multiple authors).

[ > ] 1.0.5 / 26.02.2018

  • Fixed issue with prefixIDs plugin not replacing url() values correctly (by harrisjose).

[ > ] 1.0.4 / 30.01.2018

  • Fixed bug with removing groups that are direct child of "".
  • Fixed bug with shorthand path points counting (thanks alexjlockwood for noticing).
  • Fixed crash on parsing invalid transform, e.g. without close parenthesis.

[ > ] 1.0.3 / 08.11.2017

  • Fixed removeViewBox plugin to check for zero start coordinates.
  • Removed extra info from STDOUT when it set to output.

[ > ] 1.0.2 / 03.11.2017

  • Fixed a couple of errors related to inlineStyles plugin.
  • Updated some lost details in documentation to reflect v1.0 changes.

[ > ] 1.0.1 / 31.10.2017

  • Fixed error “Object.defineProperty called on non-object” in images with <foreignObject/>.

[ > ] 1.0.0 / 30.10.2017

  • SVGO now requires Node 4 or higher.
... (truncated)
Commits
  • e68d24f v1.1.1
  • dfcc145 Fix crash when ‘info’ is absent
  • ed75e56 Fix and update cleanupListOfValues tests
  • e7bdce6 v1.1.0
  • 37d4ca8 Fix cleanupListOfValues to preserve non-numeric values
  • eeeb67d Fix convertTransform wrong rotate sign
  • 7a07b84 Fix collapseGroups plugin affecting switch and subgroups
  • 5800635 Fix converting to large arcs from nearly straight lines curves
  • a4fb3a4 Prevent removeUnknownsAndDefaults removing attributes from elements with id
  • 831f95f Fix empty path segments removing with stroke-linecap
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

Bumps [svgo](https://github.com/svg/svgo) from 0.7.2 to 1.1.1.
- [Release notes](https://github.com/svg/svgo/releases)
- [Changelog](https://github.com/svg/svgo/blob/master/CHANGELOG.md)
- [Commits](svg/svgo@v0.7.2...v1.1.1)

Signed-off-by: dependabot[bot] <support@dependabot.com>
@dependabot-preview
Copy link
Copy Markdown
Author

Superseded by #547.

@dependabot-preview dependabot-preview bot deleted the dependabot/npm_and_yarn/svgo-1.1.1 branch February 25, 2019 05:24
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