Skip to content

Update dependency vuetify to v3.3.0#62

Open
renovate[bot] wants to merge 1 commit intodepsfrom
renovate/vuetify-3.x
Open

Update dependency vuetify to v3.3.0#62
renovate[bot] wants to merge 1 commit intodepsfrom
renovate/vuetify-3.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Feb 28, 2022

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
vuetify (source) 3.0.0-next-20220226.03.3.0 age confidence

Release Notes

vuetifyjs/vuetify (vuetify)

v3.3.0

Compare Source

v3.3.0 (Icarus)

Welcome to the v3.3.0 release of Vuetify!

This MINOR release is meant to coincide with Vue v3.3 and includes a few new features and bug fixes.

The v-bottom-sheet component has hit labs and is ready for testing:

bottom sheets

It is a modified version of v-dialog that extends from the bottom of the screen.

The group composable's model now respects selection order:

group selection order

We cleaned up the Forms validation documentation and added greater control over when an input is validated.

form validation

The new lazy option skips validation on mount allowing you to avoid unnecessary rule invocation.

The following is a table of the different validation options:

validate-on= "input" "blur" "submit" "lazy"
On mount
On input *
On blur *
On submit *

*Uses the behavior of whatever it's combined with.

In addition, we ported over auto-select-first from v2, added loading indicators to all Data Table variants, and added Data Iterators to labs.

The team is now shifting focus to v2.7 Nirvana-lts and v3.4 (Blackguard); while also preparing to move Date Pickers and Calendars to Labs and promoting Data Tables to the core framework. These updates bring Vuetify 3 dangerously close to feature parity with Vuetify 2 and will mark a major milestone in the Vuetify 3 release cycle.

Once we have completed the above, it will free up the team to work on shoring up our GitHub issues and adding new features and functionality. Speaking of issues, in preparation for LTS, the team has been on an absolute tear triaging and dispositioning:

image

We hope that you enjoy this release and we look forward to rounding out the year with some exciting updates.

Until next time,

John Leider


💪 Support Vuetify Development

Vuetify is an open source MIT project that has been made possible due to the generous contributions by our sponsors and backers. If you are interested in supporting this project, please consider:

📖 Table of Contents

📑 Upgrade guide

  • The active-color prop on v-list-item is deprecated, just use color (they did the same thing anyway)
  • v-img now has an automatic width and height, so you can probably remove some flex styles and explicit dimensions

💯 Release notes

🚀 Features
🔧 Bug Fixes
🧪 Labs
BREAKING CHANGES
  • types: .d.ts imports have to be changed to .d.mts
  • types: minimum typescript version 4.7

🆘 I need help!

If you are stuck and need help, don't fret! We have a very large and dedicated community that is able to provide help 24/7. Come to the #vuetify-3-help channel.

v3.2.5

Compare Source

🔧 Bug Fixes

v3.2.0

Compare Source

v3.2.0 (Orion)

Welcome to the v3.2.0 release of Vuetify!

The team has been hard at work on some exciting new updates and we're excited to finally get it into your hands!
Orion has a huge focus on improving the defaults engine and giving users more tools to customize their application. We started by adding support for global class and style defaults; then hooked it up to virtual components.

For example, you can set the default class for all v-btn components to be my-btn:

import { createVuetify } from 'vuetify'

export default createVuetify({
  defaults: {
    VBtn: {
      class: 'my-btn',
    },
  },
})

The same is possible for virtual components as well. Simply alias a core component and reference it by its name in the config object:

import { createVuetify } from 'vuetify'
import { VBtn } from 'vuetify/components/VBtn'

export default createVuetify({
  aliases: {
    MyBtn: VBtn,
  },

  defaults: {
    MyBtn: {
      color: 'primary',
      class: 'my-btn',
      variant: 'tonal',
    },
  },
})

Whenever you use the MyBtn component in any template it will be rendered as a v-btn with the default props applied:

<template>
  <my-btn>My Button</my-btn>
  <!-- <v-btn color="primary" variant="tonal" class="mt-btn">...</v-btn>-->
</template>

Finally, we made our defaults composable publicly available. Now you can hook your custom components into the defaults engine and configure your entire application from a single source.

<template>
  <div>
    I am {{ props.foo }}
  </div>
</template>

<script setup>
  import { useDefaults } from 'vuetify'

  const _props = defineProps({ foo: String })
  const props = useDefaults(_props)
</script>

defaults

The defaults composable also works with nested configurations. This works in any combination of virtual, custom, and core Vuetify components.

For example, you can create a custom component that modifies the default behavior of its children:

import { createVuetify } from 'vuetify'
import { VBtn } from 'vuetify/components/VBtn'
import { VCard } from 'vuetify/components/VCard'

export default createVuetify({
  aliases: {
    MyBtn: VBtn,
    MyCard: VCard,
  },

  defaults: {
    MyBtn: {
      color: 'primary',
      class: 'my-btn',
      variant: 'tonal',
    },
    MyCard: {
      border: true,
      variant: 'text',

      MyBtn: {
        color: 'secondary',
        variant: 'text',
      },
    },
  },
})

Some other big feature updates in this release include:

With v3.2 complete, the team is preparing for v2.7-lts (Nirvana) and the next v3 release, Icarus. We've recently updated our roadmap to be more transparent about our plans for the future; as well as improve the information about each release. Also, we've drastically improved the performance of the documentation and added new tools, such as 🎮Vuetify Play, to all component examples.

image

We hope that you enjoy this release as much as we have enjoyed working on it.

Until next time,

John Leider


💪 Support Vuetify Development

Vuetify is an open source MIT project that has been made possible due to the generous contributions by our sponsors and backers. If you are interested in supporting this project, please consider:

📖 Table of Contents

📑 Upgrade guide

  • The title prop on v-tab is now text
  • The visible-items prop has been removed

💯 Release notes

🚀 Features
🔧 Bug Fixes
🧪 Labs
BREAKING CHANGES
  • VTab: The VTab title prop is now text
  • VVirtualScroll: visibleItems has been removed

🆘 I need help!

If you are stuck and need help, don't fret! We have a very large and dedicated community that is able to provide help 24/7. Come to the #vuetify-3-help channel.

v3.1.16

Compare Source

🔧 Bug Fixes
🔬 Code Refactoring
  • extract focusChild helper function (1646d67)
  • extract focusableChildren helper function (2531a83)
🧪 Labs

v3.1.15

Compare Source

🔧 Bug Fixes
🧪 Labs

v3.1.14

Compare Source

🔧 Bug Fixes
🧪 Labs

v3.1.13

Compare Source

This release may break some subcomponent defaults, for example VTabs > VSlideGroup should now just be set on VTabs instead.

🔧 Bug Fixes
🧪 Labs
🔬 Code Refactoring
  • defaults: skip merging deep if prev is undefined (c363981)
🔄 Reverts

v3.1.9

Compare Source

🔧 Bug Fixes
🔬 Code Refactoring

v3.1.8

Compare Source

🔧 Bug Fixes
🧪 Labs
🔬 Code Refactoring

v3.1.7

Compare Source

🔧 Bug Fixes
  • types: add volar compatible slot types (0fbdd0c)
  • VExpansionPanelTitle: add missing slot types (163ec60)
🧪 Labs

v3.1.6

Compare Source

🔧 Bug Fixes
🧪 Labs

v3.1.5

Compare Source

🔧 Bug Fixes
🧪 Labs

v3.1.4

Compare Source

🔧 Bug Fixes
🔬 Code Refactoring
  • VAppBarTitle: implement VToolbarTitle props (24fd25d)
  • VBtnToggle: create makeProps function for VBtnGroup (18e6dbe), closes #​16253

v3.1.3

Compare Source

🔧 Bug Fixes
  • defaults: optimise d

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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220228.0 Update dependency vuetify to v3.0.0-next-20220301.0 Mar 1, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 590b157 to b77229f Compare March 1, 2022 14:19
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220301.0 Update dependency vuetify to v3.0.0-next-20220302.0 Mar 2, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from b77229f to b9251d5 Compare March 2, 2022 13:44
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220302.0 Update dependency vuetify to v3.0.0-next-20220303.0 Mar 3, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch 2 times, most recently from 8965f8d to 65e8ba7 Compare March 4, 2022 12:32
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220303.0 Update dependency vuetify to v3.0.0-next-20220304.0 Mar 4, 2022
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220304.0 Update dependency vuetify to v3.0.0-next-20220305.0 Mar 5, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch 2 times, most recently from 5dbb2f5 to a844c27 Compare March 7, 2022 19:11
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220305.0 Update dependency vuetify to v3.0.0-next-20220307.0 Mar 7, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from a844c27 to 5081fd3 Compare March 8, 2022 12:56
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220307.0 Update dependency vuetify to v3.0.0-next-20220308.0 Mar 8, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 5081fd3 to c7a59b4 Compare March 9, 2022 13:15
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220308.0 Update dependency vuetify to v3.0.0-next-20220309.0 Mar 9, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from c7a59b4 to d22d695 Compare March 10, 2022 12:35
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220309.0 Update dependency vuetify to v3.0.0-next-20220310.0 Mar 10, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from d22d695 to f7b7201 Compare March 11, 2022 15:37
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220310.0 Update dependency vuetify to v3.0.0-next-20220311.0 Mar 11, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from f7b7201 to 1b350ea Compare March 12, 2022 13:44
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220311.0 Update dependency vuetify to v3.0.0-next-20220312.0 Mar 12, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 1b350ea to 2229347 Compare March 14, 2022 14:38
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220312.0 Update dependency vuetify to v3.0.0-next-20220314.0 Mar 14, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 2229347 to 6fcaa69 Compare March 16, 2022 12:21
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220314.0 Update dependency vuetify to v3.0.0-next-20220316.0 Mar 16, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 6fcaa69 to 0f3dbf0 Compare March 18, 2022 14:30
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220316.0 Update dependency vuetify to v3.0.0-next-20220317.0 Mar 18, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 0f3dbf0 to 55846cc Compare March 19, 2022 13:38
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220317.0 Update dependency vuetify to v3.0.0-next-20220319.0 Mar 19, 2022
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220328.0 Update dependency vuetify to v3.0.0-next-20220329.0 Mar 29, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from c1e4200 to 87950c7 Compare March 29, 2022 12:48
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220329.0 Update dependency vuetify to v3.0.0-next-20220330.0 Mar 30, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 87950c7 to 17b72e8 Compare March 30, 2022 14:20
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220330.0 Update dependency vuetify to v3.0.0-next-20220331.0 Mar 31, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 17b72e8 to 5cce81f Compare March 31, 2022 13:56
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220331.0 Update dependency vuetify to v3.0.0-next-20220402.0 Apr 2, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 5cce81f to fc51ca1 Compare April 2, 2022 12:50
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220402.0 Update dependency vuetify to v3.0.0-next-20220403.0 Apr 3, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch 2 times, most recently from 0ca8572 to 4122e56 Compare April 5, 2022 12:58
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220403.0 Update dependency vuetify to v3.0.0-next-20220405.0 Apr 5, 2022
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220405.0 Update dependency vuetify to v3.0.0-next-20220406.0 Apr 6, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 4122e56 to 72e4b4e Compare April 6, 2022 12:17
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220406.0 Update dependency vuetify to v3.0.0-next-20220407.0 Apr 7, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 72e4b4e to 1be5f7e Compare April 7, 2022 13:49
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220407.0 Update dependency vuetify to v3.0.0-next-20220408.0 Apr 8, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 1be5f7e to 92415fa Compare April 8, 2022 14:23
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220408.0 Update dependency vuetify to v3.0.0-next-20220409.0 Apr 9, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 92415fa to 77226ce Compare April 9, 2022 13:44
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220409.0 Update dependency vuetify to v3.0.0-next-20220410.0 Apr 10, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch 2 times, most recently from 6428dbb to dc4397e Compare April 11, 2022 15:11
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220410.0 Update dependency vuetify to v3.0.0-next-20220411.0 Apr 11, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from dc4397e to 2e53613 Compare April 12, 2022 13:43
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220411.0 Update dependency vuetify to v3.0.0-next-20220412.0 Apr 12, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 2e53613 to 4ebe50e Compare April 13, 2022 13:39
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220412.0 Update dependency vuetify to v3.0.0-next-20220413.0 Apr 13, 2022
@renovate
Copy link
Copy Markdown
Contributor Author

renovate bot commented Aug 10, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
(node:2021) [DEP0169] DeprecationWarning: `url.parse()` behavior is not standardized and prone to errors that have security implications. Use the WHATWG URL API instead. CVEs are not issued for `url.parse()` vulnerabilities.
(Use `node --trace-deprecation ...` to show where the warning was created)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants