fix(deps): update dependency dom-to-image-more to v3#48
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
fix(deps): update dependency dom-to-image-more to v3#48renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
2 Skipped Deployments
|
7cc8dba to
5540854
Compare
5540854 to
48e0c53
Compare
48e0c53 to
aa59092
Compare
aa59092 to
90b392d
Compare
90b392d to
2e11abb
Compare
2e11abb to
9e6f733
Compare
9e6f733 to
8b8b9d3
Compare
8b8b9d3 to
0cbb503
Compare
0cbb503 to
124f532
Compare
124f532 to
cdd9ae5
Compare
cdd9ae5 to
24ac49e
Compare
24ac49e to
fc8310b
Compare
0a41860 to
8266b6c
Compare
8266b6c to
46ff9b4
Compare
46ff9b4 to
533828d
Compare
533828d to
3186ff9
Compare
3186ff9 to
a0b4ce0
Compare
a0b4ce0 to
ea27628
Compare
ea27628 to
09623e8
Compare
09623e8 to
30cd675
Compare
30cd675 to
c898046
Compare
c898046 to
2125bf9
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
2.16.0→3.7.2Release Notes
1904labs/dom-to-image-more (dom-to-image-more)
v3.7.2: - Fix offscreen iframeCompare Source
Create temporary iframe off-screen Fixes #214
Full Changelog: 1904labs/dom-to-image-more@v3.7.1...v3.7.2
v3.7.1: Responsive image, sizing, and fetching enhancementsCompare Source
What's Changed
srcset,sizes, andloadingattributes from the clone and sets thesrcfrom the original'scurrentSrcso we get the image the browser chose to display (fixes #212)toSVGcorrectly based on the original node being cloned (fixes #207)New Contributors
Full Changelog: 1904labs/dom-to-image-more@v3.6.3...v3.7.1
v3.6.3Compare Source
url()references in inlinerFull Changelog: 1904labs/dom-to-image-more@v3.6.1...v3.6.3
v3.6.0: - Adding style property filtering and fix url inliningCompare Source
What's Changed
New Contributors
Full Changelog: 1904labs/dom-to-image-more@v3.4.5...v3.5.0
v3.5.0Compare Source
What's Changed
Full Changelog: 1904labs/dom-to-image-more@v3.4.5...v3.5.0
v3.4.5Compare Source
What's Changed
globalthenwindowtowindowthenglobalingetWindow()method.New Contributors
Notes
Sorry for the churn lately, trying to balance two fixes that seem to be mutually exclusive, and I only have a reproduction test of one of them.
Full Changelog: 1904labs/dom-to-image-more@v3.4.4...v3.4.5
v3.4.4: Browser incompatibilitiesCompare Source
What's Changed
New Contributors
Full Changelog: 1904labs/dom-to-image-more@v3.4.3...v3.4.4
v3.4.3Compare Source
Fixed ShadowDom node rendering (again).
Fixed typo in the check for shadow DOM nodes having children and reverted to the
'cssStyles' in nodeof property test.Full Changelog: 1904labs/dom-to-image-more@v3.4.2...v3.4.3
v3.4.2: Switch to Object.hasOwn for property checks.Compare Source
v3.4.1: Revert part of PR 179Compare Source
Hopefully fixes #184
v3.4.0Compare Source
What's Changed
Fixes
assignedNodesto fall back tochildNodes. Also fixed some more node.js compatibility (fixes #178 thanks @cWenyu).New feature
Passing
disableEmbedFonts: truein the options to any top-level call will make the generated (and intermediate) SVG not copy in the web font, greatly reducing the size and increasing the speed of the generation. Note, for toSVG outputs, you will have to still have the ability to reference the fonts.Housekeeping
New Contributors
@cWenyu @davidburns573 @YujiaCheng1996
Full Changelog: 1904labs/dom-to-image-more@v3.3.1...v3.4.0
v3.3.1Compare Source
What's Changed
New Contributors
Full Changelog: 1904labs/dom-to-image-more@v3.3.0...v3.3.1
What's Changed
New Contributors
Full Changelog: 1904labs/dom-to-image-more@v3.3.0...v3.3.1
v3.3.0: Add adjustClonedNode and useCredentialsFiltersCompare Source
What's Changed
Expose ability to adjust the cloned node before generating image via
adjustClonedNodeoption. by @IDisposable in #164Add ability to select what external resources require
useCredentialsvia listing URLs inuseCredentialsFiltersoption by @TMMSchmit in #156Bumps dev packages up to current
Cleaned a bit of lint
adjustClonedNodeHookYou may now specify a call-back to be invoked on each node as we clone them so you can adjust the nodes in any way needed before the conversion. The handler is passed in the options as
adjustClonedNodewhich is a function that gets the original node, the cloned node, and a boolean that says if we've cloned the children already (so you can handle either before or after)Sample use (with this package source inlined) in this fiddle:
useCredentialsFiltersURL listAdded a new option
useCredentialsFilterswhich will take a string/Regex array and only share the credentials with the URLs that match an entry in this array. This helps avoid CORS errors.Full Changelog: 1904labs/dom-to-image-more@v3.2.0...v3.3.0
v3.2.0: 3.2.0 - Add support for options.corsImgCompare Source
Now supports passing an optional
optionsmembercorsImgthat proxies all images through a service proxy.You configure this option with an object that supplies the proxy handler's
url, themethod(e.g.'GET'or'POST'), aheaderscollection, and a POST payloaddata. For the headers and the url, an instance of the exact string'#{cors}'will be replaced by the original url to be fetched.What's Changed
New Contributors
Full Changelog: 1904labs/dom-to-image-more@v3.1.6...v3.2.0
v3.1.6: More rollup bundling fixesCompare Source
Fixes
Since rollup sees all imports as modules it replaces
thiswithundefinedwhen evaluating the IFE that dom-to-image-more's source exists as. This leads to errors from rollup that are not actually a problem. Found an incantation that rollup won't break with.Full Changelog*: 1904labs/dom-to-image-more@v3.1.5...v3.1.6
v3.1.5Compare Source
What's Changed
global,window, andglobalThisin that order forgetComputedStyleandatobNew Contributors
Full Changelog: 1904labs/dom-to-image-more@v3.1.4...v3.1.5
v3.1.4: - CORS Documentation updatesCompare Source
What's Changed
New Contributors
Full Changelog: 1904labs/dom-to-image-more@v3.1.1...v3.1.4
v3.1.3Compare Source
v3.1.2Compare Source
v3.1.1: Fix Firefox image issues and reduce console warnings.Compare Source
What's Changed
Full Changelog: 1904labs/dom-to-image-more@v3.1.0...v3.1.1
v3.1.0Compare Source
What's Changed
New Contributors
Full Changelog: 1904labs/dom-to-image-more@v2.15.0...v3.1.0
Configuration
📅 Schedule: Branch creation - "after 10:30 before 18:00 every weekday except after 13:00 before 14:00" in timezone Asia/Tokyo, 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 was generated by Mend Renovate. View the repository job log.