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 jsdom and fabric #64

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 4, 2022

Bumps jsdom to 19.0.0 and updates ancestor dependency fabric. These dependencies need to be updated together.

Updates jsdom from 9.12.0 to 19.0.0

Release notes

Sourced from jsdom's releases.

Version 19.0.0

  • Changed jsdom.nodeLocation() to return undefined when used on nodes that originate via fragment parsing (e.g., via innerHTML). Previously it would return based on the node location of the fragment string, which made node locations unreliable with respect to the original document source. This restores the behavior that was present in v14.0.0, and was accidentally broken in v14.1.0. (bakkot)
  • Fixed calling window.close() inside the Window's load event to no longer crash. (MattiasBuelens)

Version 18.1.1

  • Fixed connectedCallback to fire in situations involving document fragments, which was broken in v18.0.1. (GrantGryczan)

Version 18.1.0

  • Fixed headers.append() and headers.set() to normalize values. (MattiasBuelens)
  • Fixed pageshow events to have bubbles: true and cancelable: true. (MattiasBuelens)
  • Implemented the reason property on AbortSignals, along with the corresponding reason argument to abortSignal.abort() and AbortSignal.abort(). (MattiasBuelens)

Version 18.0.1

  • Fixed live Ranges to update correctly after calling node.normalize(). (hgiesel)
  • Fixed live Ranges to update correctly after removing child nodes. (hgiesel)
  • Fixed setting inputEl.valueAsDate = null to no longer throw an exception, but instead set the value to the empty string. (simon-weimann)
  • Improved performance of node insertion and node.contains(). (GrantGryczan)

Version 18.0.0

Potentially-breaking bug fixes:

  • Fixed SSL certificate checking for WebSocket connections. Previously, invalid SSL certificates were always accepted; now, they properly respect the ResourceLoader's strictSSL option (which defaults to true).
  • Changed the global in which almost all Promise and TypeError instances are created to be the jsdom global, not the Node.js global. This could affect any code that uses instanceof.

Other changes:

  • Fixed moving an element between HTML and XML documents to reset the tagName cache, allowing it to return a lowercase value once it's in the XML document. (LucasLefevre)
  • Fixed form submission to not happen when the form is invalid. (pozil)

Version 17.0.0

Breaking change: Node v12 is now the minimum supported version.

Version 16.7.0

  • Added AbortSignal.abort(). (ninevra)
  • Added dummy x and y properties to the return value of getBoundingClientRect(). (eiko)
  • Implemented wrapping for textareaEl.value if the wrap="" attribute is specified. (ninevra)
  • Changed newline normalization in <textarea>s according to recent HTML Standard updates. (ninevra)
  • Fixed some bad cascade computation in getComputedStyle(). (romain-trotard)

Version 16.6.0

  • Added parentNode.replaceChildren(). (@​ninevra)
  • Fixed jsdom's handling of when code running inside the jsdom throws null or undefined as an exception. (@​mbest)
  • Removed the dependency on the deprecated request package, in the process fixing several issues with the XMLHttpRequest implementation around header processing. Thanks go to @​tobyhinloopen, @​andrewaylett, and especially @​vegardbb, for completing this months-long effort!

Version 16.5.3

  • Fixed infinite recursion when using MutationObservers to observe elements inside a MutationObserver callback.

Version 16.5.2

  • Fixed Access-Control-Allow-Headers: * to work with XMLHttpRequest. (silviot)
  • Fixed xhr.response to strip any leading BOM when xhr.responseType is "json".

... (truncated)

Changelog

Sourced from jsdom's changelog.

19.0.0

  • Changed jsdom.nodeLocation() to return undefined when used on nodes that originate via fragment parsing (e.g., via innerHTML). Previously it would return based on the node location of the fragment string, which made node locations unreliable with respect to the original document source. This restores the behavior that was present in v14.0.0, and was accidentally broken in v14.1.0. (bakkot)
  • Fixed calling window.close() inside the Window's load event to no longer crash. (MattiasBuelens)

18.1.1

  • Fixed connectedCallback to fire in situations involving document fragments, which was broken in v18.0.1. (GrantGryczan)

18.1.0

  • Fixed headers.append() and headers.set() to normalize values. (MattiasBuelens)
  • Fixed pageshow events to have bubbles: true and cancelable: true. (MattiasBuelens)
  • Implemented the reason property on AbortSignals, along with the corresponding reason argument to abortSignal.abort() and AbortSignal.abort(). (MattiasBuelens)

18.0.1

  • Fixed live Ranges to update correctly after calling node.normalize(). (hgiesel)
  • Fixed live Ranges to update correctly after removing child nodes. (hgiesel)
  • Fixed setting inputEl.valueAsDate = null to no longer throw an exception, but instead set the value to the empty string. (simon-weimann)
  • Improved performance of node insertion and node.contains(). (GrantGryczan)

18.0.0

Potentially-breaking bug fixes:

  • Fixed SSL certificate checking for WebSocket connections. Previously, invalid SSL certificates were always accepted; now, they properly respect the ResourceLoader's strictSSL option (which defaults to true).
  • Changed the global in which almost all Promise and TypeError instances are created to be the jsdom global, not the Node.js global. This could affect any code that uses instanceof.

Other changes:

  • Fixed moving an element between HTML and XML documents to reset the tagName cache, allowing it to return a lowercase value once it's in the XML document. (LucasLefevre)
  • Fixed form submission to not happen when the form is invalid. (pozil)

17.0.0

Breaking change: Node v12 is now the minimum supported version.

16.7.0

  • Added AbortSignal.abort(). (ninevra)
  • Added dummy x and y properties to the return value of getBoundingClientRect(). (eiko)
  • Implemented wrapping for textareaEl.value if the wrap="" attribute is specified. (ninevra)
  • Changed newline normalization in <textarea>s according to recent HTML Standard updates. (ninevra)
  • Fixed some bad cascade computation in getComputedStyle(). (romain-trotard)

16.6.0

  • Added parentNode.replaceChildren(). (ninevra)
  • Fixed jsdom's handling of when code running inside the jsdom throws null or undefined as an exception. (mbest)

... (truncated)

Commits
  • a604d67 Version 19.0.0
  • e46f76f Fix crash when calling window.close() inside load event listener
  • f9de3fd Do not track location information for fragment-parsed nodes
  • a61fdb8 Version 18.1.1
  • 15cbed6 Fix connectedCallback with document fragments
  • 79ff734 Version 18.1.0
  • a303721 Add AbortSignal's reason property
  • 158ada2 Update web platform tests + minor fixes
  • c98e0f5 Fix changelog username typo
  • b1ce1af Version 18.0.1
  • Additional commits viewable in compare view

Updates fabric from 2.7.0 to 5.2.4

Release notes

Sourced from fabric's releases.

v5.2.4

fixed version

Full Changelog: fabricjs/fabric.js@v521...v5.2.4

Fixed setStyle exception #7869

Fixed IText focus issue #8179

BREAKING: Text#toObject style property is changed from an object to an array at serialization #7842

v5.2.3

What's Changed

Full Changelog: fabricjs/fabric.js@v521...v5.2.3

Version 4.5.0

  • fix(fabric.PencilBrush) decimate deleting end of a freedrawing line #6966
  • feat(fabric.Text): Adding support for RTL languages by adding direction property #7046
  • feat(fabric) Add an eraser brush as optional module #6994
  • fix v4: 'scaling' event triggered before object position is adjusted #6650
  • Fix(fabric.Object): CircleControls transparentCorners styling #7015
  • Fix(svg_import): svg parsing in case it uses empty use tag or use with image href #7044
  • fix(fabric.Shadow): offsetX, offsetY and blur supports float #7019

Version 4.4.0

  • fix(fabric.Object) wrong variable name cornerStrokeColor #6981
  • fix(fabric.Text): underline color with text style ( regression from text on a path) #6974
  • fix(fabric.Image): Cache CropX and CropY cache properties #6924
  • fix(fabric.Canvas): Add target to each selection event #6858
  • fix(fabric.Image): fix wrong scaling value for the y axis in renderFill #6778
  • fix(fabric.Canvas): set isMoving on real movement only #6856
  • fix(fabric.Group) make addWithUpdate compatible with nested groups #6774
  • fix(Fabric.Text): Add path to text export and import #6844
  • fix(fabric.Canvas) Remove controls check in the pixel accuracy target #6798
  • feat(fabric.Canvas): Added activeOn 'up/down' property #6807
  • feat(fabric.BaseBrush): limitedToCanvasSize property to brush #6719

Version 4.3.1

  • fix(fabric.Control) implement targetHasOneFlip using shorthand #6823
  • fix(fabric.Text) fix typo in cacheProperties preventing cache clear to work #6775
  • fix(fabric.Canvas): Update backgroundImage and overlayImage coordinates on zoom change #6777
  • fix(fabric.Object): add strokeuniform to object toObject output. #6772
  • fix(fabric.Text): Improve path's angle detection for text on a path #6755

... (truncated)

Changelog

Sourced from fabric's changelog.

Changelog

[next]

  • ci(build): safeguard concurrent unlocking #8309
  • ci(): update stale bot #8307
  • ci(test): await golden generation in visual tests #8284
  • ci(): Add a pipeline check for verifying that CHANGELOG.md has been updated #8302
  • BREAKING feat(fabric.IText) rename data-fabric-hiddentextarea to data-fabric with value textarea
  • ci(): adds a lock file to the repo when build is in progress, makes local testing wait for the build to complete #8290
  • fix(WebGLProbe): regression caused by #8199, #8301
  • fix(fabric.utils) added missing import in dom_misc #8293
  • fix(Object): extraParam should not be passed to options #8295
  • test(): add globalCompositeOperation tests #8271
  • fix(): use sendObjectToPlane in mergeClipPaths #8247
  • chore(): prettify all source code #8276
  • chore(lint): disallow Math.hypot, window, document #8277
  • ci(): Add node18 and add a check for prettier #8275
  • ci(test): suite fixes for browser #8176
  • ci(): install prettier #8242
  • ci(): migrate scripts to es6 modules #8266
  • BREAKING refactor(util): remove lang_array since there are no more use cases #8274
  • chore(TS): migrate Pattern #8255
  • ci(): add source-map-support for testing #8248
  • ci(): file cleanup #8254
  • ci(): fix test global error handlers #8267
  • fix(fabric.Canvas): dispose and request animation frame scheduling fix #8220
  • ci(test): fix golden creation from browser #8270
  • BREAKING refactor(util): boundingBoxFromPoints, removed transform #8269
  • ci(): reintroduce node 14 testing #8232
  • chore(TS): finish converting utils #8230
  • test(): Add extensive coverage for mergeClipPath #8245
  • ci() Nicer names for GHA #8235
  • Update tests.yml
  • ci(): consolidate test workflows #8227
  • chore(TS): BREAKING: populateWithProperties => pick #8202
  • chore(TS): extract initFilterBackend from HEADER #8199
  • chore(TS): extract caches from HEADER #8198
  • Chore(TS): migrate Intersection #8121
  • chore(TS): es6 for util/path.ts and more utils converted #8201
  • fix(ci): report build script failure + fix missing logs #8188
  • fix(): update window => fabric.window #8209
  • chore(TS): extract const reNonWord from HEADER #8197
  • chore(TS): extract config values in its own module #8194
  • ci(): update code coverage action comment #8205
  • fix(fabric.Gradient): Guard against deep mutation on svg export for color exports #8196
  • chore(TS): migrate gradient #8154
  • Chore(TS): Convert more utilities #8193
  • docs(CONTRIBUTING): fix typo #8191
  • chore(TS): move control files under controls folder #8185

... (truncated)

Commits

You can trigger a rebase of this PR 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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor 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

You can disable automated security fix PRs for this repo from the Security Alerts page.

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 4, 2022
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/jsdom-and-fabric-19.0.0 branch from c4c3ab1 to 1a07512 Compare February 23, 2023 01:42
Bumps [jsdom](https://github.com/jsdom/jsdom) to 19.0.0 and updates ancestor dependency [fabric](https://github.com/fabricjs/fabric.js). These dependencies need to be updated together.


Updates `jsdom` from 9.12.0 to 19.0.0
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)
- [Commits](jsdom/jsdom@9.12.0...19.0.0)

Updates `fabric` from 2.7.0 to 5.2.4
- [Release notes](https://github.com/fabricjs/fabric.js/releases)
- [Changelog](https://github.com/fabricjs/fabric.js/blob/master/CHANGELOG.md)
- [Commits](fabricjs/fabric.js@v2.7.0...v5.2.4)

---
updated-dependencies:
- dependency-name: jsdom
  dependency-type: indirect
- dependency-name: fabric
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/jsdom-and-fabric-19.0.0 branch from 1a07512 to 173ce7f Compare March 1, 2023 01:35
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.

0 participants