Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the dependencies group with 7 updates #100

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 11, 2023

Bumps the dependencies group with 7 updates:

Package From To
@codemirror/lang-html 6.4.6 6.4.7
@resvg/resvg-js 2.4.1 2.6.0
@sapphire/snowflake 3.5.1 3.5.2
@tanem/svg-injector 10.1.65 10.1.68
focus-trap 7.5.3 7.5.4
fs-extra 11.1.1 11.2.0
electron 26.2.4 28.0.0

Updates @codemirror/lang-html from 6.4.6 to 6.4.7

Changelog

Sourced from @​codemirror/lang-html's changelog.

6.4.7 (2023-11-27)

Bug fixes

Parse script tags with application/json type as JSON syntax.

Commits

Updates @resvg/resvg-js from 2.4.1 to 2.6.0

Release notes

Sourced from @​resvg/resvg-js's releases.

v2.6.0

What's Changed

🚀 Up to 115x faster for very large SVG files

Now resvg has been upgraded from v0.29.0 to v0.34.0, bringing with it a host of new SVG features and performance improvements.

  • Support SVG2 mask-type property.

  • Allows quadratic Bézier curves: text might render slightly differently (better?). This is because TrueType fonts contain only quadratic curves and we were converting them to cubic before.

  • Clipping and masking is up to 20% faster.

  • Reduces the peak memory usage for SVGs with large paths (in terms of the number of segments).

  • A new rendering algorithm. When rendering isolated groups, aka layers, we have to know the layer bounding box beforehand, which is ridiculously hard in SVG. Previously, resvg would simply use the canvas size for all the layers. This means that to render a 10x10px layer on a 1000x1000px canvas, we would have to allocate and then blend a 1000x1000px layer, which is just a waste of CPU cycles. The new rendering algorithm is able to calculate layer bounding boxes, which dramatically improves performance when rendering a lot of tiny layers on a large canvas. Moreover, it makes performance more linear with a canvas size increase. The paris-30k.svg sample from google/forma is rendered 115 times faster on M1 Pro now. From ~33760ms down to ~290ms. 5269x3593px canvas. If we restrict the canvas to 1000x1000px, which would contain only the actual paris-30k.svg content, then we're 13 times faster. From ~3252ms down to ~253ms.

Added

Full Changelog: yisibl/resvg-js@v2.5.0...v2.6.0

v2.5.0

What's Changed

Added

Now we can finally loading custom fonts in Wasm, including the WOFF2 format (see playground), thanks to the high-performance woff2-rs.

In addition, we implemented smarter default font family fallback. the defaultFontFamily option can now be omitted. We'll read the font-family from the incoming fonts and set it to the default.

<script src="https://unpkg.com/@resvg/resvg-wasm"></script>
<script>
  (async function () {
    await resvg.initWasm(fetch('https://unpkg.com/@resvg/resvg-wasm/index_bg.wasm'))
const font = await fetch('./fonts/Pacifico-Regular.woff2')

</tr></table>

... (truncated)

Changelog

Sourced from @​resvg/resvg-js's changelog.

[2.6.0] - 2023-10-20

🚀 Up to 115x faster for very large SVG files

Now resvg has been upgraded from v0.29.0 to v0.34.0, bringing with it a host of new SVG features and performance improvements.

  • Support SVG2 mask-type property.

  • Allows quadratic Bézier curves: text might render slightly differently (better?). This is because TrueType fonts contain only quadratic curves and we were converting them to cubic before.

  • Clipping and masking is up to 20% faster.

  • Reduces the peak memory usages for SVGs with large paths (in terms of the number of segments).

  • A new rendering algorithm. When rendering isolated groups, aka layers, we have to know the layer bounding box beforehand, which is ridiculously hard in SVG. Previously, resvg would simply use the canvas size for all the layers. Meaning that to render a 10x10px layer on a 1000x1000px canvas, we would have to allocate and then blend a 1000x1000px layer, which is just a waste of CPU cycles. The new rendering algorithm is able to calculate layer bounding boxes, which dramatically improves performance when rendering a lot of tiny layers on a large canvas. Moreover, it makes performance more linear with a canvas size increase. The paris-30k.svg sample from google/forma is rendered 115 times faster on M1 Pro now. From ~33760ms down to ~290ms. 5269x3593px canvas. If we restrict the canvas to 1000x1000px, which would contain only the actual paris-30k.svg content, then we're 13 times faster. From ~3252ms down to ~253ms.

Added

[2.5.0] - 2023-10-16

Added

Now we can finally loading custom fonts in Wasm, including the WOFF2 format (see playground), thanks to the high-performance woff2-rs.

In addition, we implemented smarter default font family fallback. the defaultFontFamily option can now be omitted. We'll read the font-family from the incoming fonts and set it to the default.

<script src="https://unpkg.com/@resvg/resvg-wasm"></script>
<script>
  ;(async function () {
    await resvg.initWasm(fetch('https://unpkg.com/@resvg/resvg-wasm/index_bg.wasm'))
const font = await fetch('./fonts/Pacifico-Regular.woff2')
if (!font.ok) return
const fontData = await font.arrayBuffer()
const buffer = new Uint8Array(fontData)

</tr></table>

... (truncated)

Commits
  • cfca7ad 2.6.0
  • 065b7f4 chore(deps): update actions/checkout action to v4
  • ce9b094 chore(deps): update yarn to v3.6.4
  • 6d3968a doc: updage Readme.md
  • 0337aaa test: fix test and update the example results
  • c041dd5 feat: upgrade to a newer resvg fork
  • de8b059 test: fix fontBuffers test
  • 88595e1 feat: upgrade to usvg/resvg 0.34
  • b07a26f 2.5.0
  • 4e68970 fix(deps): update rust crate svgtypes to 0.12.0
  • Additional commits viewable in compare view

Updates @sapphire/snowflake from 3.5.1 to 3.5.2

Changelog

Sourced from @​sapphire/snowflake's changelog.

Changelog

All notable changes to this project will be documented in this file.

@​sapphire/snowflake@​3.5.2 - (2023-12-04)

🐛 Bug Fixes

  • snowflake: Properly split CJS, ESM and IIFE (2a1fdde)
  • Update export mapping for proper ESM/CJS split (dd0cff8)
  • deps: Update all non-major dependencies (#607) (9cc8bd0)

🧪 Testing

  • Update vitest to coverage v8 (a4bc6e4)
Commits
  • 23410cc chore(snowflake): release @​sapphire/snowflake@​3.5.2
  • 716b60c build: set proper files array
  • 9630bf1 build: better options for createTsupConfig
  • 2a1fdde fix(snowflake): properly split CJS, ESM and IIFE
  • 3341d51 chore(deps): update all non-major dependencies
  • 91f0897 chore(deps): update all non-major dependencies
  • a97d284 chore(deps): update dependency tsup to v8 (#672)
  • aaca6ae chore(deps): update all non-major dependencies
  • da21d4e chore: update @​favware/cliff-jumper
  • 6f80b5b chore: update @​favware/cliff-jumper
  • Additional commits viewable in compare view

Updates @tanem/svg-injector from 10.1.65 to 10.1.68

Changelog

Sourced from @​tanem/svg-injector's changelog.

v10.1.68 (2023-11-12)

Full Changelog

🏠 Internal

v10.1.67 (2023-10-13)

Full Changelog

🏠 Internal

v10.1.66 (2023-10-07)

Full Changelog

🏠 Internal

Commits
  • bbcbbd5 Release v10.1.68
  • 4338899 Update dependency @​types/chai to v4.3.8
  • 8ed414d Update babel monorepo to v7.23.2
  • 95c6a36 Update dependency parcel to v2.10.0
  • 333da6c Update dependency @​types/chai to v4.3.7
  • 0b4e0e1 Update typescript-eslint monorepo to v6.7.5
  • 201ff8a Release v10.1.67
  • 4d62249 Update dependency @​rollup/plugin-node-resolve to v15.2.3
  • b77c1cb Update dependency tanem-scripts to v7.0.21
  • b7bf937 Update dependency eslint to v8.51.0
  • Additional commits viewable in compare view

Updates focus-trap from 7.5.3 to 7.5.4

Release notes

Sourced from focus-trap's releases.

v7.5.4

Patch Changes

Changelog

Sourced from focus-trap's changelog.

7.5.4

Patch Changes

Commits
  • df98606 Version Packages (#1079)
  • 680f6e8 fix focusable custom-element tabbing issue (#1072)
  • 891019d [DEPENDABOT]: Bump @​rollup/plugin-node-resolve from 15.2.1 to 15.2.3 (#1073)
  • 0f8ede0 [DEPENDABOT]: Bump @​rollup/plugin-commonjs from 25.0.4 to 25.0.5 (#1075)
  • 4efba41 [DEPENDABOT]: Bump @​types/jquery from 3.5.20 to 3.5.22 (#1074)
  • 000e56f [DEPENDABOT]: Bump @​rollup/plugin-terser from 0.4.3 to 0.4.4 (#1076)
  • 4102828 [DEPENDABOT]: Bump eslint from 8.50.0 to 8.51.0 (#1077)
  • b6bf955 [DEPENDABOT]: Bump @​rollup/plugin-babel from 6.0.3 to 6.0.4 (#1078)
  • 79037b7 [DEPENDABOT]: Bump @​types/jquery from 3.5.19 to 3.5.20 (#1069)
  • 03cac86 [DEPENDABOT]: Bump cypress from 13.2.0 to 13.3.0 (#1070)
  • Additional commits viewable in compare view

Updates fs-extra from 11.1.1 to 11.2.0

Changelog

Sourced from fs-extra's changelog.

11.2.0 / 2023-11-27

  • Copy directory contents in parallel for better performance (#1026)
  • Refactor internal code to use async/await (#1020)
Commits

Updates electron from 26.2.4 to 28.0.0

Release notes

Sourced from electron's releases.

electron v28.0.0

Release Notes for 28.0.0

Stack Upgrades

Breaking Changes

  • The BrowserWindow.getTrafficLightPosition() and BrowserWindow.setTrafficLightPosition() methods have been removed. #39479
  • The app.runningUnderRosettaTranslation() method has been removed. #39956
  • The ipcRenderer.sendTo() method has been removed. #39087
  • The scroll-touch-{begin,end,edge} events have been removed. #39814
  • Setting backgroundThrottling to false will disable frames throttling in the BrowserWindow for all WebContents displayed by it. #38924

Features

Additions

  • Enabled ESM support. #37535
  • The UtilityProcess API now supports ESM entrypoints. #40047
  • Added several properties to the display object including detected, maximumCursorSize, and nativeOrigin. #40554
  • Added support for ELECTRON_OZONE_PLATFORM_HINT environment variable on Linux. #39792

In addition to enabling ESM support in Electron itself, Electron Forge also supports using ESM to package, build and develop Electron applications. You can find this support in Forge v7.0.0 or higher: https://github.com/electron/forge/releases/tag/v7.0.0

  • Added API to help apps know when to avoid semitransparent backgrounds. #39631 (Also in 26, 27)
  • Added getWebRTCUDPPortRange and setWebRTCUDPPortRange APIs to specify UDP port range for WebRTC. #39046
  • Added keyboardLock to ses.setPermissionRequestHandler(handler). #40460 (Also in 26, 27)
  • Added mouse-enter and mouse-leave Tray events for Windows. #40072
  • Added a generateTaggedPDF option to webContents.printToPDF() to allow generating tagged (accessible) PDFs. #39563
  • Added a tabbingIdentifier property to BrowserWindow. #39980 (Also in 26, 27)
  • Added middle click mouse event to tray icon. #39926
  • Added several properties to the display object including detected, maximumCursorSize, and nativeOrigin. #40554
  • Added support for ELECTRON_OZONE_PLATFORM_HINT environment variable on Linux. #39792
  • Added support for chrome.scripting extension APIs. #39395 (Also in 25, 26, 27)
  • Added support for several more extensions manifest keys including host_permissions, author, and short_name. #39599 (Also in 26, 27)
  • Added the ability to send HTTP headers with webContents.downloadURL(). #39455 (Also in 25, 26, 27)
  • Changed systemPreferences.getColor(name) to return an RGBA hex value (#RRGGBBAA) instead of a plain RGB (#RRGGBB) value. #38960
  • Honor XDG dark theme preferences on Linux. #38977 (Also in 25, 26, 27)
  • Improved compatibility with CommonJS modules in sandboxed preload scripts by passing dummy module.exports. #39484

... (truncated)

Commits
  • 34d115a fix: cherry pick 9009d76968b1ec2ed825bc95e47d086ceea07520 from chromium (#40688)
  • e809537 chore: bump chromium to 120.0.6099.56 (28-x-y) (#40653)
  • 589c827 build: fix release notes script bug that omitted edited release-clerk comment...
  • fe49f1c fix: clean up devtools frontend_host on webcontents destroy (#40679)
  • 5bc8e76 fix: add missing set_wants_to_be_visible(true) to `NativeWindowMac::ShowIna...
  • 0756fe6 docs: add dates for e29 (#40669)
  • a0c85cf chore: cherry-pick 2 changes from Release-3-M119 (#40647)
  • e45e20a chore: extend linting of code blocks in the docs (#40636)
  • 1af2590 fix: add patch for simdutf base64 crash (#40542)
  • 9ad4024 chore: allow passing more roots to lint.js (#40627)
  • Additional commits viewable in compare view

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 squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [@codemirror/lang-html](https://github.com/codemirror/lang-html) | `6.4.6` | `6.4.7` |
| [@resvg/resvg-js](https://github.com/yisibl/resvg-js) | `2.4.1` | `2.6.0` |
| [@sapphire/snowflake](https://github.com/sapphiredev/utilities/tree/HEAD/packages/snowflake) | `3.5.1` | `3.5.2` |
| [@tanem/svg-injector](https://github.com/tanem/svg-injector) | `10.1.65` | `10.1.68` |
| [focus-trap](https://github.com/focus-trap/focus-trap) | `7.5.3` | `7.5.4` |
| [fs-extra](https://github.com/jprichardson/node-fs-extra) | `11.1.1` | `11.2.0` |
| [electron](https://github.com/electron/electron) | `26.2.4` | `28.0.0` |


Updates `@codemirror/lang-html` from 6.4.6 to 6.4.7
- [Changelog](https://github.com/codemirror/lang-html/blob/main/CHANGELOG.md)
- [Commits](codemirror/lang-html@6.4.6...6.4.7)

Updates `@resvg/resvg-js` from 2.4.1 to 2.6.0
- [Release notes](https://github.com/yisibl/resvg-js/releases)
- [Changelog](https://github.com/yisibl/resvg-js/blob/main/CHANGELOG.md)
- [Commits](yisibl/resvg-js@v2.4.1...v2.6.0)

Updates `@sapphire/snowflake` from 3.5.1 to 3.5.2
- [Changelog](https://github.com/sapphiredev/utilities/blob/main/packages/snowflake/CHANGELOG.md)
- [Commits](https://github.com/sapphiredev/utilities/commits/@sapphire/snowflake@3.5.2/packages/snowflake)

Updates `@tanem/svg-injector` from 10.1.65 to 10.1.68
- [Changelog](https://github.com/tanem/svg-injector/blob/master/CHANGELOG.md)
- [Commits](tanem/svg-injector@v10.1.65...v10.1.68)

Updates `focus-trap` from 7.5.3 to 7.5.4
- [Release notes](https://github.com/focus-trap/focus-trap/releases)
- [Changelog](https://github.com/focus-trap/focus-trap/blob/master/CHANGELOG.md)
- [Commits](focus-trap/focus-trap@v7.5.3...v7.5.4)

Updates `fs-extra` from 11.1.1 to 11.2.0
- [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md)
- [Commits](jprichardson/node-fs-extra@11.1.1...11.2.0)

Updates `electron` from 26.2.4 to 28.0.0
- [Release notes](https://github.com/electron/electron/releases)
- [Changelog](https://github.com/electron/electron/blob/main/docs/breaking-changes.md)
- [Commits](electron/electron@v26.2.4...v28.0.0)

---
updated-dependencies:
- dependency-name: "@codemirror/lang-html"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@resvg/resvg-js"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@sapphire/snowflake"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@tanem/svg-injector"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: focus-trap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: fs-extra
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: electron
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 11, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 25, 2023

Superseded by #103.

@dependabot dependabot bot closed this Dec 25, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-70daf53176 branch December 25, 2023 13:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants