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

⬆️ Update test packages #104

Merged
merged 1 commit into from
Dec 16, 2023
Merged

⬆️ Update test packages #104

merged 1 commit into from
Dec 16, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 9, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@vitest/coverage-c8 (source) ^0.31.0 -> ^0.33.0 age adoption passing confidence
@vitest/ui (source) ^0.31.0 -> ^0.34.0 age adoption passing confidence
@vue/test-utils 2.3.2 -> 2.4.3 age adoption passing confidence
happy-dom 9.0.0 -> 9.20.3 age adoption passing confidence
vitest (source) ^0.31.0 -> ^0.34.0 age adoption passing confidence

Release Notes

vitest-dev/vitest (@​vitest/coverage-c8)

v0.33.0

Compare Source

   🚨 Breaking Changes
  • Revert default include patterns  -  by @​so1ve #​3729
    • 0.32.0 changed the default include globs to be compatible with Jest. After a discussion with the community, we are reverting this change because it turned out to be non-intuitive.
   🐞 Bug Fixes
    View changes on GitHub

v0.32.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.32.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.32.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.32.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.32.0

Compare Source

   🚨 Breaking Changes
  • Throw an error, if the module cannot be resolved  -  by @​sheremet-va in https://github.com/vitest-dev/vitest/issues/3307 (1ad63)
    • Vitest used to fall back to the original import when it could not resolve it to the file path or the virtual module. This leads to hard-to-find module graph mismatches if you had incorrect alias or relied on relative imports to be resolved to the project root (which is usual behavior in TypeScript) because the code accidentally "worked". With this release, Vitest will now throw an error if it cannot resolve the module - there are possible edge cases that are not covered yet, so if you have any problems with this, please open a separate issue with reproduction.
  • Improve globs  -  by @​nickmccurdy in https://github.com/vitest-dev/vitest/issues/3392 (19ecc)
    • Vitest now has glob patterns similar to Jest for better compatibility. It's possible that some files will be considered test files when previously they were not. For example, Vitest now considers test.js to be a test file. Also any file in __tests__ is now considered to be a test, not just files with test or spec suffix.
  • Add @vitest/coverage-v8 package  -  by @​AriPerkkio in https://github.com/vitest-dev/vitest/issues/3339 (82112)
    • Vitest now uses v8 code coverage directly for better performance. @vitest/coverage-c8 is deprecated as Vitest no longer uses c8 package for coverage output. It will not be updated anymore, and Vitest will fail in the next version if the user has c8 as their coverage provider. Please, install the new @vitest/coverage-v8 package if you previously used @vitest/coverage-c8.
  • mocker: Don't restore mock to the original if the module is automocked  -  by @​sheremet-va in https://github.com/vitest-dev/vitest/issues/3518 (c1004)
    • spy.mockRestore on auto-mocked named exports will no longer restore their implementation to the actual function. This behavior better matches what Jest does.
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.31.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.31.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.31.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.31.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vuejs/test-utils (@​vue/test-utils)

v2.4.3

Compare Source

What's Changed

Full Changelog: vuejs/test-utils@v2.4.2...v2.4.3

v2.4.2

Compare Source

What's Changed

Fix
Docs
Chore

New Contributors

Full Changelog: vuejs/test-utils@v2.4.1...v2.4.2

v2.4.1

Compare Source

What's Changed

Fixes
Docs
(Dev) Dependencies

New Contributors

Full Changelog: vuejs/test-utils@v2.4.0...v2.4.1

v2.4.0

Compare Source

Note: there might be some minor breaking changes around types. We tried hard to avoid this and tested a few different projects, but there was some major under the hood changes relating to types (which should improve the TypeScript experience). See the note at the top of the previous release, 2.4.0-alpha.2: https://github.com/vuejs/test-utils/releases/tag/v2.4.0-alpha.2

Between the last main release, v2.3.2, and v2.4.0, there were three alphas:

Please see those release notes for changes if you are updating from v2.3.2. Again, there should not be any major changes, and you code and tests should continue to work as before without any changes.

If you do encounter breaking changes transitioning from 2.3.x -> 2.4.x, please file an issue.

capricorn86/happy-dom (happy-dom)

v9.20.3

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue where all properties didn't get copied from HTMLUnknownElement to a custom element that is replacing it when it is defined. (#​668)

v9.20.2

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue where CSS variable values where not returned by Window.getComputedStyle() when calling CSSStyleDeclaration.getPropertyValue(). (#​932)

v9.20.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem with querySelectorAll() where it didn't always return elements in document order. (#​928)

v9.20.0

Compare Source

🎨 Features
  • Adds support for disabling the simulation of rendering when calculating computed style. The rendering process converts units such as rem, em and cm to pixels, but it is very limited. (#​929)
  • Changes the behavior of converting percentage values to "0px" when calculating computed style (as it fails to convert) to just leave the values.

v9.19.2

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue where attribute selectors with an operator and with a value without quatation marks no longer worked (e.g. "[attr^=value]"). (#​923)

v9.19.1

Compare Source

👷‍♂️ Patch fixes
  • Adds support for the mime type "apng" to XMLHttpRequest

Thank you @​btea for your contribution!

v9.19.0

Compare Source

🎨 Features
  • Adds support for "rem", "em", "vw", "vh", "vmin", "vmax", "cm", "mm", "in", "pt", "pc", "Q" measurement values to Window.getComputedStyle() and Window.matchMedia() (#​921)
  • Adds support for "%" measurement values to Window.getComputedStyle() and Window.matchMedia() when setting font size (other properties will be set to "0px") (#​921)
  • Sets "font: 16px "Times new Roman"" as default font on the <html> when using Window.getComputedStyle() (#​921)
  • Adds support for "outline", "outline-color", "outline-style", "outline-width", "outline-offset", "letter-spacing", "word-spacing" and "text-indent" to CSSStyleDeclaration. (#​921)
  • Adds support for the media query rules "orientation", "prefers-color-scheme", "any-hover", "hover", "any-pointer", "pointer", "display-mode", "width", "height", "min-aspect-ratio", "max-aspect-ratio" and "aspect-ratio" (#​921)
  • Improves support for the media query rules "min-width", "max-width", "min-height" and "max-height" (#​921)
  • Adds support for media types "all", "screen" and "print" to media queries (#​921)
  • Adds support for the "only", "not", "and" and "or" operators to media queries (#​921)
  • Adds support for ranges to media queries (#​921)
  • Adds support for "@​-webkit-keyframes", "@​-webkit-container" and "@​-webkit-supports" to CSS parser (#​921)
👷‍♂️ Patch fixes
  • Adds support for ignoring unknown "@​" rules to the CSS parser. (#​921)
  • Adds support for the "height" property to CSSStyleDeclaration. Not having support for "height" was missed somehow, as we have support for "width". (#​922)

v9.18.3

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue where non-string values did not get converted to strings in CharacterData.data, CharacterData.nodeValue or CharacterData.textContent. (#​819)

v9.18.2

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue in the XML parser where it failed to parse comments including dash characters (-). (#​916)

Thank you @​gtm-nayan for your contribution!

v9.18.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue where attribute query selectors using "~" or "|" as operators for finding attributes containing a word did not match when there was only one word. (#​914)

v9.18.0

[Compare Source](https://togithub.com/capricorn86/happy-dom/compare/v9


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies label Jun 9, 2023
@renovate renovate bot force-pushed the renovate/test-packages branch 2 times, most recently from 7aa24e1 to c4a2b1a Compare June 29, 2023 13:47
@renovate renovate bot force-pushed the renovate/test-packages branch from c4a2b1a to 316cb8c Compare July 9, 2023 16:59
@renovate renovate bot force-pushed the renovate/test-packages branch 3 times, most recently from 911494f to 36025b9 Compare July 30, 2023 06:16
@renovate renovate bot force-pushed the renovate/test-packages branch 12 times, most recently from 6de3704 to 28781e8 Compare August 4, 2023 18:10
@renovate renovate bot force-pushed the renovate/test-packages branch 3 times, most recently from 8eada24 to f56ca40 Compare August 17, 2023 02:04
@renovate renovate bot force-pushed the renovate/test-packages branch 4 times, most recently from 431772d to a9c775a Compare August 27, 2023 09:10
@renovate renovate bot force-pushed the renovate/test-packages branch 2 times, most recently from fe153d1 to 5b56418 Compare October 9, 2023 10:18
@renovate renovate bot force-pushed the renovate/test-packages branch 2 times, most recently from df7e582 to 508dfe1 Compare December 4, 2023 17:13
@renovate renovate bot force-pushed the renovate/test-packages branch 3 times, most recently from f8ebbd2 to 2d9944f Compare December 12, 2023 20:01
@A-kirami A-kirami merged commit 546a009 into main Dec 16, 2023
7 checks passed
@A-kirami A-kirami deleted the renovate/test-packages branch December 16, 2023 00:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant