-
Notifications
You must be signed in to change notification settings - Fork 158
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
[full-ci] @vue/compat #8128
[full-ci] @vue/compat #8128
Conversation
Thanks for opening this pull request! The maintainers of this repository would appreciate it if you would create a changelog item based on your changes. |
be281ee
to
5aab243
Compare
Results for e2e-tests oC10 https://drone.owncloud.com/owncloud/web/31217/11/1 💥 To see the trace, please open the link in the console ...
npx playwright show-trace https://cache.owncloud.com/public/owncloud/web/31217/tracing/copy-and-move-resources-in-personal-space-alice-2023-1-5-12-08-10.zip |
Results for e2e-tests oCIS https://drone.owncloud.com/owncloud/web/31217/12/1 💥 To see the trace, please open the link in the console ...
npx playwright show-trace https://cache.owncloud.com/public/owncloud/web/31217/tracing/copy-and-move-resources-in-personal-space-alice-2023-1-5-12-07-34.zip |
20c41d8
to
9f6d41e
Compare
ca1dc13
to
9945ff8
Compare
da07617
to
2f5001f
Compare
...es/src/components/SideBar/Shares/Collaborators/InviteCollaborator/InviteCollaboratorForm.vue
Outdated
Show resolved
Hide resolved
packages/web-app-files/tests/mocks/useResourcesViewDefaultsMock.ts
Outdated
Show resolved
Hide resolved
4e9d19c
to
6e9cebf
Compare
94e07e4
to
bd086ff
Compare
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.
We should check if we have more usages of $listeners or $attrs and if they still work everywhere.
Moreover we should check for .native
modifiers for events and get rid of all of them.
In general I'd say this is in pretty good shape and needs only minor fixes now
packages/design-system/src/components/OcDatepicker/OcDatepicker.vue
Outdated
Show resolved
Hide resolved
import iconColorMap from '../../helpers/resourceIconColorExtensionMapping.json' | ||
import iconNameMap from '../../helpers/resourceIconExtensionMapping.json' | ||
import * as iconColorMap from '../../helpers/resourceIconColorExtensionMapping.json' | ||
import * as iconNameMap from '../../helpers/resourceIconExtensionMapping.json' |
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.
This is ugly but we couldn't fix it otherwise in Vite AND jest. It's used at runtime in the documentation, so we couldnt simply convert it to ts 🌚
Hopefully we can soon switch to vitest and have it flxed there...
packages/design-system/src/components/OcTextarea/OcTextarea.vue
Outdated
Show resolved
Hide resolved
packages/design-system/src/components/_OcTableCell/OcTableCell.spec.ts
Outdated
Show resolved
Hide resolved
packages/design-system/src/components/_OcTableCell/_OcTableCell.vue
Outdated
Show resolved
Hide resolved
packages/web-pkg/src/composables/clientService/useClientService.ts
Outdated
Show resolved
Hide resolved
packages/web-pkg/src/composables/translations/useTranslations.ts
Outdated
Show resolved
Hide resolved
tests/acceptance/features/webUISharingPublicExpire/shareByPublicLinkExpiringLinks.feature
Outdated
Show resolved
Hide resolved
3cef14a
to
8bef656
Compare
8bef656
to
11e8dc8
Compare
55f2918
to
48702c2
Compare
0f248c2
to
cb2c929
Compare
packages/web-app-admin-settings/tests/unit/components/AppTemplate.spec.ts
Show resolved
Hide resolved
@@ -198,7 +198,8 @@ export default defineComponent({ | |||
}, | |||
setup(props) { | |||
const instance = getCurrentInstance().proxy | |||
const uppyService = instance.$uppyService | |||
const uppyService = | |||
getCurrentInstance().proxy.$uppyService || getCurrentInstance().parent.proxy.$uppyService |
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.
Looks to me like you implemented that in this PR. Could you make use of it here?
packages/web-pkg/src/composables/clientService/useClientService.ts
Outdated
Show resolved
Hide resolved
Kudos, SonarCloud Quality Gate passed! |
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.
👍
Omg this has been merged? 😱😱 awesomeeee! |
Description
Upgrade Vue to use the Vue 3 compat mode.
Related Issue