Tydux
Tydux copied to clipboard
Bump jsdom, jest and jest-preset-angular in /modules/tydux-angular
Bumps jsdom, jest and jest-preset-angular. These dependencies needed to be updated together.
Updates jsdom
from 11.12.0 to 19.0.0
Release notes
Sourced from jsdom's releases.
Version 19.0.0
- Changed
jsdom.nodeLocation()
to returnundefined
when used on nodes that originate via fragment parsing (e.g., viainnerHTML
). 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 theWindow
'sload
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()
andheaders.set()
to normalize values. (MattiasBuelens)- Fixed
pageshow
events to havebubbles: true
andcancelable: true
. (MattiasBuelens)- Implemented the
reason
property onAbortSignal
s, along with the correspondingreason
argument toabortSignal.abort()
andAbortSignal.abort()
. (MattiasBuelens)Version 18.0.1
- Fixed live
Range
s to update correctly after callingnode.normalize()
. (hgiesel)- Fixed live
Range
s 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
'sstrictSSL
option (which defaults totrue
).- Changed the global in which almost all
Promise
andTypeError
instances are created to be the jsdom global, not the Node.js global. This could affect any code that usesinstanceof
.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
andy
properties to the return value ofgetBoundingClientRect()
. (eiko)- Implemented wrapping for
textareaEl.value
if thewrap=""
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
orundefined
as an exception. (@mbest
)- Removed the dependency on the deprecated
request
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 using
MutationObserver
s to observe elements inside aMutationObserver
callback.Version 16.5.2
- Fixed
Access-Control-Allow-Headers: *
to work withXMLHttpRequest
. (silviot)- Fixed
xhr.response
to strip any leading BOM whenxhr.responseType
is"json"
.
... (truncated)
Changelog
Sourced from jsdom's changelog.
19.0.0
- Changed
jsdom.nodeLocation()
to returnundefined
when used on nodes that originate via fragment parsing (e.g., viainnerHTML
). 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 theWindow
'sload
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()
andheaders.set()
to normalize values. (MattiasBuelens)- Fixed
pageshow
events to havebubbles: true
andcancelable: true
. (MattiasBuelens)- Implemented the
reason
property onAbortSignal
s, along with the correspondingreason
argument toabortSignal.abort()
andAbortSignal.abort()
. (MattiasBuelens)18.0.1
- Fixed live
Range
s to update correctly after callingnode.normalize()
. (hgiesel)- Fixed live
Range
s 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
'sstrictSSL
option (which defaults totrue
).- Changed the global in which almost all
Promise
andTypeError
instances are created to be the jsdom global, not the Node.js global. This could affect any code that usesinstanceof
.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
andy
properties to the return value ofgetBoundingClientRect()
. (eiko)- Implemented wrapping for
textareaEl.value
if thewrap=""
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
orundefined
as an exception. (mbest)
... (truncated)
Commits
a604d67
Version 19.0.0e46f76f
Fix crash when calling window.close() inside load event listenerf9de3fd
Do not track location information for fragment-parsed nodesa61fdb8
Version 18.1.115cbed6
Fix connectedCallback with document fragments79ff734
Version 18.1.0a303721
Add AbortSignal's reason property158ada2
Update web platform tests + minor fixesc98e0f5
Fix changelog username typob1ce1af
Version 18.0.1- Additional commits viewable in compare view
Updates jest
from 23.6.0 to 29.0.2
Release notes
Sourced from jest's releases.
v29.0.2
Features
[jest-transform]
ExposeTransformFactory
type (#13184)Fixes
[babel-plugin-jest-hoist]
Support importedjest
in mock factory (#13188)[jest-mock]
Align the behavior and return type ofgenerateFromMetadata
method (#13207)[jest-runtime]
Supportjest.resetModules()
with ESM (#13211)New Contributors
@momokid
made their first contribution in facebook/jest#13194Full Changelog: https://github.com/facebook/jest/compare/v29.0.1...v29.0.2
v29.0.1
Fixes
[jest-snapshot]
PasssnapshotFormat
through when diffing snapshots (#13181)Full Changelog: https://github.com/facebook/jest/compare/v29.0.0...v29.0.1
v29.0.0
Blog post: https://jestjs.io/blog/2022/08/25/jest-29
Features
[expect]
[BREAKING] Differentiate betweenMatcherContext
MatcherUtils
andMatcherState
types (#13141)[jest-circus]
Add support fortest.failing.each
(#13142)[jest-config]
[BREAKING] MakesnapshotFormat
default toescapeString: false
andprintBasicPrototype: false
(#13036)[jest-config]
[BREAKING] Remove undocumentedcollectCoverageOnlyFrom
option (#13156)[jest-environment-jsdom]
[BREAKING] Upgrade tojsdom@20
(#13037, #13058)[@jest/globals]
Addjest.Mocked
,jest.MockedClass
,jest.MockedFunction
andjest.MockedObject
utility types (#12727)[jest-mock]
[BREAKING] RefactorMocked*
utility types.MaybeMockedDeep
andMaybeMocked
becameMocked
andMockedShallow
respectively; only deep mocked variants ofMockedClass
,MockedFunction
andMockedObject
are exported (#13123, #13124)[jest-mock]
[BREAKING] Change the defaultjest.mocked
helper’s behavior to deep mocked (#13125)[jest-snapshot]
[BREAKING] Letbabel
find config when updating inline snapshots (#13150)[@jest/test-result, @jest/types]
[BREAKING] ReplaceBytes
andMilliseconds
types withnumber
(#13155)[jest-worker]
AddsworkerIdleMemoryLimit
option which is used as a check for worker memory leaks >= Node 16.11.0 and recycles child workers as required (#13056, #13105, #13106, #13107)[pretty-format]
[BREAKING] RemoveConvertAnsi
plugin in favour ofjest-serializer-ansi-escapes
(#13040)[pretty-format]
Allow to opt out from sorting object keys withcompareKeys: null
(#12443)Fixes
[jest-config]
Fix testing multiple projects with TypeScript config files (#13099)[@jest/expect-utils]
Fix deep equality of ImmutableJS Record (#13055)[jest-haste-map]
Increase the maximum possible file size that jest-haste-map can handle (#13094)[jest-runtime]
Properly support CJS re-exports from dual packages (#13170)[jest-snapshot]
MakeprettierPath
optional inSnapshotState
(#13149)[jest-snapshot]
Fix parsing error from inline snapshot files withJSX
(#12760)
... (truncated)
Changelog
Sourced from jest's changelog.
29.0.2
Features
[jest-transform]
ExposeTransformFactory
type (#13184)Fixes
[babel-plugin-jest-hoist]
Support importedjest
in mock factory (#13188)[jest-mock]
Align the behavior and return type ofgenerateFromMetadata
method (#13207)[jest-runtime]
Supportjest.resetModules()
with ESM (#13211)29.0.1
Fixes
[jest-snapshot]
PasssnapshotFormat
through when diffing snapshots (#13181)29.0.0
Features
[expect]
[BREAKING] Differentiate betweenMatcherContext
MatcherUtils
andMatcherState
types (#13141)[jest-circus]
Add support fortest.failing.each
(#13142)[jest-config]
[BREAKING] MakesnapshotFormat
default toescapeString: false
andprintBasicPrototype: false
(#13036)[jest-config]
[BREAKING] Remove undocumentedcollectCoverageOnlyFrom
option (#13156)[jest-environment-jsdom]
[BREAKING] Upgrade tojsdom@20
(#13037, #13058)[@jest/globals]
Addjest.Mocked
,jest.MockedClass
,jest.MockedFunction
andjest.MockedObject
utility types (#12727)[jest-mock]
[BREAKING] RefactorMocked*
utility types.MaybeMockedDeep
andMaybeMocked
becameMocked
andMockedShallow
respectively; only deep mocked variants ofMockedClass
,MockedFunction
andMockedObject
are exported (#13123, #13124)[jest-mock]
[BREAKING] Change the defaultjest.mocked
helper’s behavior to deep mocked (#13125)[jest-snapshot]
[BREAKING] Letbabel
find config when updating inline snapshots (#13150)[@jest/test-result, @jest/types]
[BREAKING] ReplaceBytes
andMilliseconds
types withnumber
(#13155)[jest-worker]
AddsworkerIdleMemoryLimit
option which is used as a check for worker memory leaks >= Node 16.11.0 and recycles child workers as required (#13056, #13105, #13106, #13107)[pretty-format]
[BREAKING] RemoveConvertAnsi
plugin in favour ofjest-serializer-ansi-escapes
(#13040)[pretty-format]
Allow to opt out from sorting object keys withcompareKeys: null
(#12443)Fixes
[jest-config]
Fix testing multiple projects with TypeScript config files (#13099)[@jest/expect-utils]
Fix deep equality of ImmutableJS Record (#13055)[jest-haste-map]
Increase the maximum possible file size that jest-haste-map can handle (#13094)[jest-runtime]
Properly support CJS re-exports from dual packages (#13170)[jest-snapshot]
MakeprettierPath
optional inSnapshotState
(#13149)[jest-snapshot]
Fix parsing error from inline snapshot files withJSX
(#12760)[jest-worker]
When a process runs out of memory worker exits correctly and doesn't spin indefinitely (#13054)Chore & Maintenance
... (truncated)
Commits
616fcf5
v29.0.2132e815
chore: update to TypeScript 4.8 (#13177)b959a3d
v29.0.186de0cb
chore: updatejest-runner-tsd
(#13179)75006e4
v29.0.04def94b
v29.0.0-alpha.663e506b
v29.0.0-alpha.598a833b
v29.0.0-alpha.40998187
v29.0.0-alpha.302cd85f
chore: migrate fromlerna
tolerna-lite
(#13097)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by simenb, a new releaser for jest since your current version.
Updates jest-preset-angular
from 6.0.2 to 12.2.2
Release notes
Sourced from jest-preset-angular's releases.
v12.2.2
No release notes provided.
v12.2.1
No release notes provided.
v12.2.0
No release notes provided.
v12.1.0
No release notes provided.
v12.1.0-next.0
No release notes provided.
v12.0.1
No release notes provided.
v12.0.0
No release notes provided.
v12.0.0-next.2
No release notes provided.
v12.0.0-next.1
No release notes provided.
v12.0.0-next.0
No release notes provided.
v11.1.2
No release notes provided.
v11.1.1
No release notes provided.
v11.0.1
No release notes provided.
v11.0.0
No release notes provided.
v11.0.0-rc.4
No release notes provided.
v11.0.0-rc.3
No release notes provided.
v11.0.0-rc.2
No release notes provided.
... (truncated)
Changelog
Sourced from jest-preset-angular's changelog.
12.2.2 (2022-08-29)
Bug Fixes
12.2.1 (2022-08-28)
Bug Fixes
12.2.0 (2022-07-14)
Bug Fixes
Features
- add
global-setup.mjs
to use with Jest ESM mode (#1661) (97a0ec8)- allow configuring options
TestEnvironmentOptions
for setup test env (#1657) (a64a4ac), closes #165612.1.0 (2022-06-03)
Features
- allow passing the
teardown
object toglobal-setup
(#1475) (3dab02b)- support Angular 14 (#1611) (7c294d7), closes #1410
12.0.1 (2022-05-14)
Features
... (truncated)
Commits
11c02f4
chore(release): 12.2.2 (#1748)26f021f
fix: includets_compatibility/src
when publishing the package (#1747)ff948fe
build(deps): Update dependency jest-preset-angular to ^12.2.1 (#1744)69a4352
build(deps): Update commitlint monorepo (#1740)e2c291b
chore(release): 12.2.1 (#1742)aea7205
fix(transformers): adopt ts 4.8 changes forreplace-resource
(#1739)4494966
build(deps): Update ESLint packages (#1738)6d98804
build(deps): update Yarn to v3.2.3 (#1734)245067c
build(deps): Update dependency jquery to ^3.6.1 (#1737)dcd2703
build(deps): Update dependency@types/jest
to ^28.1.8 (#1736)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by anhpnnd, a new releaser for jest-preset-angular since your current version.
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) -
@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.