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

chore(deps): update dev dependencies (non-major) #209

Merged
merged 1 commit into from
Jun 14, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 28, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/react (source) 18.2.0 -> 18.2.12 age adoption passing confidence
@vitest/coverage-c8 (source) 0.30.1 -> 0.32.0 age adoption passing confidence
happy-dom 9.9.2 -> 9.20.3 age adoption passing confidence
rimraf 5.0.0 -> 5.0.1 age adoption passing confidence
semantic-release 21.0.1 -> 21.0.5 age adoption passing confidence
typedoc (source) 0.24.6 -> 0.24.8 age adoption passing confidence
typescript (source) 5.0.4 -> 5.1.3 age adoption passing confidence
vitest 0.30.1 -> 0.32.0 age adoption passing confidence

Release Notes

vitest-dev/vitest

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

v0.31.0

Compare Source

   🚨 Breaking Changes
  • Remove browser from allowed pools inside poolMatchGlob config option. Please, use Vitest workspaces for running tests in the browser.

  • Move assertion declarations to expect package  -  by @​sheremet-va in https://github.com/vitest-dev/vitest/issues/3294 (cf3af)

    • The change should be minor:
    - declare namespace Vi {
    + declare module 'vitest' {
       interface Assertion<T = any> extends CustomMatchers<T> {}
       interface AsymmetricMatchersContaining extends CustomMatchers {}
    }
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
capricorn86/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

🎨 Features
  • Adds support for triggering an error event when attempting to fetch a CSS file or Javascript file when it has been disabled using "window.happyDOM.settings.*". (#​849)

v9.17.0

Compare Source

🎨 Features
  • Adds support for "i" and "s" modifiers to attribute query selectors. (#​911)

v9.16.0

Compare Source

🎨 Features
  • Adds support for encoding HTML entities to the XML parser. (#​908)
  • Adds support for escaping text to XMLSerializer.serializeToString(). (#​908)

v9.15.0

Compare Source

🎨 Features

Thank you @​crypto-scythe for your contribution!

v9.14.0

Compare Source

🎨 Features
  • Adds support for Document.links. (#​896)

Thank you @​btea for your contribution!

v9.13.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue related to "@​" CSS rules in (e.g. "@​-webkit-keyframes") causing an exception to be thrown in CSSStyleDeclaration. (#​889)

Thank you @​btea for your contribution!

v9.13.0

Compare Source

🎨 Features
  • Improves performance of Element.querySelectorAll(). The performance was decreased after the implementation of document sorting order, due to the fact that it relied on Object.assign() for each match, which is slower than iterating through all matches in the end. (#​909)

v9.12.0

Compare Source

🎨 Features
  • Adds support for the "of selector" to ":nth-child" and ":nth-last-child" query selectors. (#​905)
👷‍♂️ Patch fixes
  • Fixes bug but where "nth-*" query selectors didn't return the correct elements when prefixing "n" with "-". (#​905)

v9.11.0

Compare Source

🎨 Features
  • Refactors the XML parser, which fixes several issues related to parsing complex HTML (e.g. attributes containing ">"). (#​578)
  • Improves performance of XML parsing significantly. (#​578)

v9.10.9

Compare Source

👷‍♂️ Patch fixes
  • Adds support for Request.formData(). (#​892)

Thank you @​rolandjohann for your contribution!

v9.10.8

Compare Source

👷‍♂️ Patch fixes
  • Fixes an issue where HTMLAnchorElement.toString() returned "HTMLElement.outerHTML", but should return "HTMLAnchorElement.href" according to spec. (#​890)

Thank you @​Schleuse for your contribution!

v9.10.7

Compare Source

👷‍♂️ Patch fixes
  • Fix for parsing CSS comments with asterisks. (#​887)

Thank you for your contribution @​htuomola!

v9.10.6

Compare Source

👷‍♂️ Patch fixes
  • Fixes bug where errors where not handled correctly when performing a synchronous request with XMLHttpRequest. (#​795)
  • Adds support for XMLHttpRequest.response. (#​788)

Thank you @​Mas0nShi for your contribution!

v9.10.5

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue in HTMLCollection and HTMLFormControlsCollection related to id/name of elements colliding with class properties and methods. (#​875)

v9.10.4

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue related to query selection for attributes not using apostrophe for the value. This caused an issue with finding elements by text in Testing Library. (#​883)

v9.10.3

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue where React "onChange" listeners never got executed when triggering a click(). (#​880)
  • Fixes issue where it was not possible to use multiple pseudo query selectors (e.g. "input:not([type]):not([list])"). This solves a problem in Testing Library where it failed to find elements by role "checkbox". (#​880)

v9.10.2

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue related to query selection for attributes with empty value (e.g. '[attr1=""]'). (#​881)

v9.10.1

Compare Source

👷‍♂️ Patch fixes
  • Adds support for using escaped characters to ID:s in query selectors (e.g. "#\\:id"). (#​877)

v9.10.0

Compare Source

🎨 Features
  • Refactors the internal logic of how query selection works to improve performance and make maintenance easier. (#​792)
  • Adds support for adjacent sibling to query selectors (e.g. ".a + .b"). (#​792)
👷‍♂️ Patch fixes
  • Fixes issue where *.querySelectorAll() did not return elements in document order. (#​285)
isaacs/rimraf

v5.0.1

Compare Source

semantic-release/semantic-release

v21.0.5

Compare Source

Bug Fixes
  • deps: update dependency marked to v5 (452e1fa)

v21.0.4

Compare Source

Bug Fixes

v21.0.3

Compare Source

Bug Fixes
  • bump @semantic-release/commit-analyzer to v10.0.0-beta.1 (4a6b31f)
  • bump @semantic-release/github to 9.0.0-beta.2 (#​2818) (6f19d77)
  • deps: updated the beta plugins to stable versions (3941018)

v21.0.2

Compare Source

Bug Fixes
TypeStrong/TypeDoc

v0.24.8

Compare Source

Features
  • Added support for TypeScript 5.1, #​2296.
  • Added navigation.fullTree to control rendering the full navigation tree on each page, #​2287.
    This option will likely be replaced in 0.25 with dynamic loading of the full tree.
  • TypeDoc's --pretty option now also controls whether generated HTML contains line breaks, #​2287.
  • Optimized icon caching to reduce file size in generated HTML documentation, #​2287.
  • Render property description of "roughly top level" object types, #​2276.
  • Added MarkdownEvent.INCLUDE for plugins, #​2284.
Bug Fixes
  • When rendering functions/methods, TypeDoc will now render the comment summary above the parameters/return type,
    and any other block tags in the order they are defined in the comment, #​2285.
  • Comments are no longer removed from classes/interfaces containing call signatures, #​2290.
Thanks!

v0.24.7

Compare Source

Features
  • TypeDoc will now allow conversion without any entry points to support "readme only" packages, #​2264.
Bug Fixes
  • Category children are now sorted according to the sort option, #​2272.
  • Inline tags no longer require a space after the tag name to be parsed as a tag, #​2273.
  • Fixed module/namespace links in navigation when viewed in Safari, #​2275.
Microsoft/TypeScript

v5.1.3: TypeScript 5.1.3

Compare Source

For release notes, check out the release announcement.


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.

@github-actions
Copy link

github-actions bot commented Apr 28, 2023

Size Change: 0 B

Total Size: 21.3 kB

ℹ️ View Unchanged
Filename Size
lib/app-check/index.js 59 B
lib/app-check/useAppCheckToken.js 421 B
lib/auth/index.js 75 B
lib/auth/useAuthIdToken.js 821 B
lib/auth/useAuthIdTokenResult.js 837 B
lib/auth/useAuthState.js 434 B
lib/common/index.js 48 B
lib/common/types.js 31 B
lib/database/index.js 70 B
lib/database/internal.js 158 B
lib/database/useObject.js 396 B
lib/database/useObjectOnce.js 455 B
lib/database/useObjectValue.js 693 B
lib/database/useObjectValueOnce.js 894 B
lib/firestore/index.js 143 B
lib/firestore/internal.js 613 B
lib/firestore/types.js 31 B
lib/firestore/useCollection.js 71 B
lib/firestore/useCollectionData.js 77 B
lib/firestore/useCollectionDataOnce.js 82 B
lib/firestore/useCollectionOnce.js 77 B
lib/firestore/useCountFromServer.js 841 B
lib/firestore/useDocument.js 601 B
lib/firestore/useDocumentData.js 689 B
lib/firestore/useDocumentDataOnce.js 848 B
lib/firestore/useDocumentOnce.js 562 B
lib/firestore/useQueries.js 593 B
lib/firestore/useQueriesData.js 644 B
lib/firestore/useQuery.js 574 B
lib/firestore/useQueryData.js 688 B
lib/firestore/useQueryDataOnce.js 859 B
lib/firestore/useQueryOnce.js 816 B
lib/index.js 107 B
lib/internal/useIsMounted.js 185 B
lib/internal/useListen.js 491 B
lib/internal/useLoadingValue.js 351 B
lib/internal/useMultiListen.js 627 B
lib/internal/useMultiLoadingValue.js 503 B
lib/internal/useOnce.js 724 B
lib/internal/useStableValue.js 200 B
lib/messaging/index.js 60 B
lib/messaging/useMessagingToken.js 417 B
lib/storage/index.js 90 B
lib/storage/internal.js 142 B
lib/storage/useBlob.js 806 B
lib/storage/useBytes.js 771 B
lib/storage/useDownloadURL.js 395 B
lib/storage/useMetadata.js 388 B
lib/storage/useStream.js 813 B

compressed-size-action

@renovate renovate bot changed the title chore(deps): update dependency happy-dom to v9.10.0 chore(deps): update dev dependencies (non-major) Apr 28, 2023
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 12 times, most recently from 1b848b6 to 6c623f5 Compare May 4, 2023 17:23
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 7 times, most recently from 95d9fbe to 407881f Compare May 12, 2023 12:00
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 5 times, most recently from b20522a to eff105d Compare May 18, 2023 21:33
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 3 times, most recently from fe62d8f to 16bc40e Compare May 24, 2023 17:15
@renovate renovate bot force-pushed the renovate/dev-dependencies branch from 16bc40e to 1b8aff6 Compare May 30, 2023 16:02
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 5 times, most recently from 244ce4d to dd39bc2 Compare June 6, 2023 21:01
@renovate renovate bot force-pushed the renovate/dev-dependencies branch 5 times, most recently from 770c345 to 4860836 Compare June 10, 2023 16:30
@renovate renovate bot force-pushed the renovate/dev-dependencies branch from 4860836 to af822d0 Compare June 12, 2023 23:06
@andipaetzold andipaetzold merged commit 2dc6b57 into main Jun 14, 2023
4 checks passed
@andipaetzold andipaetzold deleted the renovate/dev-dependencies branch June 14, 2023 22:08
@github-actions
Copy link

github-actions bot commented Jul 7, 2023

🎉 This PR is included in version 2.5.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

@github-actions
Copy link

github-actions bot commented Jul 7, 2023

🎉 This PR is included in version 3.0.0-next.8 🎉

The release is available on:

Your semantic-release bot 📦🚀

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.

None yet

1 participant