Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

build(deps): bump tough-cookie, jsdom and @semantic-release/npm#10

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
dependabot wants to merge1 commit intomaster
base:master
Choose a base branch
Loading
fromdependabot/npm_and_yarn/tough-cookie-and-jsdom-and-semantic-release/npm-4.1.3

Conversation

dependabot[bot]
Copy link

@dependabotdependabotbot commented on behalf ofgithubJul 12, 2023
edited
Loading

Bumpstough-cookie,jsdom and@semantic-release/npm. These dependencies needed to be updated together.
Updatestough-cookie from 2.4.3 to 4.1.3

Release notes

Sourced fromtough-cookie's releases.

4.1.3

Security fix for Prototype Pollution discovery in#282. This is a minor release, although output from theinspect utility is affected by this change, we felt this change was important enough to be pushed into the next patch.

4.1.2 -- Patch and Bugfix Release

What's Changed

Full Changelog:salesforce/tough-cookie@v4.1.1...v4.1.2

4.1.1

Patch Release

What's Changed

Full Changelog:salesforce/tough-cookie@v4.1.0...v4.1.1

4.1.0

v4.1.0

Minor release, focused mainly on resolving reported issues and some minor feature work.

What's Changed

... (truncated)

Commits
  • 4ff4d29 4.1.3 release preparation, update the package and lib/version to 4.1.3. (#284)
  • 12d4747 Prevent prototype pollution in cookie memstore (#283)
  • f06b72d Fix documentation for store.findCookies, missing allowSpecialUseDomain proper...
  • b1a8898 fix: allow set cookies with localhost (#253)
  • ec70796 4.1.1 Patch -- allow special use domains by default (#250)
  • d4ac580 fix: allow special use domains by default (#249)
  • 79c2f7d 4.1.0 release to NPM (#245)
  • 4fafc17 Prepare tough-cookie 4.1 for publishing (updated GitHub actions, move Dockerf...
  • aa4396d fix: distinguish between no samesite and samesite=none (#240)
  • b8d7511 Modernize README (#234)
  • Additional commits viewable incompare view
Maintainer changes

This version was pushed to npm byawaterma, a new releaser for tough-cookie since your current version.


Updatesjsdom from 16.2.2 to 16.7.0

Release notes

Sourced fromjsdom's releases.

Version 16.7.0

  • AddedAbortSignal.abort(). (ninevra)
  • Added dummyx andy properties to the return value ofgetBoundingClientRect(). (eiko)
  • Implemented wrapping fortextareaEl.value if thewrap="" attribute is specified. (ninevra)
  • Changed newline normalization in<textarea>s according torecent HTML Standard updates. (ninevra)
  • Fixed some bad cascade computation ingetComputedStyle(). (romain-trotard)

Version 16.6.0

  • AddedparentNode.replaceChildren(). (@​ninevra)
  • Fixed jsdom's handling of when code running inside the jsdom throwsnull orundefined as an exception. (@​mbest)
  • Removed the dependency on the deprecatedrequest package, in the process fixing several issues with theXMLHttpRequest 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 usingMutationObservers to observe elements inside aMutationObserver callback.

Version 16.5.2

  • FixedAccess-Control-Allow-Headers: * to work withXMLHttpRequest. (silviot)
  • Fixedxhr.response to strip any leading BOM whenxhr.responseType is"json".
  • Fixednew Text() andnew Comment() constructors to properly set the resulting node'sownerDocument.
  • FixedcustomElements.whenDefined() to resolve its returned promise with the custom element constructor, per recent spec updates. (ExE-Boss)
  • Fixed parsing to ensure that<svg>\<template></template></svg> does not throw an exception, but instead correctly produces a SVG-namespace\<template> element.
  • FixeddomParser.parseFromString() to treat<noscript> elements appropriately.
  • Fixed form control validity checking when the control was outside the<form> element and instead associated using theform="" attribute.
  • FixedlegendEl.form to return the correct result based on its parent<fieldset>.
  • FixedoptionEl.text to exclude<script> descendants.
  • Fixed radio buttons and checkboxes to not fireinput andchange events when disconnected.
  • FixedinputEl.indeterminate to reset to its previous value when canceling aclick event on a checkbox or radio button.
  • Fixed the behavior of event handler attributes (e.g.onclick="...code...") when there were global variables namedelement orformOwner. (ExE-Boss)
  • On Node.js v14.6.0+ whereWeakRefs are available, fixedNodeIterator to no longer stop working when more than tenNodeIterator instances are created, and to use less memory due to inactiveNodeIterators sticking around. (ExE-Boss)

Version 16.5.1

  • Fixed a regression that brokecustomElements.get() in v16.5.0. (fdesforges)
  • Fixedwindow.event to have a setter which overwrites thewindow.event property with the given value, per the specification. This fixes an issue where after upgrading to jsdom v16.5.0 you would no longer be able to set a global variable namedevent in the jsdom context.

Version 16.5.0

  • Addedwindow.queueMicrotask().
  • Addedwindow.event.
  • AddedinputEvent.inputType. (diegohaz)
  • Removedondragexit fromWindow and friends, per a spec update.
  • Fixed the URL ofabout:blank iframes. Previously it was getting set to the parent's URL. (SimonMueller)
  • Fixed the loading of subresources from the filesystem when they had non-ASCII filenames.
  • Fixed thehidden="" attribute to causedisplay: none per the user-agent stylesheet. (ph-fritsche)
  • Fixed thenew File() constructor to no longer convert/ to:, pera pending spec update.
  • Fixed mutation observer callbacks to be called with theMutationObserver instance as theirthis value.
  • Fixed<input type=checkbox> and<input type=radio> to be mutable even when disabled, pera spec update.
  • FixedXMLHttpRequest to not fire a redundant finalprogress event if aprogress event was previously fired with the sameloaded value. This would usually occur with small files.
  • FixedXMLHttpRequest to expose theContent-Length header on cross-origin responses.
  • Fixedxhr.response to returnnull for failures that occur during the middle of the download.
  • Fixed edge cases around passing callback functions or event handlers. (ExE-Boss)
  • Fixed edge cases around the properties of proxy-like objects such aslocalStorage ordataset. (ExE-Boss)

... (truncated)

Changelog

Sourced fromjsdom's changelog.

16.7.0

  • AddedAbortSignal.abort(). (ninevra)
  • Added dummyx andy properties to the return value ofgetBoundingClientRect(). (eiko)
  • Implemented wrapping fortextareaEl.value if thewrap="" attribute is specified. (ninevra)
  • Changed newline normalization in<textarea>s according torecent HTML Standard updates. (ninevra)
  • Fixed some bad cascade computation ingetComputedStyle(). (romain-trotard)

16.6.0

  • AddedparentNode.replaceChildren(). (ninevra)
  • Fixed jsdom's handling of when code running inside the jsdom throwsnull orundefined as an exception. (mbest)
  • Removed the dependency on the deprecatedrequest package, in the process fixing several issues with theXMLHttpRequest implementation around header processing. Special thanks to vegardbb for completing this months-long effort!

16.5.3

  • Fixed infinite recursion when usingMutationObservers to observe elements inside aMutationObserver callback.

16.5.2

  • FixedAccess-Control-Allow-Headers: * to work withXMLHttpRequest. (silviot)
  • Fixedxhr.response to strip any leading BOM whenxhr.responseType is"json".
  • Fixednew Text() andnew Comment() constructors to properly set the resulting node'sownerDocument.
  • FixedcustomElements.whenDefined() to resolve its returned promise with the custom element constructor, per recent spec updates. (ExE-Boss)
  • Fixed parsing to ensure that<svg>\<template></template></svg> does not throw an exception, but instead correctly produces a SVG-namespace\<template> element.
  • FixeddomParser.parseFromString() to treat<noscript> elements appropriately.
  • Fixed form control validity checking when the control was outside the<form> element and instead associated using theform="" attribute.
  • FixedlegendEl.form to return the correct result based on its parent<fieldset>.
  • FixedoptionEl.text to exclude<script> descendants.
  • Fixed radio buttons and checkboxes to not fireinput andchange events when disconnected.
  • FixedinputEl.indeterminate to reset to its previous value when canceling aclick event on a checkbox or radio button.
  • Fixed the behavior of event handler attributes (e.g.onclick="...code...") when there were global variables namedelement orformOwner. (ExE-Boss)
  • On Node.js v14.6.0+ whereWeakRefs are available, fixedNodeIterator to no longer stop working when more than tenNodeIterator instances are created, and to use less memory due to inactiveNodeIterators sticking around. (ExE-Boss)

16.5.1

  • Fixed a regression that brokecustomElements.get() in v16.5.0. (fdesforges)
  • Fixedwindow.event to have a setter which overwrites thewindow.event property with the given value, per the specification. This fixes an issue where after upgrading to jsdom v16.5.0 you would no longer be able to set a global variable namedevent in the jsdom context.

16.5.0

  • Addedwindow.queueMicrotask().
  • Addedwindow.event.
  • AddedinputEvent.inputType. (diegohaz)
  • Removedondragexit fromWindow and friends, per a spec update.
  • Fixed the URL ofabout:blank iframes. Previously it was getting set to the parent's URL. (SimonMueller)
  • Fixed the loading of subresources from the filesystem when they had non-ASCII filenames.
  • Fixed thehidden="" attribute to causedisplay: none per the user-agent stylesheet. (ph-fritsche)
  • Fixed thenew File() constructor to no longer convert/ to:, pera pending spec update.
  • Fixed mutation observer callbacks to be called with theMutationObserver instance as theirthis value.

... (truncated)

Commits

Updates@semantic-release/npm from 7.0.5 to 7.1.3

Release notes

Sourced from@​semantic-release/npm's releases.

v7.1.3

7.1.3 (2021-05-04)

Bug Fixes

  • use NPM_CONFIG_USERCONFIG in get-registry to match auth (#362) (13200ca)

v7.1.2

7.1.2 (2021-05-04)

Bug Fixes

  • deps: update dependency fs-extra to v10 (80fde1e)

v7.1.1

7.1.1 (2021-04-08)

Bug Fixes

  • deps: update dependency normalize-url to v6 (97ca719)

v7.1.0

7.1.0 (2021-03-30)

Features

v7.0.10

7.0.10 (2021-01-17)

Bug Fixes

  • improve error message text for npm tokens (#323) (88e5862)

v7.0.9

7.0.9 (2020-12-03)

Bug Fixes

v7.0.8

7.0.8 (2020-11-17)

... (truncated)

Commits
  • 13200ca fix: use NPM_CONFIG_USERCONFIG in get-registry to match auth (#362)
  • a8b1026 chore(deps): lock file maintenance (#358)
  • 80fde1e fix(deps): update dependency fs-extra to v10
  • 97ca719 fix(deps): update dependency normalize-url to v6
  • adc5c49 chore(deps): lock file maintenance (#352)
  • 60de512 chore(deps): lock file maintenance (#350)
  • a15c017 feat: use npm v7 (#304)
  • 7338fc2 chore(deps): lock file maintenance (#348)
  • cc771b8 docs(readme): fix postpublish script suggestion (#346)
  • 1800e75 chore(deps): update dependency p-retry to v4.4.0 (#345)
  • Additional commits viewable incompare 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 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)
    You can disable automated security fix PRs for this repo from theSecurity Alerts page.

@dependabotdependabotbot added the dependenciesPull requests that update a dependency file labelJul 12, 2023
@dependabotdependabotbotforce-pushed thedependabot/npm_and_yarn/tough-cookie-and-jsdom-and-semantic-release/npm-4.1.3 branch from30d3755 to39ed762CompareJuly 20, 2023 06:04
Bumps [tough-cookie](https://github.com/salesforce/tough-cookie), [jsdom](https://github.com/jsdom/jsdom) and [@semantic-release/npm](https://github.com/semantic-release/npm). These dependencies needed to be updated together.Updates `tough-cookie` from 2.4.3 to 4.1.3- [Release notes](https://github.com/salesforce/tough-cookie/releases)- [Changelog](https://github.com/salesforce/tough-cookie/blob/master/CHANGELOG.md)- [Commits](salesforce/tough-cookie@v2.4.3...v4.1.3)Updates `jsdom` from 16.2.2 to 16.7.0- [Release notes](https://github.com/jsdom/jsdom/releases)- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)- [Commits](jsdom/jsdom@16.2.2...16.7.0)Updates `@semantic-release/npm` from 7.0.5 to 7.1.3- [Release notes](https://github.com/semantic-release/npm/releases)- [Commits](semantic-release/npm@v7.0.5...v7.1.3)---updated-dependencies:- dependency-name: tough-cookie  dependency-type: indirect- dependency-name: jsdom  dependency-type: indirect- dependency-name: "@semantic-release/npm"  dependency-type: indirect...Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotbotforce-pushed thedependabot/npm_and_yarn/tough-cookie-and-jsdom-and-semantic-release/npm-4.1.3 branch from39ed762 to031f600CompareJuly 20, 2023 06:05
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers
No reviews
Assignees
No one assigned
Labels
dependenciesPull requests that update a dependency file
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

0 participants

[8]ページ先頭

©2009-2025 Movatter.jp