-
Notifications
You must be signed in to change notification settings - Fork 342
chore: release v0.6.0 #349
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
Conversation
Missing this: Breaking Change
Features
Types
|
@pikax Updated. Thanks! |
I think we are ready for this release. @yyx990803 May I have the npm right for this package? (username: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
update
I can push a release as well. |
@LinusBorg Merged. If anything is alright, can you help with publishing? Thanks! |
Btw I'm doing a PR in a bit to fix the PropType, should we hold it for 0.6.1? |
@pikax yeah, I think it's good to hold it for the next release. Hope we can make this package iterates faster than it does now. :) |
https://github.com/vuejs/composition-api/releases |
Yeah, it's haven't been published yet. @sodatea Can you help with that? I don't have the right to publish to npm for now. |
@antfu I just published 0.6.0 |
@LinusBorg Great! Thanks! |
0.6.0
Great thanks to @pikax for #311, making most of the APIs better aligned with the latest vue-next.
BREAKING CHANGE
lazy
option ofwatch
has been replaced by the oppositeimmediate
option, which defaults to false. (It's ignored when using the effect signature). more details (Adjust watch behaviour to match latest RFC update #266)nonReactive
tomarkRaw
UnwrapRef
types fromvue-next
this can cause some incompatibilities.Bug Fixes
toRefs
, Typing the return oftoRefs
#315,Features
unref
(feat: add unref API to match API with vue3 #309),isReactive
(Missing function isReactive #327),toRef
(Missing functiontoRef
#313),UnwrapRef
(Missing UnwrapRef export #247)shallowReactive
,shallowRef
toRaw
getCurrentInstance
available on the lifecycle hooks (onMounted
, etc)getCurrentInstance
returnsundefined
when called outside setup instead of throwing exceptionTypes
vue-next