vets-website
vets-website copied to clipboard
Bump the npm_and_yarn group across 2 directories with 2 updates
Bumps the npm_and_yarn group with 1 update in the /src/platform/pdf directory: pdfjs-dist. Bumps the npm_and_yarn group with 1 update in the /src/platform/testing directory: jsdom.
Updates pdfjs-dist
from 2.16.105 to 4.2.67
Commits
- See full diff in compare view
Updates jsdom
from 15.2.1 to 24.1.0
Release notes
Sourced from jsdom's releases.
Version 24.1.0
- Added the
getSetCookie()
method to theHeaders
class. (ushiboy)- Fixed the creation and parsing of elements with names from
Object.prototype
, like"constructor"
or"toString"
.- Updated
rweb-cssom
, which can now parse additional CSS constructs.Version 24.0.0
This release reverts our selector engine back to
nwsapi
. As discussed in #3659, the performance regressions from@asamuzakjp/dom-selector
turned out to be higher than anticipated. In the future, we can revisit@asamuzakjp/dom-selector
after it reachesnwsapi
's performance on the two real-world benchmarks provided by the community.Since reverting to
nwsapi
causes several functionality regressions, e.g. removing:has()
support, we've decided to make this a major version.Additionally:
- Small fixes to edge-case behavior of the following properties:
input.maxLength
,input.minLength
,input.size
,progress.max
,tableCell.colSpan
,tableCell.rowSpan
,tableCol.span
,textArea.cols
,textArea.maxLength
,textArea.minLength
,textArea.rows
.Version 23.2.0
This release switches our CSS selector engine from
nwsapi
to@asamuzakjp/dom-selector
. The new engine is more actively maintained, and supports many new selectors: see the package's documentation for the full list. It also works better with shadow trees.There is a potential of a performance regression due to this change. In our stress test benchmark, which runs most of these 273 selectors against this 128 KiB document, the new engine completes the benchmark only 0.25x as fast. However, we're hopeful that in more moderate usage this will not be a significant issue. Any help speeding up
@asamuzakjp/dom-selector
is appreciated, and feel free to open an issue if this has had a significant impact on your project.Version 23.1.0
- Added an initial implementation of
ElementInternals
, including theshadowRoot
getter and the string-valued ARIA properties. (zjffun)- Added the string-valued ARIA attribute-reflecting properties to
Element
.- Fixed
history.pushState()
andhistory.replaceState()
to follow the latest specification, notably with regards to how they handle empty string inputs and what new URLs are possible.- Fixed the
input.valueAsANumber
setter to handleNaN
correctly. (alexandertrefz)- Updated various dependencies, including
cssstyle
which contains several bug fixes.Version 23.0.1
- Fixed the incorrect
canvas
peer dependency introduced in v23.0.0.Version 23.0.0
- Node.js v18 is now the minimum supported version.
- Updated various dependencies, including
whatwg-url
which integrates various additions to theURL
andURLSearchParams
objects.Version 22.1.0
- Added
crypto.randomUUID()
. (jamesbvaughan)- Added
DOMRect
andDOMRectReadOnly
.- Added
AbortSignal.timeout()
.- Added
abortSignal.throwIfAborted()
.- Added support for the
submitter
argument to theFormData
constructor. (jenseng)- Improved
getComputedStyle()
's results for color-based properties, to resolve named colors and attempt to provide initial inheritance support. (hoekz-wwt)- Updated
Window
's event handler properties (e.g.oncopy
,ontouchstart
, etc.) to reflect the latest list from the standard.- Fixed
DOMParser
-created documents to inherit their URL from the creating document.Version 22.0.0
- Node.js v16 is now the minimum supported version.
- Removed support for running jsdom in the browser via a browserified bundle. This carried with it too much complexity, especially for our testing infrastructure, and a testing package we relied on was recently deprecated.
Version 21.1.2
- Fixed
setRangeText()
used on<input>
and<textarea>
elements to calculate the new end index correctly. (pmstss)- Fixed
pageX
,pageY
,offsetX
, andoffsetY
onMouseEvent
s during dispatch. (jenseng)
... (truncated)
Changelog
Sourced from jsdom's changelog.
24.1.0
- Added the
getSetCookie()
method to theHeaders
class. (ushiboy)- Fixed the creation and parsing of elements with names from
Object.prototype
, like"constructor"
or"toString"
.- Updated
rweb-cssom
, which can now parse additional CSS constructs.24.0.0
This release reverts our selector engine back to
nwsapi
. As discussed in #3659, the performance regressions from@asamuzakjp/dom-selector
turned out to be higher than anticipated. In the future, we can revisit@asamuzakjp/dom-selector
after it reachesnwsapi
's performance on the two real-world benchmarks provided by the community.Since reverting to
nwsapi
causes several functionality regressions, e.g. removing:has()
support, we've decided to make this a major version.Additionally:
- Small fixes to edge-case behavior of the following properties:
input.maxLength
,input.minLength
,input.size
,progress.max
,tableCell.colSpan
,tableCell.rowSpan
,tableCol.span
,textArea.cols
,textArea.maxLength
,textArea.minLength
,textArea.rows
.23.2.0
This release switches our CSS selector engine from
nwsapi
to@asamuzakjp/dom-selector
. The new engine is more actively maintained, and supports many new selectors: see the package's documentation for the full list. It also works better with shadow trees.There is a potential of a performance regression due to this change. In our stress test benchmark, which runs most of these 273 selectors against this 128 KiB document, the new engine completes the benchmark only 0.25x as fast. However, we're hopeful that in more moderate usage this will not be a significant issue. Any help speeding up
@asamuzakjp/dom-selector
is appreciated, and feel free to open an issue if this has had a significant impact on your project.23.1.0
- Added an initial implementation of
ElementInternals
, including theshadowRoot
getter and the string-valued ARIA properties. (zjffun)- Added the string-valued ARIA attribute-reflecting properties to
Element
.- Fixed
history.pushState()
andhistory.replaceState()
to follow the latest specification, notably with regards to how they handle empty string inputs and what new URLs are possible.- Fixed the
input.valueAsANumber
setter to handleNaN
correctly. (alexandertrefz)- Updated various dependencies, including
cssstyle
which contains several bug fixes.23.0.1
- Fixed the incorrect
canvas
peer dependency introduced in v23.0.0.23.0.0
- Node.js v18 is now the minimum supported version.
- Updated various dependencies, including
whatwg-url
which integrates various additions to theURL
andURLSearchParams
objects.22.1.0
- Added
crypto.randomUUID()
. (jamesbvaughan)- Added
DOMRect
andDOMRectReadOnly
.- Added
AbortSignal.timeout()
.- Added
abortSignal.throwIfAborted()
.- Added support for the
submitter
argument to theFormData
constructor. (jenseng)- Improved
getComputedStyle()
's results for color-based properties, to resolve named colors and attempt to provide initial inheritance support. (hoekz-wwt)- Updated
Window
's event handler properties (e.g.oncopy
,ontouchstart
, etc.) to reflect the latest list from the standard.- Fixed
DOMParser
-created documents to inherit their URL from the creating document.
... (truncated)
Commits
4555914
Version 24.1.0a693107
Fix elements with names from Object.prototype8738255
Add regression test for comma selectora343932
Implement the getSetCookie() method of Headersf2fa507
Update URLs and fix grammar error7dc7ab9
Fix getComputedStyle() not-implemented messagef5f2468
Update dependencies and most dev dependenciesb32d82b
Fix wpt failure in overwritten-customElements-global.html2f8a730
Version 24.0.0db0a4dc
Implement the remaining types of numeric reflection- 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 You can disable automated security fix PRs for this repo from the Security Alerts page.