Releases: dhershman1/vue-debounce
Releases · dhershman1/vue-debounce
v5.0.1
Fixed
- Added
main
to package.json #89 (@andreclemente)
v5.0.0
Breaking Changes
- Remove support for Vue 2
- If you need to continue supporting Vue2 please switch to the vue2-debounce package or stay of v4 of this one
- vue-debounce is now registered as a ES
module
instead of a cjs package- This helps the transition over to Vue3
- This will help keep the typing system clean
Fixed
- README now reflects how to use vue-debounce with only vue3
v4.0.1
v4.0.0
Breaking Changes
- Removed
getDirective
flow there is now a dedicated import for vue 2, and vue 3 #73
Improved
- Made usage easier, instead of trying to support complex backwards compatability, I simply separated the two into their own imports
- Usage should be less convoluted
Fixed
- Vue 3 compatability should be stabalized and working again #73
- Brought to my attention by @it-xtech-dev and @JTinkers
v3.1.1
v3.1.0
v3.0.1
Improved
- Types for debounce (#57 thanks to @hrobertson)
- Placement of the readme for
getDirective
(#56)
v3.0.0
BREAKING CHANGES
- Lots of code condencing, shouldn't break anything but just in case
- Changed how debouncing
fireonempty
works. It had a bug so I made it a bit more strict to fix this- Please open issues ASAP if this functionality is not working as expected
New
- Added new
trim
option and modifier, this allows you to trim inputs that come through- The value given to your function will NOT be the trimmed value, trim is only used for logic to see if things should be ran
- Added
getDirective
function which allows you to create a directive instance at lower levels other than global should help with #53
Improved
- Some small code cleanup
- Updated dependencies
v2.6.0
New
- Added Vue 3 Compatibility 🎉
- This involves the backwards compatibility change I brought up in discussions #47
- This change IS compatible with Vue 2, which is why it isn't a major release
Improved
- Dropped
dist/
from the repo- This is so it doesnt bog down PRs
- dist is still available on npm as its built before deploy
- Your CDN (if using) should NOT be affected
v2.5.8
Improved
- Updated all dev dependencies
- Started planning vue 3 compatibility
Fixed
- Removed david-md badges from readme since it seems to be down for good
- Linting fixes in the test files