laravel-coreui-vue
laravel-coreui-vue copied to clipboard
An in-range update of bootstrap-vue is breaking the build π¨
The dependency bootstrap-vue was updated from 2.0.0-rc.28 to 2.0.0.
π¨ View failing branch.
This version is covered by your current version range and after updating it in your project the build failed.
bootstrap-vue is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.
Status Details
- β Travis CI - Branch:
The build errored.
Release Notes for v2.0.0
Released: 2019-09-06
Please see the changelog for a complete list of commits, and the online documentation for usage.
BoootstrapVue 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 competely re-written for better reactivity and stability. The directive versions are now reactive to trigger element
titleattribute changes and configuration changes. The component versions now perform better when qucikly hovering/unhovering the trigger element. Component and directive versions now have a default delay of50ms (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, thetitleattribute 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-deepor>>>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>selctable 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 Vue2.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-slotsyntax and its limitations (which currently are not documented in the Vue.JS docs). - the removal of the deprecated
/esbuild 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
/esbuild 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 deprecatedtextslot. Use thebutton-contentslot instead.b-form-*controls,b-form-group,b-form-invalid-feedbackandb-form-valid-feedback: validation propstatenow only acceptstrue,false, ornullvalues. Passing the strings'invalid'or'valid'will no longer work.b-form-group: removal of the deprecatedhorizontalandbreakpointprops. Use propslabel-cols{-{breakpoint}}instead.b-img-lazy,b-card-img-lazy: now rely only onIntersectionObserversupport (native or via a polyfill) to determine when to show the image. IfIntersectionObserversupport 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 deprecatedBvModalEventmethodcancel()has been removed. Use the methodpreventDefault()instead.b-modal: the deprecatedBvModalEventpropertymodalIdhas been removed. Use the propertycomponentIdinstead.b-nav: removal of the deprecatedis-navprop. Useb-navbar-navcomponent instead when placing navs inb-navbar.b-nav-item-dropdown: deprecated propsextra-menu-classesandextra-toggle-classeshave been removed. Used propsmenu-classandtoggle-class(respectively) instead.b-tableandb-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 slotcell(field)instead offieldor[field], use slothead(field)instead ofHEAD_fieldorHEAD[field], usefoot(field)instead ofFOOT_fieldorFOOT[field]. This change was required for better compatibility with the new Vuev-slotsyntax. The square bracket syntax introduced in2.0.0-rc.28has 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: thefilterprop will no longer accept a function reference (previously deprecated). Instead, pass a function to thefilter-functionprop when using a custom filter function. The propfilteris only to be used for the filter's criteria (i.e. the search value, searchRegExpr, etc).b-table: passing an object as afieldsdefinition 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 deprecatedhrefprop. Use<b-nav>for controlling panes that change with URL changes.b-tabs: removal of deprecatedtabsslot. Use slottabs-endinstead.b-tabs: removal of deprecatedbottomprop. Use theendprop instead.- Tooltip SCSS: deprecated variable
$bv-tooltip-bg-levelhas been removed. Use variable$b-tooltip-bg-levelinstead. - Popover SCSS: deprecated variables
$bv-popover-bg-level,$bv-popover-border-level, and$bv-popover-color-levelhave 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
- b-dropdown-*: ensure class bindings are placed on root element for all dropdown sub-components (closes #4022) (#4024) (81efb89)
- b-form-textarea: handle initial auto-height when in modal, tabs, or other component with transition or which uses
v-show(fixes #3936, #3702) (#3937) (be3ac62) - b-link: only add the
nativeOnproperty to componentData when rendering a router link (#3976) (62fb0b6) - b-modal: ensure non-prop attributes are transferred to the modal outer wrapper
div(closes #3896) (#3921) (8bf3a55) - b-modal: fix scroll to top issue when modal has
no-fadeset (#4004) (332b79f) - b-table, b-table-lite: handle edge case where field slot returns no vNodes (fixes #3919) (#3920) (a392059)
- b-table, b-table-lite: render header when not always stacked mode (fixes #3886) (#3887) (2302b31)
- b-table, b-table-lite: generate
:keyforrow-detailsrow based on theprimary-keyfield value if available (#4025) (c7cb16f) - v-b-toggle: don't override
roleif element has aroleassigned (#3889) (5d155ba) - tooltip, popover: overall code refactor for better reactivity and performance (fixes: #1990, #2937, #3480,
#3717, #3854, closes #3451) (#3908) (eebab43)
Features v2.0.0
- b-carousel: add prop
no-wrapfor disabling wrapping to start/end (closes #3902) (#3905) (2c8bd23) - b-dropdown: add
role=presentationto<li>elements for improved a11y (#3996) (464d257) - b-img-lazy: switch IntersectionObserver to use private
v-b-visibledirective (#3977) (249ccfa) - b-modal: add scoped style support when portalled (non-static modal) (#3962) (77ad6b9)
- b-nav: add card header support (#3883)
(4046a53) - b-pagination: if number of pages changes, try and keep current page active (closes #3716) (#3990) (ae8ce78)
- b-modal: add prop for auto focusing one of the built in-buttons once
shown(closes #3945) (#3979) (6f2827e) - b-table: allow field definition properties
filterByFormattedandsortByFormattedto accept a formatter function reference (closes #3892) (#3898) (5492b38) - b-table: new sorting icons using SVG, plus option to place icon on left of header cell (closes #3687, #3696, #3918, #3966) (#3968) (c4442f4)
- b-table: add
filter-debounceprop for debouncing filter updates (#3891) (03536a5) - b-table: add
selectAllRows()andclearSelected()to thead/tfoot slot scopes (addresses #3901) (#3907) (86c53dd) - 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-table, b-table-lite: use
aria-detailsrather thanaria-describedbywhen details row showing (addresses #3801) (#3992) (f6f73c7) - b-table, b-table-lite: add support for custom header attributes (closes #2244) (#3876) (8784f31)
- b-table, b-table-lite: add new scoped slot
custom-footto allow user to create their own table footer (closes #3960) (#4027) (cbeeef9) - b-table, b-table-lite, b-table-simple: add
no-border-collapseprop and SCSS (#3987) (253b4f6) - b-toast: add support for scoped styles (#3963) (ca1b5de)
- tooltip, popover: overall code refactor for better reactivity and performance (fixes: #1990, #2937, #3480, #3717, #3854, closes #3451) (#3908) (eebab43)
Depreaction removals v2.0.0
- b-dropdown: remove deprecated slot
text(#3868) (29eb8b1) - b-form-group: remove deprecated prop
horizontalandbreakpoint(#3879) (b301822) - b-nav, b-nav-item-dropdown: remove deprecated slot and props (#3867) (21fab35)
- b-modal: remove
BvModalEventdeprecations (#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)
Commits
The new version differs by 96 commits.
e42ef07Merge pull request #3862 from bootstrap-vue/dev5930f04chore: bump version and update changelog (#4017)72ceef8chore: coverage fixes for babel dep upgrades (#4034)efe84a1Revert "chore(deps): update devdependency @nuxtjs/pwa to ^3.0.0-beta.17 (#4026)" (#4031)4b8a8c7fix(docs): hading before margin (#4029)cbeeef9feat(b-table, b-table-lite): add new scoped slotcustom-footto allow user to create their own table footer (closes #3960) (#4027)81efb89fix(b-dropdown-*): ensure class bindings are placed on root element for all dropdown sub-components (closes #4022) (#4024)c7cb16ffix(b-table, b-table-lite): use:keyfor row details based on the primary key value if available (#4025)2012d07chore(deps): update devdependency @nuxtjs/pwa to ^3.0.0-beta.17 (#4026)6aa16b8chore(deps): update devdependency eslint-plugin-jest to ^22.17.0 (#4023)64735a3chore: tooltip/popover directives execute title/content if function before each show (#4020)10ff04achore(deps): update devdependency eslint-plugin-node to v10 (#4019)acb34e7chore(docs): minor adjustments to the table docs (#4016)78c604cperf(b-table): cache cell slot names each render cycle (addresses #4008) (#4011)5855330docs(router-links): add more details toactive-classandexact-active-classprops (closes #4012) (#4013)
There are 96 commits in total.
See the full diff
FAQ and help
There is a collection of frequently asked questions. If those donβt help, you can always ask the humans behind Greenkeeper.
Your Greenkeeper Bot :palm_tree:
After pinning to 2.0.0-rc.28 your tests are still failing. The reported issue might not affect your project. These imprecisions are caused by inconsistent test results.
- The
dependencybootstrap-vue was updated from2.0.0to2.0.1.
Your tests are still failing with this version. Compare changes
Release Notes for v2.0.1
Released: 2019-09-13
Please see the changelog for a complete list of commits, and the online documentation for usage.
Bug Fixes v2.0.1
- b-media: fix vertical align class when
toporbottomselected (fixes #4052) (#4055) (9ccfe4c) - b-table: handle filter as an object when using items provider, and prevent duplicate provider calls on mount (fixes #4065) (#4068) (9ddd115)
- b-table: remove extra slashes in mixins imports (#4087) (77f5be1)
- tooltips, popovers: check
document.bodyinstead ofdocumentfor IE11 support (fixes #4074) (#4075) (1eda4fe) - v-b-tooltip, v-b-popover: add missing
disabledconfig option (#4057) (f488dc1) - v-b-tooltip, v-b-popover: don't show if no title/content provided (closes #4064) (#4076) (0b7de29)
Commits
The new version differs by 30 commits.
10d7a0fMerge pull request #4060 from bootstrap-vue/dev389eec5chore: bump version and update changelog v2.0.1 (#4080)c6a3030docs(b-form-radio): add note thatunchecked-valueis not submitted via native form submit (closes #4089) (#4090)22581e3docs: add opencolletive backers/donors on landing page (#4086)55d84e3docs: fix syntax error in table component's README (#4088)77f5be1fix(b-table): remove extra slashes in mixins imports (#4087)8a3d616Merge pull request #4084 from bootstrap-vue/master28a4775chore(docs): fix broken link in file-input docs0b7de29fix(v-b-tooltip, v-b-popover): don't show if no title/content provided (closes #4064) (#4076)9ddd115fix(b-table): handle filter as an object when using providers and prevent duplicate provider calls on mount (fixes #4065) (#4068)9f95ef1chore(deps): update devdependency @nuxtjs/pwa to ^3.0.0-beta.19 (#4078)1eda4fefix(tooltip, popover): checkdocument.bodyinstead ofdocumentfor IE11 support (fixes #4074) (#4075)de6e229chore(docs): ensure opengraph and twitter meta is provided (#4072)56f9ecdchore(playground): fix linting warning6efec4dchore(deps): update devdependency eslint-config-prettier to ^6.3.0 (#4069)
There are 30 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.0.1to2.0.2.
Your tests are still failing with this version. Compare changes
Release Notes for v2.0.2
Released: 2019-09-20
Please see the changelog for a complete list of commits, and the online documentation for usage.
Bug Fixes v2.0.2
- b-popover, b-tooltip: ensure prop
boundary-paddingis passed to popper instance (fixes #4131) (#4133) (a54a647) - b-collapse: make
idprop not required (#4109) (4f935ce) - tables: add in missing Bootstrap variant class
bg-activefor dark tables (#4098) (d9900ab) - tables: ensure row variant
active(classtable-active) takes precedence over other row variants (addresses #3008) (#4127) (fdb8bb6) - tooltips, popovers: hide trigger element
titleattribute during show delay (fixes #4114) (#4120) (2dd8d5a)
Commits
The new version differs by 23 commits.
7877babMerge pull request #4099 from bootstrap-vue/devd5460c7chore: bump version to 2.0.2 (#4137)16e228aPrettify4271ceedocs(b-toast): show example of using<b-alert>as an alternative to a toast (#4136)a54a647fix(b-popover, b-tooltip): ensureboundary-paddingis passed to popper instance (fixes #4131) (#4133)d82c4f5chore(deps): update devdependency codecov to ^3.6.1 (#4132)8c65b53chore(deps): update devdependency codemirror to ^5.49.0 (#4130)b7ab9c4chore(deps): update devdependency codecov to ^3.6.0 (#4129)fdb8bb6fix(tables): ensure row variantactive(classtable-active) takes precedence over other row variants (addresses #3008) (#4127)f079fcfdocs: add 3rd party components/library links to misc docs (#4103)4f935cefix(collapse): don't makeidprop required (#4109)46f2a7ddocs(modal): add section on footer button sizing (#4108)2dd8d5afix(tooltip, popover): hide trigger element title attribute during show delay (fixes #4114) (#4120)d9900abfix(tables): add in missing Bootstrap variant classbg-activefor dark tables (#4098)e35ad51docs(table): document tableactivevariant in selectable rows section (#4097)
There are 23 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.0.2to2.0.3.
Your tests are still failing with this version. Compare changes
Release Notes for v2.0.3
Released: 2019-10-05
Please see the changelog for a complete list of commits, and the online documentation for usage.
Bug Fixes v2.0.3
- b-form-file: fix prop type checking for
valueprop (#4168) (a8e2e56) - b-nav-item-dropdown: focus-out handling when new focus comes from another
dropdown-toggle(closes #4113) (#4139) (9c37875) - b-table: minor code optimizations to filter debouncing (#4167) (018eef1)
- b-table, b-table-lite, b-table-simple: disable sticky header max-height on printers / print media (#4147) (24c62c5)
- b-tooltip, b-popover: add
SVGElementas acceptable prop type (closes #4173) (#4174) (fab7fea) - v-b-modal: bind to inner link or button for dropdown items or nav items (fixes #4149) (#4187) (5c28bd2)
Performance v2.0.3
- b-table, b-table-lite: delegate row event handlers to the tbody element (#4192) (3f0d46a)
- tables: make
b-thextendb-tdinstead of using functional wrappers (#4156) (c9715a8) - tables: improve provide/inject performance (addresses #4155) (#4164) (152fefc)
Docs v2.0.3
Commits
The new version differs by 40 commits.
2fd03f0chore: release v2.0.36a2ef1dUpdate CHANGELOG.md041494cchore(deps): update devdependency eslint-config-prettier to ^6.4.0 (#4201)073ac96chore: bump version and update changelog (#4196)e242039chore(deps): update devdependency autoprefixer to ^9.6.4 (#4200)280d487chore(docs): add head meta description to section index pages for better SEO (#4195)efcdba6docs(table): add details on thetbody-tr-classcallback arguments (#4194)0e1f871chore(deps): update devdependency terser to ^4.3.7 (#4199)5657666chore(deps): update all non-major dependencies (#4197)3bf6c6achore(docs): minor fix to popover component docs3f0d46aperf(b-table, b-table-lite): delegate row event handlers to the tbody element (#4192)dfbc398chore(deps): update devdependency terser to ^4.3.6 (#4193)5c28bd2fix(v-b-modal): bind to inner link or button for dropdown items or nav items (fixes #4149) (#4187)6cee6c0chore(deps): update devdependency rollup to ^1.23.0 (#4188)676e62achore(docs): improve v-play performance and only recreate instance if changed (#4185)
There are 40 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.0.3to2.0.4.
Your tests are still failing with this version. Compare changes
Release Notes for v2.0.4
Released: 2019-10-11
Bug Fixes v2.0.4
- b-carousel: disable the next/prev controls when the carousel is sliding (closes #4210) (#4212) (64d556d)
- b-dropdown-form: fix SCSS styling when placed in a nav dropdown (fixes #4220) (#4223) (b852bba)
- types: correct the declared export name for
BCardSubTitlecomponent (#4229) (9f216df)
Performance v2.0.4
- b-table, b-table-lite: improve render performance for large tables (closes #4211, #4155) (#4213) (f3f42f2)
Other v2.0.4
- add
"sass"entry inpackage.json - minor docs fixes and updates
Commits
The new version differs by 18 commits.
7b16a72chore: release v2.0.441788e0Update CHANGELOG.md97ea2d1chore(release): bump version and update changelog (#4235)f0f836echore(docs): note about requiring BootstrapVue custom CSS for tooltips/popovers (#4238)fd48dedchore(deps): update devdependency nuxt to ^2.10.1 (#4237)37149d2chore(deps): update all non-major dependencies to ^7.6.4 (#4233)ba9a805chore(docs): minor update to b-form-input docs (#4228)f3f42f2perf(b-table, b-table-lite): improve render performance (closes #4211, #4155) (#4213)b852bbafix(b-dropdown-form): fix SCSS styling when placed in a nav dropdown (fixes #4220) (#4223)9f216dffix(types): BCardSubTitle component declared export name (#4229)5855ffdchore(deps): update all non-major dependencies to ^7.6.3 (#4226)494d742chore(docs): tweaks to page quick-links styling (#4219)fe7dc04chore(core): docs show advanced scss import (#4207)2ec602fchore(docs): minor updates to the theming reference section (#4224)64d556dfix(carousel): disable the next/prev controls when the carousel is sliding (closes #4210) (#4212)
There are 18 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.0.4to2.1.0.
Your tests are still failing with this version. Compare changes
Release Notes for v2.1.0
Features
b-dropdown: addblocksupport to toggle button (closes #4266)b-form-group: allow setting label cols props toauto(closes #4217)b-form-input,b-form-textarea: newlazymodifier prop to update v-model on change/blur eventb-form-input,b-form-textarea: addv-modeldebouncing feature via new propdebounce, and deprecate<b-table>propfilter-debounce(closes #4150)b-img,b-img-lazy: add support forsrcsetandsizesprops (closes #4348)b-pagination,b-pagination-nav: addpillsstyle optionb-table: default the row select featureselected-variantto the'active'variantb-table: addselectRow()andunselectRow()methods to cell and row-details slot scopes, and new propno-select-on-clickb-table,b-table-lite: add in head/foot row variant prop (addresses #4215)b-table,b-table-lite: add propdetails-td-classfor applying classes to the details row<td>b-tabs: emit cancelable BvEvent before changing tabs via new eventactivate-tab(closes #4273)v-b-visible: new directivev-b-visiblefor detecting visibility of elements- auto-generate file dist/
web-types.jsonfor WebStorm, and filesdist/vetur-tags.jsonanddist/vetur-attributes.jsonfor Vetur (closes #4107)
Fixes
b-dropdown: handle issue with touch devices on MacOS using Safari/Firefox (Fixes #4328, #4344)b-nav-form,b-nav-text: ensure these sub-components have<li>as root element for accessibilityb-pagination,b-pagination-nav: add UP/DOWN keyboard navigation support for JAWS (fixes #4322)b-table,b-table-lite,b-table-simple: fix issue with sticky columns when table is notresponsivebut hassticky-header(fixes #4354)b-table,b-table-lite,b-tbody: fix delegated event handlers when transition + minor adjustment to rowkeygeneration (fixes #4370, #4360)b-tabs: allow space to trigger tab activation whenno-key-navis enabled (fixes #4323)v-b-modal: open modal usingENTERkey on non-button elements for A11Yv-b-modal: ensure trigger element is keyboard accessible if not a link or button, for A11Yv-b-tooltip,v-b-popover: ensure reference to trigger element is passed to title/content function (fixes #4331)- web-types: update web-types code generation to match latest schema
Other
b-table: deprecate propfilter-debouncein favour ofb-form-inputdebouncing- documentation updates and fixes
Commits
The new version differs by 78 commits.
2ed2fdechore: release v2.1.0d998b84chore: bump version and update changelog (#4315)9508275chore(deps): update devdependency rollup to ^1.27.0 (#4376)030a3d8fix(b-table, b-table-lite, b-tbody): fix delegated event handlers when transition + minor adjustment to rowkeygeneration (fixes #4370) (#4372)f54ca29fix(v-b-modal): ensure trigger element is keyboard accessible if not a link or button, for A11Y (#4365)fbbcffbchore(deps): update devdependency rollup to ^1.26.5 (#4369)2793852chore(deps): update devdependency terser to ^4.4.0 (#4368)3b35f9dchore(deps): update devdependency terser to ^4.3.10 (#4367)a3484c4chore(deps): update devdependency rollup to ^1.26.4 (#4366)0d27d7bfix(v-b-modal): open modal usingENTERkey on non-button elements for A11Y (#4364)e7a7f97chore(deps): update devdependency @babel/standalone to ^7.7.3 (#4363)a858523fix(docs): tabs lazy examples (#4362)56b3958fix(tables): fix issue with sticky columns when table is not responsive but has sticky headers (fixes #4354) (#4356)677de40chore(docs): fix eslint warnings (#4361)2779a0afix(b-dropdown): handle issue with touch devices on MacOS using Safari/Firefox (Fixes #4328, #4344) (#4329)
There are 78 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.1.0to2.2.0.
Your tests are still failing with this version. Compare changes
Release Notes for v2.2.0
Overview
- New icon components (based on
BootstrapIcons v1.0.0-alpha2) - New tagged input component
<b-form-tags> - Support for
Bootstrap v4.4.1CSS/SCSS
Features
- icons: new optional icon components (#4489) (d2bef17)
- b-collapse: add new prop
appearto animate an initially visible collapse (#4317) (136a72b) - b-collapse: add optional scoping to default slot (#4405) (8e95bac)
- b-container: add support for bootstrap v4.4.x new responsive containers (0e318f4)
- b-dropdown: add splitClass property to dropdown component (#4394) (a5f342e)
- b-dropdown-form: new
form-classprop for adding classes to the form element (closes #4474) (#4475) (eef4200) - b-form-select: add group/tree support and dedicated option and option-group components (closes #3222) (#4267) (f1ed017)
- b-form-select: support paths for
valueField,textField,htmlFieldanddisabledFieldprops (#4386) (ed3b736) - b-form-tags: new tagged input component (#4409) (00eb9d9)
- b-row: add Bootstrap v4.4 row columns support (#4439) (833b028)
- b-table: better sort labeling for screen readers (closes #4487) (#4488) (d4e66fa)
- b-table, b-table-lite: new
tbody-tr-attrprop for arbitrary row attributes (closes #1864) (#4481) (4acf6ed) - b-tooltip: add
noninteractiveprop (closes #4556) (#4563) (b3ad726) - build: configure pre-commit hook (closes #4532) (#4552) (1bf9e59)
Bug Fixes
- b-table, b-table-lite: handle edge case with row events when table is removed from dom. instantiate row event handlers only when listeners are registered (fixes #4384) (#4388) (9a81cd4)
- b-toast: fix interal
ensureToastermethod call when toaster name changes (#4468) (744bb7a) - tooltips, popovers: fix memory leak (closes #4400) (#4401) (c71352d)
- docs: handle undocumented breaking changes in babel-standalone for IE11 (#4484) (56f8bb5)
Commits
The new version differs by 142 commits.
c1cf970chore: release v2.2.04853938chore: bump version and update changelog (#4573)2e794fechore(docs): use icons on landing page (#4576)704d89achore(docs): add caniuse link to form-input docs input type sectiona75b7acchore(deps): update devdependency terser to ^4.6.2 (#4572)7a5a629chore(deps): update devdependency rollup to ^1.29.0 (#4571)7d8eef7chore(deps): update devdependency husky to ^4.0.1 (#4569)b3ad726feat(b-tooltip): addnoninteractiveprop (closes #4556) (#4563)f5a2fbachore(docs): minor updates to the icons docs (#4567)df465aachore(docs): disable autocomplete on the icons search field (#4566)8877542chore(deps): update devdependency postcss-cli to v7 (#4565)e013dc6feat(docs): make more concise and explain how to hideb-toasttitle (#4542)9d93995chore(deps): update devdependency husky to v4 (#4561)1bf9e59feat(chore): configure pre-commit hook (fixes #4532) (#4552)bc801a7chore(deps): update all non-major dependencies (#4559)
There are 142 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.2.0to2.2.1.
Your tests are still failing with this version. Compare changes
Release Notes for v2.2.1
Bug Fixes v2.2.1
- icons: make icon transform props work with IE11 (closes #4607) (#4608) (899779f)
- types: add missing declarations for
b-form-select-option&b-form-select-option-group(#4595) (8d60832) - types: include named export
BootstrapVuein declaration file (#4590) (603307a) - modal, tooltips, popovers: remove
nextTickdelay when updating content in transporter portal (closes #4589) (#4604) (0e3e7e0) - utils: correct
identityspelling error (#4579) (7fed191)
Docs v2.2.1
Other v2.2.1
- dev dependencies updates
Commits
The new version differs by 31 commits.
a25c099chore: patch release v2.2.130b0c9dchore(table): fix typo in docs json meta2738b75chore: bump version and update changelog (#4596)00f487achore(deps): update all non-major dependencies to ^7.8.3 (#4616)b706be6chore(deps): update devdependency terser to ^4.6.3 (#4615)7e8c577chore(deps): update devdependency sass-loader to ^8.0.2 (#4614)0e3e7e0fix(modal, tooltips, popovers): remove no longer needednextTickdelay when updating content in transporter portal (closes #4589) (#4604)4f33e16chore(deps): update all non-major dependencies to ^7.8.2 (#4612)ca6aac9chore(deps): update devdependency @babel/standalone to ^7.8.1 (#4610)d657f11chore(deps): update devdependency eslint-plugin-jest to ^23.6.0 (#4609)8a366aachore(deps): update all non-major dependencies (#4606)899779ffix(icons): make icon transform props work with IE11 (closes #4607) (#4608)defbec0chore(docs): update modal prevent closing example (#4605)c8b5ba3chore(deps): update devdependency eslint-plugin-import to ^2.20.0 (#4602)0d45877chore(deps): update devdependency @nuxtjs/google-analytics to ^2.2.3 (#4600)
There are 31 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.2.2to2.3.0.
Your tests are still failing with this version. Compare changes
Release Notes for v2.3.0
Features v2.3.0
- b-button-close: add
contentprop (#4574) (7379c6d) - b-form-tags: new option to specify input type (closes #4644) (#4645) (b899fac)
- b-pagination, b-pagination-nav: add page button class props and option to show first/last page numbers (closes #4597, #4533) (#4622) (3a3ee1d)
- icons: add stacking support (#4658) (b185cdb)
Bug Fixes v2.3.0
Commits
The new version differs by 35 commits.
7f3577fchore: release v2.3.0bba1dc8chore: bump version and update changelog (#4670)e53a05dfix(v-b-modal): only unbind/rebind if trigger element or modal ID changes (closes #4669) (#4672)3a3ee1dfeat(b-pagination, b-pagination-nav): add page button class props and option to show first/last page numbers (closes #4597, #4533) (#4622)af0b6ebchore(deps): update all non-major dependencies (#4666)079a560chore(build): export the icons plugin direct from icons/plugin.js (#4640)b185cdbfeat(icons): add stacking support (#4658)a64d5ccchore(docs): correct use ofitsvs.it'sand minor tweaks (#4664)b899facfeat(b-form-tags): new option to specify input type (closes #4644) (#4645)950f6b9chore(deps): update devdependency lint-staged to ^10.0.2 (#4665)7379c6dfeat(b-button-close): addcontentprop (#4574)fe47416chore(deps): update jest monorepo to v25 (#4662)9196105chore(deps): update all non-major dependencies (#4660)8ffc02achore(deps): update devdependency husky to ^4.1.0 (#4659)af45572chore(deps): update devdependency rollup to ^1.29.1 (#4655)
There are 35 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.3.0to2.4.0.
Your tests are still failing with this version. Compare changes
Release Notes for v2.4.0
Features v2.4.0
- b-modal: add
ignore-enforce-focus-selectorprop (closes #4537) (#4702) (c3ac992) - b-nav-item-dropdown: add
boundaryprop, applicable when not inb-navbar(closes #4684) (#4691) (3a50ad8)
Bug Fixes v2.4.0
Commits
The new version differs by 23 commits.
b49e704chore: release v2.4.0f317cb5chore: bump version and update changelog (#4711)e268a42chore(deps): update devdependency highlight.js to ^9.18.1 (#4713)bdf0f5dchore(deps): update devdependency codecov to ^3.6.4 (#4710)6da6c25chore(docs): minor update to modal docs re TinyMCE (#4708)c3ac992feat(b-modal): addignore-enforce-focus-selectorprop (closes #4537) (#4702)6e0b852chore(deps): update devdependency codecov to ^3.6.3 (#4707)39eb19cchore(deps): update devdependency lint-staged to ^10.0.7 (#4704)128aa19chore(deps): update devdependency rollup to ^1.31.0 (#4703)954176dfix(b-form-input, b-form-textarea): properly handle out-of-sync values (closes #4695) (#4701)cedf702chore(deps): update devdependency lint-staged to ^10.0.6 (#4699)8656c66chore(deps): update all non-major dependencies to ^7.8.4 (#4698)f16b386chore(deps): update devdependency lint-staged to ^10.0.5 (#4696)2eab55bfix(b-dropdown): focus-in handling for Safari and Firefox on macOS/iOS (closes #4328) (#4426)3a50ad8feat(b-nav-item-dropdown): addboundaryprop, applicable when not inb-navbar(closes #4684) (#4691)
There are 23 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.4.0to2.4.1.
Your tests are still failing with this version. Compare changes
Release Notes for v2.4.1
Bug Fixes v2.4.1
- b-form-input, b-form-textarea: handle change event for all mobile device keyboards (closes #4724) (#4739) (166a932)
- b-tooltip, v-b-tooltip: fix arrow margin (#4727) (865a655)
Other v2.4.1
- dev dependency updates
- minor docs updates
Commits
The new version differs by 13 commits.
d2ed469chore: patch release v2.4.147ba834chore: bump version to 2.4.1 and update changelog (#4756)c590ca6chore(deps): update devdependency husky to ^4.2.3 (#4757)a17eb57chore(deps): update devdependency husky to ^4.2.2 (#4754)413b6dbchore(deps): update devdependency codesandbox to ^2.1.12 (#4746)166a932fix(b-form-input, b-form-textarea): handle change event for all mobile device keyboards (closes #4724) (#4739)623687achore(readme): comment out package quality link as it is broken (#4740)a6e7f76chore(deps): update devdependency eslint-plugin-jest to ^23.7.0 (#4738)dce12afchore(deps): update devdependency codecov to ^3.6.5 (#4735)ca8d136docs(homepage): show sponsors on homepage (#4729)865a655fix(b-tooltip): fix arrow margin (#4727)1d25047chore(deps): update devdependency @nuxtjs/pwa to ^3.0.0-beta.20 (#4715)c3c5e43chore(deps): update devdependency eslint-plugin-import to ^2.20.1 (#4714)
See the full diff
- The
dependencybootstrap-vue was updated from2.4.1to2.4.2.
Your tests are still failing with this version. Compare changes
Release Notes for v2.4.2
Bug Fixes v2.4.2
- b-button: when
hrefis "#" addrole=buttonand appropriate keydown handlers for A11Y (#4768) (087a128) - b-modal: fix transition show enter timing (closes #4761) (#4766) (968c957)
Other v2.4.2
- documentation updates
- dev dependency updates
Commits
The new version differs by 16 commits.
2082322chore: release v2.4.21e02769Delete hover.js9220ae9Create hover.js0bbb69dUpdate CHANGELOG.md6a0cdaedocs(b-button): add accessibility section (#4770)aedfeddUpdate CHANGELOG.mdd1f9907Update package.json86e3479Update CHANGELOG.md087a128fix(b-button): whenhrefis "#" addrole=buttonand appropriate keydown handlers for A11Y (#4768)97a65c2docs(popovers, tooltips): add info about focus only trigger and cross platform behaviour (#4767)968c957fix(b-modal): transition timing (#4766)6adcd0fchore(deps): update devdependency rollup to ^1.31.1 (#4765)214168bchore: ignorebrowser.jsand browser-icons.js` during esm modular build (#4764)e9a99e6fix(events): correctcapturevalue ofEVENT_OPTIONS_NO_CAPTURE(#4763)280dec8chore: minor tweaks and fixes (#4760)
There are 16 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.4.2to2.5.0.
Your tests are still failing with this version. Compare changes
Release Notes for v2.5.0
Features v2.5.0
- b-calendar, b-form-datepicker: new components
b-calendarandb-form-datepicker(closes #3676, #1428) (#4712) (af0ded0) - b-form-spinbutton: new form control component
b-form-spinbutton(#4744) (da5e473) - v-b-hover: new directive for reacting to hover changes (#4771) (b7adc6d)
Bug Fixes v2.5.0
Commits
The new version differs by 18 commits.
62620e1chore: release v2.5.09313a05chore: bump version and update changelog (#4793)39829be- Updated tooltips documentation (#4791)8625e99docs: improve anchored heading accessibility (#4787)62abe28chore(b-form-tags): remove new tag from package.json meta (#4788)a33a8aechore: remove beta tags from calendar and datepicker (#4785)88ea325chore(b-form-spinbutton): add two missing props (#4784)92d7676Delete time.js60fba22Create time.js2328630fix(b-form-tags): improve accessibility for screen reader users (#4775)da5e473feat(b-form-spinbutton): new form control componentb-form-spinbutton(#4744)1113c6ffix(b-modal): additional fixes for show transition behaviour (closes #4761) (#4777)b1d5c45chore(deps): update devdependency eslint-plugin-vue to ^6.2.1 (#4779)cc79c13chore: sync dev with master4a4d5e1chore(deps): update devdependency eslint-plugin-vue to ^6.2.0 (#4776)
There are 18 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.5.0to2.6.0.
Your tests are still failing with this version. Compare changes
Release Notes for v2.6.0
Features v2.6.0
- b-calendar, b-form-datepicker: allow customization of in-component displayed date format (closes #4797) (#4835) (85c7e75)
- b-form-datepicker: add
button-contentoptionally scoped slot for calendar icon (#4795) (7a00910) - b-form-datepicker: add
calendar-widthprop (closes #4817) (#4822) (91b77bc) - b-pagination, b-pagination-nav: improve aria accessibility - changes to inner structure and aria attributes (closes: #4811, #4160) (#4810) (7ee4baa)
- b-tabs: add ability to provide custom tab button attributes (closes: #4803) (#4806) (c541d3d)
- b-time, b-form-timepicker: new components
b-timeandb-form-timepicker(#4783) (417ef8f)
Bug Fixes v2.6.0
- b-form-datepicker: menu focus handling for Firefox and Safari on MacOS, and fix v-model update
issue (closes #4814, #4827) (#4824) (09fa920) - b-form-spinbutton: prevent buttons from re-ordering when parent element is RTL (#4802) (ae2cce9)
- b-form-spinbutton: prevent double increment/decrement on mobile (fixes #4838) (#4842) (9c2c700)
Other v2.6.0
- documentation updates
- dev dependency updates
Commits
The new version differs by 48 commits.
4203876chore(b-form-datepicker): fix typecheck during tests548f773chore(b-form-datepicker): fix typecheck during tests5e85506chore: release v2.6.0378e76fUpdate CHANGELOG.mde2f2e67chore(b-time): add fallback ofhourCyclefor IE 11 support (#4875)a2f67c9chore(docs): more tweaks for contributors for better IE 11b18150bchore(deps): update all non-major dependencies to ^7.8.7 (#4874)8dfd771chore(docs): contributors tweak23cb141chore: bump version and update changelog (#4871)b554723chore: tweak contributors back link threshold dollar amount4f801beUpdate contributors-container.jsdfb9ad8Update contributors.vue4e3c7d8chore(deps): update devdependency cross-env to ^7.0.1 (#4872)c5615c8chore(deps): update devdependency terser to ^4.6.6 (#4868)505aa75chore(docs): fix typo (#4867)
There are 48 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.6.0to2.6.1.
Your tests are still failing with this version. Compare changes
Release Notes for v2.6.1
Bug Fixes v2.6.1
- b-form-spinbutton: respect step value for initial decrement when
wrapenabled (closes #4884) (#4885) (28e7245)
Other v2.6.1
- documentation updates and fixes
- dev dependency updates
Commits
The new version differs by 16 commits.
c56cf40chore: patch release v2.6.124e9b11Update CHANGELOG.mda0a3398chore: bump version and update changelog (#4893)430d2f5chore(docs): minor CSS tweak for playground (#4902)a661458chore(docs): add carbon ad to playground (#4897)7714ec4docs(a11y): add references to reduced motion for certain component animations (#4896)3fa3147chore(deps): update devdependency rollup to ^1.32.1 (#4898)706926cdocs: add Carbon ads (#4891)b1eb8cfchore(docs): fix typo in README (#4895)d4def9cchore(deps): update devdependency eslint-plugin-jest to ^23.8.2 (#4894)bffb6a2docs(b-calendar, b-form-datepicker): fix mistake in date formatting examples (#4890)9d07ad5chore(deps): update devdependency cross-env to ^7.0.2 (#4889)28e7245fix(b-form-spinbutton): respect step value for initial decrement whenwrapenabled (closes #4884) (#4885)6e6d17edocs: improve code examples and enhance wording (closes #4859) (#4882)bda2a04chore(docs): show live examples of all positioning for tooltip and popover directives (closes #4877) (#4880)
There are 16 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.6.1to2.7.0.
Your tests are still failing with this version. Compare changes
Release Notes for v2.7.0
Features v2.7.0
- b-overlay: new component
b-overlay(#4907) (134d64d) - b-calendar, b-form-datepicker: add new
initial-dateprop, and constrain today/current month buttons betweenminandmax(closes #4899) (#4906) (1d957eb) - b-form-datepicker, b-form-timepicker: add support for icon button only mode (closes #4888) (#4915) (13660c3)
- b-icon: add animated icon options (closes #4720) (#4934, #4945, #4948) (7c781fa, b786f67, 927c234)
Bug Fixes v2.7.0
- b-form-file: fix value prop validation when using directory mode (fixes #4912) (#4913) (498a262)
- b-form-file: make sure to catch all errors when resetting the input (#4936) (682bc46)
Other v2.7.0
deps: update devDependency rollup to 2.0.x- minor docs updates
Commits
The new version differs by 30 commits.
d3517a4chore: release v2.7.0ca29664chore(icons): minor update to stacked animation examplec4ab5a5Update CHANGELOG.md5c5a703Update CHANGELOG.md927c234chore(icons): additional adjustment for stacked animations (#4948)2c60769chore: bump version and update changelog (#4944)fd187c3chore(deps): bump acorn from 6.4.0 to 6.4.1 (#4947)b786f67chore(icons): updates to CSS animations (#4945)7735729chore(deps): update devdependency rollup to ^2.0.6 (#4943)151be5dchore(deps): update devdependency @babel/standalone to ^7.8.8 (#4939)7c781fafeature(b-icon): add animated icon options (closes #4720) (#4934)c15f86achore(deps): update devdependency rollup to ^2.0.5 (#4937)682bc46fix(b-form-file): make sure to catch all errors when resetting the input (#4936)d86a579chore(b-overlay): add notes on using in<b-modal>(#4933)486e154docs(list-group): update utility classes link to 4.4 (#4932)
There are 30 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.7.0to2.8.0.
Your tests are still failing with this version. Compare changes
Release Notes for v2.8.0
Features v2.8.0
- icons: upgrade to Bootstrap Icons
1.0.0.alpha3(#4966) (d481365)- 200+ new icons
skip-*icon names fixed (closes #4733)document-*icons renamed tofile-*alert-*icons renamed toexclamation-*columns-guttersicon renamed tocolumns-gapdiamondicon renamed togembecause of newdiamond-*shape icons
- b-avatar: new
<b-avatar>component (#4974) (b2325a3) - b-form-spinbutton: add slots for increment and decrement button content (closes #4958) (#4963) (5684405)
Other v2.8.0
- docs updates
- dev dependencies updates
Commits
The new version differs by 21 commits.
4ee34a6chore: release v2.8.029b5f82chore(docs): note changes from alpha2 to alpha3 icons (#4987)5032b00chore: bump version and update changelog (#4978)9ad28e0chore(deps): update all non-major dependencies (#4979)7ce1637docs(b-overlay): add no-center example (#4981)b2325a3feat(b-avatar): new b-avatar component (#4974)b2a4ea5chore(deps): update devdependency codemirror to ^5.52.2 (#4975)3f66d93Update README.mddd7320bchore(b-calendar): use new double chevron icons (#4973)5684405feat(b-form-spinbutton): add slots for increment and decrement button content (closes #4958) (#4963)d481365feat: upgrade to bootstrap icons alpha 3 (#4966)838dc42chore(deps): update devdependency html-loader to v1 (#4967)e6bf85fchore(deps): update devdependency marked to ^0.8.1 (#4965)7b727e8chore(deps): update all non-major dependencies (#4962)86253b0chore(docs): fix typo in b-overlay docs (#4961)
There are 21 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.8.0to2.9.0.
Your tests are still failing with this version. Compare changes
Release Notes for v2.9.0
Features v2.9.0
- b-aspect: new custom component
<b-aspect>(#5008) (662c8e0) - b-avatar: add
altprop for adding alt attribute to image and icon avatars (closes #4990) (#4991) (d1474f2) - b-drodpown-item-button, b-drodpown-item-button: add
button-classandlink-classprop (#5014) (b39d31c) - b-form-datepicker, b-form-timepicker: emit
shownandhiddenevents (#5004) (eb259b9) - b-navbar-toggle: make default slot scoped (#4995) (144d45f)
Docs v2.9.0
- Ensure that the
IconsPluginis imported when exporting from playground to CodePen, CodeSandbox, and JsFiddle (#5003)
Other v2.9.0
- dev dependency updates
Commits
The new version differs by 20 commits.
041be77chore: release v2.9.0567061achore: bump version and update changelog (#5020)0d85ed2chore(deps): update devdependency nuxt to ^2.12.1 (#5016)cd806eachore(docs): minor updates to modal props meta (#5013)b39d31cfeat(b-drodpown-item-button, b-drodpown-item-button): addbutton-classandlink-classprop (#5014)4476945chore(deps): update all non-major dependencies to ^25.2.0 (#5015)662c8e0feat(b-aspect): new custom component<b-aspect>(#5008)ee6fe52chore(docs): use docs issue template when reporting docs issue (#5011)0551decchore(docs): fix a few minor issues with some examples (#5007)eb259b9feat(b-form-datepicker, b-form-timepicker): emitshownandhiddenevents (#5004)68ad33fdocs(play): ensure that the Icons plugin is imported when exporting: (#5003)36c0e5achore(deps): update devdependency rollup to ^2.2.0 (#5006)144d45ffeat(b-navbar-toggle): make default slot scoped (#4995)e8104b9chore(deps): update devdependency @babel/standalone to ^7.9.4 (#4998)621e9fcchore(docs): minor update to homepage icons (#4996)
There are 20 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.9.0to2.10.0.
Your tests are still failing with this version. Compare changes
Commits
The new version differs by 23 commits.
76c28ffchore: release v2.10.017f08b8chore: bump version and update changelog (#5058)f509599chore(docs): update dev docs url tobootstrap-vue.netlify.app(#5059)9f78f32fix(b-avatar): remove duplicate button variant class (#5056)64e4a6fchore: adjustments to docs rendering and code optimizations (#5031)e5a507cchore(deps): update devdependency rollup to ^2.3.2 (#5053)56def49chore(deps): update all non-major dependencies (#5051)4612e85chore(deps): update devdependency nuxt to ^2.12.2 (#5050)657585eFixed Typo in Toast Docs (#5049)d25f8d8chore(deps): update devdependency terser to ^4.6.9 (#5046)4e3f5edchore(deps): update all non-major dependencies (#5045)6f60b15chore(deps): update devdependency lint-staged to ^10.1.0 (#5043)122628bchore(deps): update all non-major dependencies (#5040)74aade1feat: useemitOnRoot()whereever possible and remove unused chainable support (#5030)a77866ffeat(b-sidebar): new custom component<b-sidebar>(closes #3324, #3210, #1702) (#5021)
There are 23 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.10.0to2.10.1.
Your tests are still failing with this version. Compare changes
Release Notes for v2.10.1
Bug Fixes
- b-avatar: remove default padding when in button mode (fixes #5073) (#5076) (26377b3)
- b-table: fix context object
currentPageissue introduced in v2.10.0 (fixes #5065) (#5067) (874dca2)
Other
- dev dependency updates
Commits
The new version differs by 11 commits.
78dc146chore: patch release 2.10.1af91715chore: bump version to 2.10.1 and update changelog (#5080)26377b3fix(b-avatar): remove default padding when in button mode (fixes #5073) (#5076)35f124eRevert "feat(b-avatar): if imgsrcfails to load, show icon or text or fallback icon (#5064)" (#5078)6298953chore(deps): update devdependency html-loader to ^1.1.0 (#5071)5fc5771feat(b-avatar): if imgsrcfails to load, show icon or text or fallback icon (#5064)874dca2fix(table): fix bad copy paste (#5067)dcda1b7chore(deps): update all non-major dependencies to ^25.2.6 (#5068)cf9d421chore(docs): minor update to the sidebar docs (#5063)e905681Merge pull request #5061 from bootstrap-vue/deveeabf3fUpdate CHANGELOG.md
See the full diff
- The
dependencybootstrap-vue was updated from2.10.1to2.11.0.
Your tests are still failing with this version. Compare changes
Release Notes for v2.11.0
Features v2.11.0
- b-avatar: if image
srcfails to load, then show icon, text or fallback icon (#5079) (ed6704d) - b-calendar, b-form-datepicker: add optional decade navigation buttons (addresses #4976) (#5112) (b1f74a8)
Bug Fixes v2.11.0
- b-calendar, b-form-datepicker: handle keyboard navigation when selected date is out of range (fixes #5057) (#5108) (6ed09f4)
- b-link: don't render
targetorrelattrs whenrouter-tagother thanaorareaprovided (#5107) (33c6cef) - tooltip, popover: handle
'click blur'trigger on iOS webkit browsers (fixes #5099) (#5103) (27da76c)
Other v2.11.0
- additional unit testing
- dev dependencies updates
- minor documentation updates
Commits
The new version differs by 20 commits.
cef3878chore: release 2.11.0d30c8b0chore: bump version and update changelog (#5113)e76c01achore(deps): update all non-major dependencies (#5115)9707f9cUpdate modal.spec.jsd7cf463chore(b-form-file): additional unit tests (#5116)b1f74a8feat(b-calendar, b-form-datepicker): add optional decade navigation buttons (addresses #4976) (#5112)73966dbUpdate README.mdf722c42Update package.json4fa8aeachore(deps): update devdependency autoprefixer to ^9.7.6 (#5110)a23a6d0chore(docs): fix documentation typos for Hover directive (#5109)6ed09f4fix(b-calendar, b-form-datepicker): handle keyboard navigation when selected date is out of range (fixes #5057) (#5108)ed6704dfeat(b-avatar): if imgsrcfails to load, then show icon, text or fallback icon (#5079)33c6ceffix(b-link): don't rendertargetorrelattrs whenrouter-tagother thanaorareaprovided (#5107)404d6e8chore(docs): update tabs docs examples for additional ARIA markup (#5106)59cca83chore(tooltip, popover): add tests for modal close event (#5104)
There are 20 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.11.0to2.12.0.
Your tests are still failing with this version. Compare changes
Release Notes for v2.12.0
Features v2.12.0
- b-avatar: add support for badges on avatars (#5124) (a2e465b)
- b-avatar: if
variantis empty string, then remove spacing around image (closes #5154) (#5156) (7ff87fc) - b-calendar, b-form-datepicker: add prop
weekday-header-formatto specify weekday header length (closes #5171) (#5175) (8241644) - b-calendar, b-form-datepicker: add scoped slots for date navigation buttons (closes #5117) (#5147) (5f69864)
- b-form-datepicker: add pass through prop
date-info-fn(closes #4826) (#5150) (bf35f80) - b-form-rating: new
b-form-ratingcustom component (#5132) (30ad7fe) - b-sidebar: add optional backdrop support (#5182) (c6375e5)
- custom components: avoid using padding/margin utility classes where possible (closes #5117) (#5121) (8c6cfe0)
- icons: new
throbandfadeanimations (#5122) (bc0117c)
Bug Fixes v2.12.0
- b-alert: fix memory leak by using the correct method to clear the countdown timeout (#5158) (7a7f33d)
- b-avatar: fix button type font size inheritance (#5177) (441ebdc)
- b-calendar: use
Intl.NumberFormatfor formatting the number in the date buttons (closes
#5171) (#5179) (cbf2cd0) - b-form-datepicker: make datepicker respect
no-highlight-todayprop (#5159) (c4ead33)
Other v2.12.0
- documentation updates
- dev dependency updates
Commits
The new version differs by 59 commits.
5f7f2e5Merge pull request #5194 from bootstrap-vue/dev1253ba2Update header.vue5507d92Merge branch 'master' into dev31d66acchore: fix docs header version dropdowna7b17e1chore: release v2.12.0e995f28chore: bump version to 2.12.0 and update changelog (#5148)44dd196Merge branch 'dev' of https://github.com/bootstrap-vue/bootstrap-vue into dev9042dc1Merge remote-tracking branch 'origin/master' into dev3e9ecf3chore: update build status badge and removedocs-publishcommand (#5193)2e7a4ecRevert "Revert "Revert "chore: remove circleci badge from repo readme"""ec7cf43Revert "Revert "chore: remove circleci badge from repo readme""770fd34Revert "chore: remove circleci badge from repo readme"9bf9384chore: sync ignore files withdevbracnh56ebde5chore(b-sidebar): only render the tab traps when the sidebar is open (#5191)44b4bd4chore: improve CI workflow (#5189)
There are 59 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.12.0to2.13.0.
Your tests are still failing with this version. Compare changes
Release Notes for v2.13.0
Features v2.13.0
- b-calendar, b-form-datepicker: relax
YYYY-MM-DDstring parsing (closes #5232) (#5242) (f362802) - b-form-rating: add
show-value-maxprop to show possible max rating whenshow-valueistrue(#5200) (e9d54e6) - b-overlay: add support for overlay
clickevent (closes #5243) (#5248) (582560f)
Bug Fixes v2.13.0
- b-avatar: set
align-items: centerfor default slot content (fixes: #5205) (#5207) (c4981fd) - b-calendar, b-form-datepicker: minor adjustments to styling and example updates (#5211) (f0d8ffe)
- b-form-datepicker, b-form-timepicker: fix menu padding in button only mode (fixes #5251) (#5252) (d57a643)
- b-form-datepicker, b-form-timepicker: adjust scss to support input-groups (#5231) (7b1adc4)
- b-form-datepicker, b-form-timepicker: prevent duplicate validation icons (fixes #5237) (#5238) (6354e6e)
- types: update table field definition types to include sticky column (fixes #5263) (#5265) (20eb3ac)
- handle nested form options normalization (#5247) (0c57ffe)
Commits
The new version differs by 44 commits.
639aee4chore: release v2.13.0ac554acchore: bump version and update changelog (#5260)8138adachore(deps): update devdependency rollup to ^2.7.3 (#5267)4987b0cchore(docs): update footer with new information (#5264)bcd6d79chore(deps): update devdependency postcss-cli to ^7.1.1 (#5266)20eb3acfix(types): update table field definition types to include sticky column (fixes #5263) (#5265)8159890chore(docs): add generated robots.txt and sitemap.xml for SEO (#5257)d9a9672chore: minor refactors in code optimization for better minification (#5258)d57a643fix(b-form-datepicker, b-form-timepicker): fix menu padding in button only mode (fixes #5251) (#5252)05446f4chore(deps): update devdependency terser to ^4.6.12 (#5250)582560ffeat(b-overlay): add support for overlayclickevent (closes #5243) (#5248)0c57ffefix: handle nested form options normalization (#5247)ee7e8b8chore(docs): update Zeit references to Vercel (#5208)6f84fb9chore: overwrite Vercel now default headers (#5249)a366baachore(docs): minor tweaks for mobile friendliness (#5241)
There are 44 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.13.0to2.13.1.
Your tests are still failing with this version. Compare changes
Release Notes for v2.13.1
Bug Fixes v2.13.1
- b-table, b-table-lite, b-table-simple: handle head/foot variant for sticky columns (fixes #5278) (#5279) (53e309e)
Other v2.13.1
- documentation updates
- dev dependency updates
Commits
The new version differs by 20 commits.
028b880chore: release 2.13.1a68ad42chore: bump version and update changelog (#5305)74af02echore(docs): improve page load time by pre-parsing README.md at build time (#5290)c0c8a68chore(deps): update all non-major dependencies to ^26.0.1 (#5304)fad2b2echore(deps): update devdependency node-sass to ^4.14.1 (#5300)d41bbb8chore(deps): update jest monorepo to v26 (major) (#5298)1e0ea9bchore(deps): update devdependency eslint-plugin-jest to ^23.9.0 (#5294)7522ecachore(deps): update devdependency jest to ^25.5.4 (#5292)938f55cchore(deps): update all non-major dependencies (#5286)7f44e55chore(deps): update devdependency lint-staged to ^10.2.1 (#5283)3087d86Merge branch 'master' into dev73f046bchore(docs): add partners section to landing page (#5282)53e309efix(b-table, b-table-lite, b-table-simple): handle header variant for sticky columns (fixes #5278) (#5279)bc199dechore(deps): update devdependency jest to ^25.5.2 (#5276)66619c8chore(deps): update all non-major dependencies (#5275)
There are 20 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.13.1to2.14.0.
Your tests are still failing with this version. Compare changes
Release Notes for v2.14.0
Features v2.14.0
- b-avatar-group: new helper component
<b-avatar-group>(#5272) (c84faae) - b-nav-item-dropdown: improve default handling of dropdown toggle link (closes #3942) (#5344) (62c6105)
- v-b-toggle: support specifying target ID via directive argument, and array of target IDs via directive value (closes #4834) (#5336) (260ef72)
Bug Fixes v2.14.0
- b-modal: remove
role="document"from.modal-content(#5345) (0c2b406) - perf: avoid useless re-renders of component on parent update (#4825) (2cb3fe0)
Other v2.14.0
- dev dependency upgrades
- docs updates
- upgrade to vue test utils 1.0.x
Commits
The new version differs by 27 commits.
96ffdccchore: release 2.14.0bb8ed11chore: bump version and update changelog (#5349)0c2b406fix(b-modal): removerole="document"from.modal-content(#5345)c5ed437chore(docs): update sitemap module config (#5348)62c6105feat(b-nav-item-dropdown): improve default handling of dropdown toggle link (closes #3942) (#5344)70c00e8chore(deps): update devdependency @nuxtjs/sitemap to ^2.3.0 (#5347)0009784chore(utils/dom): add new utils for focus/blur handling (#5346)9e1e394chore(deps): update devdependency rollup to ^2.9.1 (#5343)2cb3fe0fix(perf): avoid useless re-renders of component on parent update (#4825)260ef72feat(v-b-toggle): support specifying target ID via directive argument, and array of target IDs via directive value (closes #4834) (#5336)562be51fix(docs): fix broken link (#5341)8ea4577chore(deps): update devdependency rollup to ^2.9.0 (#5339)a837fc0chore(docs): update grid layout docs (closes #5332) (#5333)9b0f372chore(deps): update devdependency eslint-plugin-jest to ^23.10.0 (#5335)3b7bccfchore(deps): update devdependency eslint to v7 (#5334)
There are 27 commits in total.
See the full diff
- The
dependencybootstrap-vue was updated from2.14.0to2.15.0.
Your tests are still failing with this version. Compare changes
Release Notes for v2.15.0
Features
- css: update Bootstrap to v4.5.0 (#5395) (ba7a55e)
- icons: upgrade to Bootstrap Icons 1.0.0-alpha4 (#5420) (3208309)
- b-sidebar: add prop
backdrop-variant(#5411) (4b0c163) - b-link: add support 3rd party router links such as Gridsome's
<g-link>(closes #2627) (#5358) (6d29e1c) - b-navbar-toggle: add
disabledprop (#5397) (0b7082b) - v-b-toggle: check for target ID via
hrefif a link (#5398) (33e39b0) - types: create declarations for
<b-calendar>and<b-time>context event objects (closes #5366) (#5374) (8f3ca30) - support
<nuxt-link>'sprefetchproperty (closes #5125) (#5355) (b9416cb)
Bug Fixes
- v-b-toggle: don't check for evt.defaultPrevened (closes #5391) (#5396) (a1543b2)
- b-link: default new
<nuxt-link>propprefetchtonullfor true tri-state prop (#5357) (3f41c91) - ensure all intervals/timeouts/observers are cleared when component is destroyed (#5362) (064cdf4)
- properly handle HTML props render order (closes #5363) (#5365) (844ecda)
- fix docs CodeSandbox integration (#5381) (a948846)
Commits
The new version differs by 43 commits.
ae18d46chore: release v2.15.0bd5a3d7chore: bump version to 2.15.0 and update changelog (#5428)a8ab65echore(deps): update devdependency lint-staged to ^10.2.6 (#5427)3208309feat(icons): upgrade to Bootstrap Icons 1.0.0-alpha4 (#5420)167e29fchore(docs): remove any old Carbonads scripts from<head>(#5422)f098f40chore(deps): update all non-major dependencies (#5424)cfb83bdchore(deps): update devdependency bootstrap-icons to ^1.0.0-alpha4 (#5418)ab36bbachore: bump bundlewatch thresholds due to new icons (#5419)4b0c163feat(b-sidebar): add propbackdrop-variant(#5411)9172665chore(deps): update devdependency @nuxtjs/google-analytics to ^2.3.0 (#5410)b6bec96chore(deps): update devdependency codemirror to ^5.54.0 (#5408)11b5481chore(deps): update devdependency @testing-library/jest-dom to ^5.8.0 (#5404)0bd75cdchore(deps): update devdependency rollup to ^2.10.5 (#5403)8674d29chore(docs): updated VeeValidate v3 documentation url (#5402)ba7a55efeat: update Bootstrap to v4.5 (#5395)
There are 43 commits in total.
See the full diff