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 all non-major dependencies #797

Merged
merged 1 commit into from Dec 27, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 21, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@antfu/eslint-config ^0.27.0 -> ^0.34.0 age adoption passing confidence devDependencies minor
@vitest/coverage-istanbul ^0.24.3 -> ^0.26.2 age adoption passing confidence devDependencies minor
@vue/compiler-sfc (source) ^3.2.41 -> ^3.2.45 age adoption passing confidence devDependencies patch
@vue/test-utils ^2.1.0 -> ^2.2.6 age adoption passing confidence devDependencies minor
actions/checkout v3.1.0 -> v3.2.0 age adoption passing confidence action minor
eslint (source) ^8.25.0 -> ^8.30.0 age adoption passing confidence devDependencies minor
happy-dom ^7.6.0 -> ^7.8.1 age adoption passing confidence devDependencies minor
husky (source) ^8.0.1 -> ^8.0.2 age adoption passing confidence devDependencies patch
lint-staged ^13.0.3 -> ^13.1.0 age adoption passing confidence devDependencies minor
tsup ^6.3.0 -> ^6.5.0 age adoption passing confidence devDependencies minor
typescript (source) ^4.8.4 -> ^4.9.4 age adoption passing confidence devDependencies minor
vite (source) ^3.1.8 -> ^3.2.5 age adoption passing confidence devDependencies minor
vitest ^0.24.3 -> ^0.26.2 age adoption passing confidence devDependencies minor
vue (source) ^3.2.41 -> ^3.2.45 age adoption passing confidence devDependencies patch
vue-2 (source) ^2.7.13 -> ^2.7.14 age adoption passing confidence devDependencies patch
vue-3 (source) ^3.2.41 -> ^3.2.45 age adoption passing confidence devDependencies patch

Release Notes

antfu/eslint-config

v0.34.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.33.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.33.0

Compare Source

   🐞 Bug Fixes
  • Type aware linting when trigged by tsconfig.eslint.json  -  by @​antfu (1c426)
    View changes on GitHub

v0.32.0

Compare Source

   🚀 Features
    View changes on GitHub

v0.31.1

Compare Source

   🚀 Features
    View changes on GitHub

v0.31.0

Compare Source

   🚀 Features
    View changes on GitHub

v0.30.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.30.0

Compare Source

   🚀 Features
    View changes on GitHub

v0.29.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.29.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.29.2

Compare Source

   🚀 Features
    View changes on GitHub

v0.29.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.29.0

Compare Source

   🚀 Features
    View changes on GitHub

v0.28.0

Compare Source

   🚀 Features
    View changes on GitHub
vitest-dev/vitest

v0.26.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.26.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.25.8

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.25.7

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.25.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.25.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.25.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.25.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.25.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.25.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.25.0

Compare Source

   ✅ Builtin TypeChecking

In v0.25.0, Vitest allows you to write tests for your types, using expectTypeOf or assertType syntaxes. By default all tests inside *.test-d.ts files are considered type tests. Run vitest typecheck to run type tests.

// my.test-d.ts
import { assertType, expectTypeOf } from 'vitest'
import { mount } from './mount.js'

test('my types work properly', () => {
  expectTypeOf(mount).toBeFunction()
  expectTypeOf(mount).parameter(0).toMatchTypeOf<{ name: string }>()

  // @&#8203;ts-expect-error name is a string
  assertType(mount({ name: 42 }))
})

Learn more at the documentation and this RFC

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.24.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.24.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vuejs/core

v3.2.45

Compare Source

Bug Fixes
  • compiler/v-model: catch incorrect v-model usage on prop bindings (001184e), closes #​5584
  • custom-elements: also dispatch hyphenated version of emitted events (#​5378) (0b39e46), closes #​5373
  • custom-elements: custom element should re-instantiate when inserted again (#​6966) (67890da), closes #​6934
  • custom-elements: define declared properties in constructor (#​5328) (55382ae)
  • custom-elements: ensure custom elements can inherit provides from ancestors (#​5098) (192dcb6), closes #​5096
  • custom-elements: fix event emitting for async custom elements (#​5601) (665f2ae), closes #​5599
  • custom-elements: fix number type props casting check (89f37ce), closes #​5793 #​5794
  • custom-elements: properties set pre-upgrade should not show up in $attrs (afe8899)
  • custom-elements: respect slot props in custom element mode (ffef822)
  • custom-elements: should not reflect non-decalred properties set before upgrade (5e50909)
  • hmr/keep-alive: fix error in reload component (#​7049) (a54bff2), closes #​7042
  • runtime-core: fix move/removal of static fragments containing text nodes (#​6858) (4049ffc), closes #​6852
  • sfc: also generate getter for import bindings during dev (0594400)
  • sfc: ensure <script setup> binding behavior consistency on this between prod and dev (f73925d), closes #​6248
  • sfc: ensure consistent dev/prod behavior for non-reactive variables declared in <script setup> (5a3d45a), closes #​5655
  • teleport/css-v-bind: fix css v-bind for teleported content (42239cf), closes #​4605 #​4609
  • teleport/css-v-bind: fix css v-bind in teleport in child component slot (11214ee)
  • v-model: fix incorrect codegen for non-ref bindings (15e889a), closes #​6241

v3.2.44

Compare Source

Bug Fixes
  • watch: for immediate watch with single source, ensure cb is called with undefined as oldValue (#​7075) (5dc593b), closes #​7074

v3.2.43

Compare Source

Bug Fixes
  • watch: ensure oldValue in multi-source watcher is always an array (23e85e2), closes #​7070

v3.2.42

Compare Source

Bug Fixes

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

Export Size

Unchanged

fluent-vue

Name Size Diff
createFluentVue 2.18 KB -
useFluent 887 B -

@renovate renovate bot changed the title chore(deps): update dependency eslint to ^8.26.0 chore(deps): update all non-major dependencies Oct 24, 2022
@codecov
Copy link

codecov bot commented Oct 24, 2022

Codecov Report

Merging #797 (c625a95) into main (93b2fc9) will decrease coverage by 1.04%.
The diff coverage is n/a.

@@             Coverage Diff             @@
##              main     #797      +/-   ##
===========================================
- Coverage   100.00%   98.95%   -1.05%     
===========================================
  Files           12       12              
  Lines          191      191              
  Branches        33       33              
===========================================
- Hits           191      189       -2     
- Partials         0        2       +2     
Flag Coverage Δ
vue-2 91.62% <ø> (-1.05%) ⬇️
vue-3 91.62% <ø> (-1.05%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
src/util/warn.ts 75.00% <0.00%> (-25.00%) ⬇️
src/vue/dom.ts 94.44% <0.00%> (-5.56%) ⬇️

📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from b3614d5 to f8ed0f4 Compare October 31, 2022 22:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from e7c9531 to ea76f5a Compare November 8, 2022 17:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 02b3939 to 0155aeb Compare November 12, 2022 08:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 2bc5427 to 64f4720 Compare November 29, 2022 13:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 04ad3b9 to c4626b8 Compare December 6, 2022 21:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 64bc908 to cbc2d24 Compare December 13, 2022 11:21
@renovate renovate bot changed the title chore(deps): update all non-major dependencies Update all non-major dependencies Dec 17, 2022
@renovate renovate bot changed the title Update all non-major dependencies chore(deps): update all non-major dependencies Dec 17, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d0c1eb0 to 7be6b34 Compare December 20, 2022 12:54
@Demivan Demivan merged commit 54bab6b into main Dec 27, 2022
@renovate renovate bot deleted the renovate/all-minor-patch branch December 27, 2022 16:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant