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 #417

Merged
merged 1 commit into from
Sep 10, 2019
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 25, 2019

This PR contains the following updates:

Package Type Update Change
@nuxtjs/axios dependencies minor ^5.5.4 -> ^5.6.0
bootstrap-vue (source) devDependencies patch ^2.0.0-rc.27 -> ^2.0.0
consola dependencies minor ^2.9.0 -> ^2.10.1
eslint-plugin-jest devDependencies minor ^22.13.6 -> ^22.17.0
eslint-plugin-standard devDependencies patch ^4.0.0 -> ^4.0.1
jest (source) devDependencies minor ^24.8.0 -> ^24.9.0
js-cookie dependencies patch ^2.2.0 -> ^2.2.1
nanoid dependencies minor ^2.0.3 -> ^2.1.0
vuepress devDependencies patch ^1.0.2 -> ^1.0.4

Release Notes

nuxt-community/axios-module

v5.6.0

Compare Source

Features
5.5.4 (2019-06-05)
Bug Fixes
  • ignore content-length header (41ff27a)
5.5.3 (2019-05-30)
Bug Fixes
bootstrap-vue/bootstrap-vue

v2.0.0

Compare Source

Released: 2019-09-06

BootstrapVue 2.0.0 stable introduces several new features and bug fixes. Please note that this
release also includes several breaking changes.

Notable improvements:

  • Tooltips and popovers have been completely re-written for better reactivity and stability. The
    directive versions are now reactive to trigger element title attribute changes and configuration
    changes. The component versions now perform better when quickly hovering/un-hovering the trigger
    element. Component and directive versions now have a default delay of 50ms (affects 'hover'
    and 'focus' triggers only). They can now have a trigger of 'manual' (when used by itself) of
    which they can only be opened or closed programmatically. Users can now optionally specify the ID
    that the tooltip or popover uses. For accessibility reasons, the title attribute is removed from
    the trigger element (target) only when the tooltip or popover is showing, and is restored when
    hidden.
  • Modals, tooltips, popovers, and toasts now work with scoped style classes (requires the use of
    vue-loader's /deep/, ::v-deep or >>>
    deep selectors
    for targeting inner elements, just like with any other component).
  • New SVG background image based sorting indicator icons for <b-table>, with the ability to place
    them on either the right (default) or left of the table cell headers (via a new prop).
  • Programmatic selection of <b-table> selectable rows.
  • Ability to provide your own custom footer structure for <b-table> and <b-table-lite>.
Breaking changes and deprecated features removal v2.0.0

Please carefully read the following before upgrading to v2.0.0 stable!

  • Vue 2.6+ is now required at a minimum, 2.6.10+ is recommended. Some components will fail
    to work as expected if using Vue 2.5 (notably tooltips and popovers, but other components may be
    affected as well).
  • All deprecated features have been removed in v2.0.0 stable in order to reduce bundle size and
    simplify code.

Two notable breaking changes are:

  • changes to the table slot naming syntax: the table slot syntax introduced in rc.28 has been
    modified in v2.0.0 stable for better compatibility with the new Vue v-slot syntax and its
    limitations (which currently are not documented in the Vue.JS docs).
  • the removal of the deprecated /es build directory: Users should now be importing the new
    top-level named exports when importing individual components, directives, and plugins.

Read the following migration guide for more details.

Migration guide v2.0.0
  • Removal of the deprecated /es build directory. Users should now be using the new simplified
    import syntax introduced in v2.0.0-rc.22. Users should be importing the top-level named exports
    instead.
  • b-dropdown: removal of deprecated text slot. Use the button-content slot instead.
  • b-form-* controls, b-form-group, b-form-invalid-feedback and b-form-valid-feedback:
    validation prop state now only accepts true, false, or null values. Passing the strings
    'invalid' or 'valid' will no longer work.
  • b-form-group: removal of the deprecated horizontal and breakpoint props. Use props
    label-cols{-{breakpoint}} instead.
  • b-img-lazy, b-card-img-lazy: now rely only on IntersectionObserver support (native or via a
    polyfill) to determine when to show the image. If IntersectionObserver support is not detected,
    then the image will always be shown. Use a polyfill if you need to support older browsers (e.g.
    IE11)
  • b-modal: the deprecated BvModalEvent method cancel() has been removed. Use the method
    preventDefault() instead.
  • b-modal: the deprecated BvModalEvent property modalId has been removed. Use the property
    componentId instead.
  • b-nav: removal of the deprecated is-nav prop. Use b-navbar-nav component instead when
    placing navs in b-navbar.
  • b-nav-item-dropdown: deprecated props extra-menu-classes and extra-toggle-classes have been
    removed. Used props menu-class and toggle-class (respectively) instead.
  • b-table and b-table-lite: table cell field, header and footer scoped slot naming convention
    has changed
    . Users should be using the new table round bracketed slot naming syntax: use slot
    cell(field) instead of field or [field], use slot head(field) instead of HEAD_field or
    HEAD[field], use foot(field) instead of FOOT_field or FOOT[field]. This change was
    required for better compatibility with the new Vue v-slot syntax. The square bracket syntax
    introduced in 2.0.0-rc.28 has been replaced with the round bracket syntax to reduce possible
    confusion and potential future issues with Vue 2.6's new
    dynamic slot name syntax.
  • b-table: the filter prop will no longer accept a function reference (previously deprecated).
    Instead, pass a function to the filter-function prop when using a custom filter function. The
    prop filter is only to be used for the filter's criteria (i.e. the search value, search
    RegExpr, etc).
  • b-table: passing an object as a fields definition will no longer work. Use the array of
    strings
    or array of objects (or a combination of the two) fields definition format instead.
  • b-table: sorting icon SASS variables have been changed to handle the new SVG backgrounds. If you
    previously had custom CSS styling/icons, they will not work as expected - but sorting will still
    work. the SVG backgrounds can be controlled via SASS variables.
  • b-tab: removal of deprecated href prop. Use <b-nav> for controlling panes that change with
    URL changes.
  • b-tabs: removal of deprecated tabs slot. Use slot tabs-end instead.
  • b-tabs: removal of deprecated bottom prop. Use the end prop instead.
  • Tooltip SCSS: deprecated variable $bv-tooltip-bg-level has been removed. Use variable
    $b-tooltip-bg-level instead.
  • Popover SCSS: deprecated variables $bv-popover-bg-level, $bv-popover-border-level, and
    $bv-popover-color-level have been removed. Use variables $b-popover-bg-level,
    $b-popover-border-level, and $b-popover-color-level (respectively) instead.

Please refer to the documentation for the latest usage and
examples, and below for a list of fixes and new features.

Bug Fixes v2.0.0
Features v2.0.0
Deprecation removals v2.0.0
  • b-dropdown: remove deprecated slot text
    (#​3868)
    (29eb8b1)
  • b-form-group: remove deprecated prop horizontal and breakpoint
    (#​3879)
    (b301822)
  • b-nav, b-nav-item-dropdown: remove deprecated slot and props
    (#​3867)
    (21fab35)
  • b-modal: remove BvModalEvent deprecations
    (#​3864)
    (90c299c)
  • b-table, b-table-lite: switch slot name syntax to use round brackets instead of square
    brackets (#​3986)
    (fca7bd5)
  • b-table, b-table-lite: remove deprecated slot names, introduce new slot names
    (#​3866)
    (249efd9)
  • b-tabs: remove deprecations
    (#​3863)
    (0edac49)
  • tooltip/popover: remove SCSS deprecations
    (#​3869)
    (bea49d4)
  • build: remove deprecated es/ build
    (#​3604)
    (3828f59)


v2.0.0-rc.28

Compare Source

Released: 2019-09-06

BootstrapVue 2.0.0 stable introduces several new features and bug fixes. Please note that this
release also includes several breaking changes.

Notable improvements:

  • Tooltips and popovers have been completely re-written for better reactivity and stability. The
    directive versions are now reactive to trigger element title attribute changes and configuration
    changes. The component versions now perform better when quickly hovering/un-hovering the trigger
    element. Component and directive versions now have a default delay of 50ms (affects 'hover'
    and 'focus' triggers only). They can now have a trigger of 'manual' (when used by itself) of
    which they can only be opened or closed programmatically. Users can now optionally specify the ID
    that the tooltip or popover uses. For accessibility reasons, the title attribute is removed from
    the trigger element (target) only when the tooltip or popover is showing, and is restored when
    hidden.
  • Modals, tooltips, popovers, and toasts now work with scoped style classes (requires the use of
    vue-loader's /deep/, ::v-deep or >>>
    deep selectors
    for targeting inner elements, just like with any other component).
  • New SVG background image based sorting indicator icons for <b-table>, with the ability to place
    them on either the right (default) or left of the table cell headers (via a new prop).
  • Programmatic selection of <b-table> selectable rows.
  • Ability to provide your own custom footer structure for <b-table> and <b-table-lite>.
Breaking changes and deprecated features removal v2.0.0

Please carefully read the following before upgrading to v2.0.0 stable!

  • Vue 2.6+ is now required at a minimum, 2.6.10+ is recommended. Some components will fail
    to work as expected if using Vue 2.5 (notably tooltips and popovers, but other components may be
    affected as well).
  • All deprecated features have been removed in v2.0.0 stable in order to reduce bundle size and
    simplify code.

Two notable breaking changes are:

  • changes to the table slot naming syntax: the table slot syntax introduced in rc.28 has been
    modified in v2.0.0 stable for better compatibility with the new Vue v-slot syntax and its
    limitations (which currently are not documented in the Vue.JS docs).
  • the removal of the deprecated /es build directory: Users should now be importing the new
    top-level named exports when importing individual components, directives, and plugins.

Read the following migration guide for more details.

Migration guide v2.0.0
  • Removal of the deprecated /es build directory. Users should now be using the new simplified
    import syntax introduced in v2.0.0-rc.22. Users should be importing the top-level named exports
    instead.
  • b-dropdown: removal of deprecated text slot. Use the button-content slot instead.
  • b-form-* controls, b-form-group, b-form-invalid-feedback and b-form-valid-feedback:
    validation prop state now only accepts true, false, or null values. Passing the strings
    'invalid' or 'valid' will no longer work.
  • b-form-group: removal of the deprecated horizontal and breakpoint props. Use props
    label-cols{-{breakpoint}} instead.
  • b-img-lazy, b-card-img-lazy: now rely only on IntersectionObserver support (native or via a
    polyfill) to determine when to show the image. If IntersectionObserver support is not detected,
    then the image will always be shown. Use a polyfill if you need to support older browsers (e.g.
    IE11)
  • b-modal: the deprecated BvModalEvent method cancel() has been removed. Use the method
    preventDefault() instead.
  • b-modal: the deprecated BvModalEvent property modalId has been removed. Use the property
    componentId instead.
  • b-nav: removal of the deprecated is-nav prop. Use b-navbar-nav component instead when
    placing navs in b-navbar.
  • b-nav-item-dropdown: deprecated props extra-menu-classes and extra-toggle-classes have been
    removed. Used props menu-class and toggle-class (respectively) instead.
  • b-table and b-table-lite: table cell field, header and footer scoped slot naming convention
    has changed
    . Users should be using the new table round bracketed slot naming syntax: use slot
    cell(field) instead of field or [field], use slot head(field) instead of HEAD_field or
    HEAD[field], use foot(field) instead of FOOT_field or FOOT[field]. This change was
    required for better compatibility with the new Vue v-slot syntax. The square bracket syntax
    introduced in 2.0.0-rc.28 has been replaced with the round bracket syntax to reduce possible
    confusion and potential future issues with Vue 2.6's new
    dynamic slot name syntax.
  • b-table: the filter prop will no longer accept a function reference (previously deprecated).
    Instead, pass a function to the filter-function prop when using a custom filter function. The
    prop filter is only to be used for the filter's criteria (i.e. the search value, search
    RegExpr, etc).
  • b-table: passing an object as a fields definition will no longer work. Use the array of
    strings
    or array of objects (or a combination of the two) fields definition format instead.
  • b-table: sorting icon SASS variables have been changed to handle the new SVG backgrounds. If you
    previously had custom CSS styling/icons, they will not work as expected - but sorting will still
    work. the SVG backgrounds can be controlled via SASS variables.
  • b-tab: removal of deprecated href prop. Use <b-nav> for controlling panes that change with
    URL changes.
  • b-tabs: removal of deprecated tabs slot. Use slot tabs-end instead.
  • b-tabs: removal of deprecated bottom prop. Use the end prop instead.
  • Tooltip SCSS: deprecated variable $bv-tooltip-bg-level has been removed. Use variable
    $b-tooltip-bg-level instead.
  • Popover SCSS: deprecated variables $bv-popover-bg-level, $bv-popover-border-level, and
    $bv-popover-color-level have been removed. Use variables $b-popover-bg-level,
    $b-popover-border-level, and $b-popover-color-level (respectively) instead.

Please refer to the documentation for the latest usage and
examples, and below for a list of fixes and new features.

Bug Fixes v2.0.0
Features v2.0.0
Deprecation removals v2.0.0
  • b-dropdown: remove deprecated slot text
    (#​3868)
    (29eb8b1)
  • b-form-group: remove deprecated prop horizontal and breakpoint
    (#​3879)
    (b301822)
  • b-nav, b-nav-item-dropdown: remove deprecated slot and props
    (#​3867)
    (21fab35)
  • b-modal: remove BvModalEvent deprecations
    (#​3864)
    (90c299c)
  • b-table, b-table-lite: switch slot name syntax to use round brackets instead of square
    brackets (#​3986)
    (fca7bd5)
  • b-table, b-table-lite: remove deprecated slot names, introduce new slot names
    (#​3866)
    (249efd9)
  • b-tabs: remove deprecations
    (#​3863)
    (0edac49)
  • tooltip/popover: remove SCSS deprecations
    (#​3869)
    (bea49d4)
  • build: remove deprecated es/ build
    (#​3604)
    (3828f59)


nuxt/consola

v2.10.1

Compare Source

v2.10.0

Compare Source

Bug Fixes
  • add missing typescript declaration for level, stdout and stderr (#​58) (a149dbb)
Features
jest-community/eslint-plugin-jest

v22.17.0

Compare Source

Features

v22.16.0

Compare Source

Features

v22.15.2

Compare Source

Bug Fixes

v22.15.1

Compare Source

Bug Fixes

v22.15.0

Compare Source

Features

v22.14.1

Compare Source

Bug Fixes

v22.14.0

Compare Source

Features

v22.13.7

Compare Source

Bug Fixes
standard/eslint-plugin-standard

v4.0.1

Compare Source

facebook/jest

v24.9.0

Compare Source

Features
  • [expect] Highlight substring differences when matcher fails, part 1 (#​8448)
  • [expect] Highlight substring differences when matcher fails, part 2 (#​8528)
  • [expect] Improve report when mock-spy matcher fails, part 1 (#​8640)
  • [expect] Improve report when mock-spy matcher fails, part 2 (#​8649)
  • [expect] Improve report when mock-spy matcher fails, part 3 (#​8697)
  • [expect] Improve report when mock-spy matcher fails, part 4 (#​8710)
  • [expect] Throw matcher error when received cannot be jasmine spy (#​8747)
  • [expect] Improve report when negative CalledWith assertion fails (#​8755)
  • [expect] Improve report when positive CalledWith assertion fails (#​8771)
  • [expect] Display equal values for ReturnedWith similar to CalledWith (#​8791)
  • [expect, jest-snapshot] Change color from green for some args in matcher hints (#​8812)
  • [jest-snapshot] Highlight substring differences when matcher fails, part 3 (#​8569)
  • [jest-core] Improve report when snapshots are obsolete (#​8448)
  • [jest-cli] Improve chai support (with detailed output, to match jest exceptions) (#​8454)
  • [*] Manage the global timeout with --testTimeout command line argument. (#​8456)
  • [pretty-format] Render custom displayName of memoized components (#​8546)
  • [jest-validate] Allow maxWorkers as part of the jest.config.js (#​8565)
  • [jest-runtime] Allow passing configuration objects to transformers (#​7288)
  • [@jest/core, @&#8203;jest/test-sequencer] Support async sort in custom testSequencer (#​8642)
  • [jest-runtime, @&#8203;jest/fake-timers] Add jest.advanceTimersToNextTimer (#​8713)
  • [@jest-transform] Extract transforming require logic within jest-core into @jest-transform (#​8756)
  • [jest-matcher-utils] Add color options to matcherHint (#​8795)
  • [jest-circus/jest-jasmine2] Give clearer output for Node assert errors (#​8792)
  • [jest-runner] Export all types in the type signature of jest-runner (#​8825)
Fixes
  • [jest-cli] Detect side-effect only imports when running --onlyChanged or --changedSince (#​8670)
  • [jest-cli] Allow --maxWorkers to work with % input again (#​8565)
  • [babel-plugin-jest-hoist] Expand list of whitelisted globals in global mocks (#​8429)
  • [jest-core] Make watch plugin initialization errors look nice (#​8422)
  • [jest-snapshot] Prevent inline snapshots from drifting when inline snapshots are updated (#​8492)
  • [jest-haste-map] Don't throw on missing mapper in Node crawler (#​8558)
  • [jest-core] Fix incorrect passWithNoTests warning (#​8595)
  • [jest-snapshots] Fix test retries that contain snapshots (#​8629)
  • [jest-mock] Fix incorrect assignments when restoring mocks in instances where they originally didn't exist (#​8631)
  • [expect] Fix stack overflow when matching objects with circular references (#​8687)
  • [jest-haste-map] Workaround a node >=12.5.0 bug that causes the process not to exit after tests have completed and cancerous memory growth (#​8787)
Chore & Maintenance
  • [jest-leak-detector] remove code repeat (#​8438)
  • [docs] Add example to jest.requireActual (#​8482)
  • [docs] Add example to jest.mock for mocking ES6 modules with the factory parameter (#​8550)
  • [docs] Add information about using jest.doMock with ES6 imports (#​8573)
  • [docs] Fix variable name in custom-matcher-api code example (#​8582)
  • [docs] Fix example used in custom environment docs (#​8617)
  • [docs] Updated react tutorial to refer to new package of react-testing-library (@​testing-library/react) (#​8753)
  • [docs] Updated imports of react-testing-library to @​testing-library/react in website (#​8757)
  • [jest-core] Add getVersion (moved from jest-cli) (#​8706)
  • [docs] Fix MockFunctions example that was using toContain instead of toContainEqual (#​8765)
  • [*] Make sure copyright header comment includes license (#​8783)
  • [*] Check copyright and license as one joined substring (#​8815)
  • [docs] Fix WatchPlugins jestHooks.shouldRunTestSuite example that receives an object (#​8784)
  • [*] Enforce LF line endings (#​8809)
  • [pretty-format] Delete obsolete link and simplify structure in README (#​8824)
Performance
  • [jest-watcher] Minor optimization for JestHook (#​8746)
  • [@jest/reporters] Prevent runaway CPU useage with --notify on macOS (#​8830)
js-cookie/js-cookie

v2.2.1

Compare Source

  • #​400: Prevent XSS in the cookie attributes
  • #​353: Document ES6 module usage
  • #​350: Document npm package manager usage
ai/nanoid

v2.1.0

Compare Source

v2.0.4

Compare Source

  • Improve error text for React Native (by Sebastian Werner).
vuejs/vuepress

v1.0.4

Compare Source

Bug Fixes
Features

v1.0.3

Compare Source

Bug Fixes
Features
  • $theme-default: support custom URL scheme for external links (#​1677) (27f005b)
  • $theme-default: use router for Algolia search to reach no refresh (#​1706) (644142b)

1.0.2 (2019-06-22)

Bug Fixes
  • $core: cannot resolve agreement file from parent theme (1aaa6e3)
  • $core: url display in dev log (#​1670) (17ba325)
  • $plugin-medium-zoom: doesn't work with default plugin options in default theme (42f19e0)
Features

1.0.1 (2019-06-10)

Bug Fixes
  • $theme-default: using '.theme-default-content' to replace '.content' in 404 layout (#​1646) (f0d1344)
Features
  • **

Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "rebase!".

👻 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 Renovate Bot. View repository job log here.

@codecov
Copy link

codecov bot commented Jul 25, 2019

Codecov Report

Merging #417 into dev will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@         Coverage Diff         @@
##            dev   #417   +/-   ##
===================================
  Coverage   100%   100%           
===================================
  Files         1      1           
  Lines         2      2           
===================================
  Hits          2      2

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update e4c3263...fdcd525. Read the comment docs.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 64fae4f to 5c6ab05 Compare July 26, 2019 18:55
@renovate renovate bot changed the title chore(deps): update devdependency eslint-plugin-jest to ^22.13.7 chore(deps): update devdependency eslint-plugin-jest to ^22.14.0 Jul 26, 2019
@renovate renovate bot changed the title chore(deps): update devdependency eslint-plugin-jest to ^22.14.0 chore(deps): update all non-major dependencies Jul 29, 2019
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 842efee to 7b72330 Compare August 5, 2019 11:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from de8f2d8 to 7e04323 Compare August 12, 2019 18:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 3ee5a42 to 73c3158 Compare August 19, 2019 20:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from eceb51f to 3c39f84 Compare August 25, 2019 02:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 14f0035 to 3ee3b08 Compare September 4, 2019 22:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from ff3206b to 9592700 Compare September 7, 2019 00:22
@pi0 pi0 merged commit df9bee0 into dev Sep 10, 2019
@renovate renovate bot deleted the renovate/all-minor-patch branch September 10, 2019 09:30
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.

None yet

2 participants