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

[Snyk] Upgrade vuetify from 2.2.5 to 2.2.8 #21

Merged
merged 1 commit into from
Feb 21, 2020

Conversation

snyk-bot
Copy link
Contributor

Snyk has created this PR to upgrade vuetify from 2.2.5 to 2.2.8.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
  • The recommended version is 3 versions ahead of your current version.
  • The recommended version was released 23 days ago, on 2020-01-29.
Release notes
Package name: vuetify
  • 2.2.8 - 2020-01-29

    🔧 Bug Fixes

    • VTextField: properly focus field when calling public "focus" method (e783162), closes #10369
  • 2.2.7 - 2020-01-28

    🔧 Bug Fixes

    • sass: allow overriding $spacers (6d913d3), closes #10303
    • SelectionControls: resolve height issues with wrapped labels in radios (22aa469), closes #10360
    • VDataTable: allow grouping by nested keys (c8e9239), closes #10323
    • VFileInput: remove typeof filter in arrayValue, improve prop validator (140d82c), closes #10306
    • VProgressLinear: resolve invalid sass transition variable reference (fea155e), closes #10343
    • VRadioGroup: overwrite inherited padding and vertical align label (f81b639), closes #10334
    • VSelect: propagate name attribute to hidden input (#10327) (f289b05), closes #10152
    • VTextField: autofocus when observed (d846222), closes #5487 #8845
    • VTextField: resolve style issues in inverted solo fields (cdd9eb1), closes #9534
    • VTextField: specify border-collapse for outlined fieldset (baed6d7)
    • VToolbar: better scope v-tabs-bar background-color override (6619c9c), closes #10308
  • 2.2.6 - 2020-01-22

    Notes from the Author

    To help bring the framework styles better in line with what Material Design dictates, the default application background color for both light and dark variants has been fixed. In addition, multiple components were updated to properly match the dark theme specification.

    Affected styles:

    Light Theme

    • application background color - #FAFAFA -> #FFFFFF

    Dark Theme

    • application background color - #303030 -> #121212
    • v-app-bar - #212121 -> #272727
    • v-bottom-navigation - #424242 -> #2E2E2E
    • v-card - #424242 -> #2E2E2E
    • v-navigation-drawer - #424242 -> #363636
    • v-toolbar - #212121 -> #272727

    You can revert to the previous values by setting up a SASS Variables variables.s(a|c)ss file with the following snippet:

    // styles/variables.scss
    

    $material-dark: (
    'app-bar': #212121,
    'bottom-navigation': #424242,
    'background': #303030,
    'cards': #424242,
    'navigation-drawer': #424242,
    'toolbar': #212121
    );

    $material-light: ('background': #FAFAFA);

    There is also a new SASS variable that contains the color value for each elevation outlined on the Material Design Specification for dark variants.

    $material-dark-elevation-colors: (
      '0': #000000,
      '1': #1E1E1E,
      '2': #222222,
      '3': #252525,
      '4': #272727,
      '6': #2C2C2C,
      '8': #2E2E2E,
      '12': #333333,
      '16': #363636,
      '24': #373737
    );

    If you have any additional questions, please reach out to me in the Release Migration channel of the community.

    🔧 Bug Fixes

    • theme: apply correct material theme for dark variants (24c95f4)
    • theme: resolve more dark variant inconsistences (07a285f)
  • 2.2.5 - 2020-01-21

    Notes from the Author

    Selection controls (v-checkbox, v-radio, v-switch) have had their default color changed from accent to primary; Specification reference. You can revert this by setting the color prop to accent.

    // Template
    

    <v-checkbox color="accent" />

    <v-radio-group>
    <v-radio color="accent" />
    </v-radio-group>

    <v-switch color="accent" />

    The v-navigation-drawer mini-variant has had it's default width changed from 80px -> 56px. This was to ensure icons were properly aligned when in mini mode; Reference issue. You can revert this by setting the mini-variant-width prop to 80.

    <v-navigation-drawer
      mini-variant
      mini-variant-width="80"
    >
      ...
    </v-navigation-drawer>

    If you have any additional questions, please reach out to me in the Release Migration channel of the community.

    🔧 Bug Fixes

from vuetify GitHub release notes
Commit messages
Package name: vuetify
  • dcb4f80 chore(release): publish v2.2.8
  • e783162 fix(VTextField): properly focus field when calling public "focus" method
  • 74a9092 chore(release): publish v2.2.7
  • d846222 fix(VTextField): autofocus when observed
  • 22aa469 fix(SelectionControls): resolve height issues with wrapped labels in radios
  • 1319bf9 docs(VTimePicker): add update:period event
  • 906d285 docs: tweaks quick start language and snippet
  • 71806f4 docs: move locale menu, clean it up, add icon to versions menu
  • b931b5c docs: rename all references to Vue CLI 3
  • 701b45b docs(QuickStart): add additional plugin usages
  • fea155e fix(VProgressLinear): resolve invalid sass transition variable reference
  • baed6d7 fix(VTextField): specify border-collapse for outlined fieldset
  • f81b639 fix(VRadioGroup): overwrite inherited padding and vertical align label
  • 28df1d9 docs: add note to app prop definition
  • d6a5b06 docs(VDialog): add input event
  • 6619c9c fix(VToolbar): better scope v-tabs-bar background-color override
  • 7f8fa30 docs(AppDrawer): properly alphabetize drawer
  • ab6281a docs(VRating): update clearable prop description
  • 3f04bcd docs(UnitTesting): update depricated links
  • a8a11ae docs(VAlert): fix prop name typo (#10349)
  • 140d82c fix(VFileInput): remove typeof filter in arrayValue, improve prop validator
  • f289b05 fix(VSelect): propagate name attribute to hidden input (#10327)
  • 4fe4295 docs: update locales and versions menus
  • 6d913d3 fix(sass): allow overriding $spacers

Compare


Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

🧐 View latest project report

🛠 Adjust upgrade PR settings

🔕 Ignore this dependency or unsubscribe from future upgrade PRs

@skyYaga skyYaga merged commit bef5acd into develop Feb 21, 2020
@skyYaga skyYaga deleted the snyk-upgrade-e5c8ddfe5628861eea43dddb3b24ebb1 branch February 21, 2020 07:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment