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 to ^3.10.1 #2541

Merged
merged 3 commits into from
Feb 6, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore(deps): update all non-major dependencies to ^3.10.1
renovate[bot] authored Feb 5, 2024

Verified

This commit was signed with the committer’s verified signature.
janicduplessis Janic Duplessis
commit 43f7772f73ac170f58629423cd832cb0bf23826f
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@
"@nuxtjs/plausible": "^0.2.4",
"@vueuse/core": "^10.7.2",
"@vueuse/nuxt": "^10.7.2",
"nuxt": "^3.10.0",
"nuxt": "^3.10.1",
"nuxt-og-image": "^2.2.4"
},
"resolutions": {
1,524 changes: 219 additions & 1,305 deletions docs/pnpm-lock.yaml

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@
"test:unit": "nuxi prepare test/fixtures/basic && nuxi prepare test/fixtures/document-driven && vitest run"
},
"dependencies": {
"@nuxt/kit": "^3.10.0",
"@nuxt/kit": "^3.10.1",
"@nuxtjs/mdc": "^0.5.0",
"@vueuse/core": "^10.7.2",
"@vueuse/head": "^2.0.0",
@@ -76,7 +76,7 @@
},
"devDependencies": {
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "3.10.0",
"@nuxt/schema": "3.10.1",
"@nuxt/test-utils": "3.11.0",
"@nuxthq/studio": "^1.0.10",
"@nuxtjs/eslint-config-typescript": "latest",
@@ -89,7 +89,7 @@
"husky": "^9.0.10",
"jiti": "^1.21.0",
"lint-staged": "^15.2.2",
"nuxt": "3.10.0",
"nuxt": "3.10.1",
"rehype-figure": "^1.0.1",
"rehype-wrap-all": "^1.1.0",
"release-it": "^17.0.3",
204 changes: 80 additions & 124 deletions pnpm-lock.yaml

Unchanged files with check annotations Beta

<script setup>
defineProps(['type'])

Check warning on line 2 in docs/components/content/Example/ExampleAlert.vue

GitHub Actions / ubuntu

Prop "type" should define at least its type
</script>
<template>
</div>
<template #title>
<span v-html="page.hero?.title" />

Check warning on line 63 in docs/pages/index.vue

GitHub Actions / ubuntu

'v-html' directive can lead to XSS attack
</template>
<template #description>
<span v-html="page.hero?.description" />

Check warning on line 66 in docs/pages/index.vue

GitHub Actions / ubuntu

'v-html' directive can lead to XSS attack
</template>
<template #links>
<UButton
<ULandingSection v-for="(section, index) of page.sections" :key="index" v-bind="section">
<template v-if="section.title" #title>
<span v-html="section?.title" />

Check warning on line 101 in docs/pages/index.vue

GitHub Actions / ubuntu

'v-html' directive can lead to XSS attack
</template>
<template v-if="section.description" #description>
<span v-html="section.description" />

Check warning on line 105 in docs/pages/index.vue

GitHub Actions / ubuntu

'v-html' directive can lead to XSS attack
</template>
<template #features>
:ui="{ links: 'mt-8 flex flex-wrap justify-center lg:justify-start gap-x-3 gap-y-1.5', base: 'text-center lg:text-left flex flex-col items-center lg:items-start' }"
>
<template v-if="section.subTitle" #title>
<span v-html="section?.subTitle" />

Check warning on line 128 in docs/pages/index.vue

GitHub Actions / ubuntu

'v-html' directive can lead to XSS attack
</template>
<template v-if="section.subDescription" #description>
<span v-html="section.subDescription" />

Check warning on line 132 in docs/pages/index.vue

GitHub Actions / ubuntu

'v-html' directive can lead to XSS attack
</template>
<template #links>
}"
>
<template #title>
<span v-html="section.subTitle" />

Check warning on line 198 in docs/pages/index.vue

GitHub Actions / ubuntu

'v-html' directive can lead to XSS attack
</template>
<template #links>
<UAvatarGroup :max="13" size="md" class="flex-wrap lg:self-start [&_span:first-child]:text-xs">
<UTooltip
v-for="(contributor, index) of module.contributors"

Check warning on line 204 in docs/pages/index.vue

GitHub Actions / ubuntu

Variable 'index' is already declared in the upper scope
:key="index"
:text="contributor.username"
class="rounded-full"
<template #meet-studio>
<ul class="flex flex-wrap space-x-4 lg:px-28 xl:px-40 items-center justify-center sm:-mt-16">
<li v-for="(item, index) in section.list" :key="index" class="my-2">

Check warning on line 258 in docs/pages/index.vue

GitHub Actions / ubuntu

Variable 'index' is already declared in the upper scope
<UIcon name="i-ph-check" class="w-4 h-4 text-green-400 mr-2" />
<span class="text-gray-200 text-lg">{{ item }}</span>
</li>