chore(deps): update dependency @vue/test-utils to v2.4.6 - autoclosed
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
@vue/test-utils | devDependencies | patch | 2.4.1 -> 2.4.6 |
Release Notes
vuejs/test-utils (@vue/test-utils)
v2.4.6
What's Changed
- fix: circular references in props cause maximum call stack size exceeded by @Evobaso-J in https://github.com/vuejs/test-utils/pull/2371
- fix: update attachTo type in MountingOptions interface by @taku-y-9308 in https://github.com/vuejs/test-utils/pull/2375
- fix: change vm to always provide global property by @taku-y-9308 in https://github.com/vuejs/test-utils/pull/2386
- fix: renderStubDefaultSlot with scoped slots by @cexbrayat in https://github.com/vuejs/test-utils/pull/2397
- feat: Added dynamic return for element getter by @nandi95 in https://github.com/vuejs/test-utils/pull/2406
- fix(stubs): avoid warning on normalized props with Vue v3.4.22 by @cexbrayat in https://github.com/vuejs/test-utils/pull/2413
- fix: set global provides before running vue plugins by @danielroe in https://github.com/vuejs/test-utils/pull/2423
- fix: issue 2319 throw first error thrown during mount by @taku-y-9308 in https://github.com/vuejs/test-utils/pull/2428
New Contributors
- @Jinjiang made their first contribution in https://github.com/vuejs/test-utils/pull/2373
- @taku-y-9308 made their first contribution in https://github.com/vuejs/test-utils/pull/2375
- @matusekma made their first contribution in https://github.com/vuejs/test-utils/pull/2351
- @w2xi made their first contribution in https://github.com/vuejs/test-utils/pull/2398
- @brc-dd made their first contribution in https://github.com/vuejs/test-utils/pull/2403
- @KatWorkGit made their first contribution in https://github.com/vuejs/test-utils/pull/2422
Full Changelog: https://github.com/vuejs/test-utils/compare/v2.4.5...v2.4.6
v2.4.5
What's Changed
- feat: add teleport stub possibility, https://github.com/vuejs/test-ut… by @blizzardKv in https://github.com/vuejs/test-utils/pull/2336
- fix(findComponent): Use correct vm for stubbed component with selector by @freakzlike in https://github.com/vuejs/test-utils/pull/2327
- fix(teleport.md): fix missed "global" key, https://github.com/vuejs/t… by @blizzardKv in https://github.com/vuejs/test-utils/pull/2337
- fix(vue-router.md): update highlights when mocking real router by @dmoyadev in https://github.com/vuejs/test-utils/pull/2340
- fix(deps): update dependency vue-component-type-helpers to v2 by @renovate in https://github.com/vuejs/test-utils/pull/2358
- fix: Allow access to nested computed values (fix #2196) by @Evobaso-J in https://github.com/vuejs/test-utils/pull/2356
- docs: add mention of enableAutoDestroy replacement by @strokirk in https://github.com/vuejs/test-utils/pull/2344
New Contributors
- @blizzardKv made their first contribution in https://github.com/vuejs/test-utils/pull/2336
- @dmoyadev made their first contribution in https://github.com/vuejs/test-utils/pull/2340
- @strokirk made their first contribution in https://github.com/vuejs/test-utils/pull/2344
- @Evobaso-J made their first contribution in https://github.com/vuejs/test-utils/pull/2356
- @qmonmert made their first contribution in https://github.com/vuejs/test-utils/pull/2364
Full Changelog: https://github.com/vuejs/test-utils/compare/v2.4.4...v2.4.5
v2.4.4
What's Changed
- fix: ignore prototype methods when using setData on objects by @Haberkamp in https://github.com/vuejs/test-utils/pull/2265
- fix: always load cjs bundle in node environment by @danielroe in https://github.com/vuejs/test-utils/pull/2269
- fix: experimentalVmThreads is now pool=vmThreads by @cexbrayat in https://github.com/vuejs/test-utils/pull/2275
- feat: respect devtools definition by @webfansplz in https://github.com/vuejs/test-utils/pull/2311
New Contributors
- @ArtemTropanets made their first contribution in https://github.com/vuejs/test-utils/pull/2267
- @Haberkamp made their first contribution in https://github.com/vuejs/test-utils/pull/2265
- @danielroe made their first contribution in https://github.com/vuejs/test-utils/pull/2269
- @webfansplz made their first contribution in https://github.com/vuejs/test-utils/pull/2311
Full Changelog: https://github.com/vuejs/test-utils/compare/v2.4.3...v2.4.4
v2.4.3
What's Changed
- types(setProps): setProps to Partial props by @pikax in https://github.com/vuejs/test-utils/pull/2241
Full Changelog: https://github.com/vuejs/test-utils/compare/v2.4.2...v2.4.3
v2.4.2
What's Changed
Note: A fix for the text()
method (https://github.com/vuejs/test-utils/pull/2231) may force developers to update tests that were checking the text of several elements at once, as the spaces of each element are now trimmed (as they are when using text()
on a single element). So if you were checking the text of <span>Trimmed </span><span>Example</span>
, it is now TrimmedExample
instead of Trimmed Example
(and the text()
of the first span is still Trimmed
as it was before).
Fix
- fix: (could be considered a feature?) allow custom
<transition>
stubs by @alecgibson in https://github.com/vuejs/test-utils/pull/2185 - fix: Fixing prototype methods being discarded when using
setData
by @rory-instil in https://github.com/vuejs/test-utils/pull/2166 - fix(deps): update all non-major dependencies to v1.8.8 by @renovate in https://github.com/vuejs/test-utils/pull/2143
- fix(deps): update all non-major dependencies to v1.8.13 by @renovate in https://github.com/vuejs/test-utils/pull/2193
- fix(deps): update all non-major dependencies to v1.8.19 by @renovate in https://github.com/vuejs/test-utils/pull/2211
- fix: stricter props types by @alecgibson in https://github.com/vuejs/test-utils/pull/2137
- fix(deps): update all non-major dependencies to v1.8.21 by @renovate in https://github.com/vuejs/test-utils/pull/2224
- fix: wrapper.text method by @harunari0928 in https://github.com/vuejs/test-utils/pull/2231
- fix(types): use
VNodeChild
type fromvue
to avoid breakage by @sodatea in https://github.com/vuejs/test-utils/pull/2237 - Fixed typo in accessibility word by @ramsesmoreno in https://github.com/vuejs/test-utils/pull/2160
Docs
- docs: Fix omission of async keywords. by @yasuaki640 in https://github.com/vuejs/test-utils/pull/2163
- docs: fix spell Exemple to Example by @yasuaki640 in https://github.com/vuejs/test-utils/pull/2161
- docs: Add removal of createWrapper by @AntonioDell in https://github.com/vuejs/test-utils/pull/2235
- docs: comparison of functions with v1 by @freakzlike in https://github.com/vuejs/test-utils/pull/2175
- docs: fix typo in code example by @dennybiasiolli in https://github.com/vuejs/test-utils/pull/2212
- feat: update the website application by @nazarepiedady in https://github.com/vuejs/test-utils/pull/2171
Chore
- Add WebdriverIO to list of supporting frameworks by @christian-bromann in https://github.com/vuejs/test-utils/pull/2189
- ci: add node v20 and drop node v16 by @cexbrayat in https://github.com/vuejs/test-utils/pull/2190
- chore(deps): update all non-major dependencies by @renovate in https://github.com/vuejs/test-utils/pull/2233
- preparing for Vue 3.3.9 by @pikax in https://github.com/vuejs/test-utils/pull/2240
New Contributors
- @yasuaki640 made their first contribution in https://github.com/vuejs/test-utils/pull/2161
- @ramsesmoreno made their first contribution in https://github.com/vuejs/test-utils/pull/2160
- @rory-instil made their first contribution in https://github.com/vuejs/test-utils/pull/2166
- @nazarepiedady made their first contribution in https://github.com/vuejs/test-utils/pull/2171
- @richex-cn made their first contribution in https://github.com/vuejs/test-utils/pull/2178
- @christian-bromann made their first contribution in https://github.com/vuejs/test-utils/pull/2189
- @dennybiasiolli made their first contribution in https://github.com/vuejs/test-utils/pull/2212
- @harunari0928 made their first contribution in https://github.com/vuejs/test-utils/pull/2231
- @AntonioDell made their first contribution in https://github.com/vuejs/test-utils/pull/2235
Full Changelog: https://github.com/vuejs/test-utils/compare/v2.4.1...v2.4.2
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.