Skip to content

Commit 67f1ada

Browse files
committed
fix: upgrade pacakges and fix security tag casing
1 parent 1b28165 commit 67f1ada

File tree

6 files changed

+3218
-4197
lines changed

6 files changed

+3218
-4197
lines changed

content/1.posts/53.azure-ready-github-repository.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tags:
1313
- OpenID Connect
1414
- Pulumi
1515
- IaC
16-
- security
16+
- Security
1717
---
1818

1919
Creating an application and deploying it to Azure is not complicated. You write some code on your machine, do some clicks in the Azure portal, or run some Azure CLI commands from your terminal and that's it: your application is up and running in Azure.

content/1.posts/54.ado-workload-identity-federation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tags:
1313
- OpenID Connect
1414
- Pulumi
1515
- IaC
16-
- security
16+
- Security
1717
- .NET
1818

1919
---

package.json

+12-11
Original file line numberDiff line numberDiff line change
@@ -17,32 +17,33 @@
1717
"@iconify-json/fluent-emoji-flat": "^1.2.3",
1818
"@iconify-json/heroicons": "^1.2.2",
1919
"@iconify-json/ph": "^1.2.2",
20-
"@iconify-json/simple-icons": "^1.2.27",
20+
"@iconify-json/simple-icons": "^1.2.30",
2121
"@nuxt/content": "^2.13.4",
2222
"@nuxt/fonts": "^0.10.3",
23-
"@nuxt/image": "^1.9.0",
24-
"@nuxt/ui-pro": "^1.7.0",
23+
"@nuxt/image": "^1.10.0",
24+
"@nuxt/ui-pro": "^1.7.1",
2525
"@nuxtjs/mdc": "^0.14.0",
2626
"@vueuse/nuxt": "^11.3.0",
2727
"feed": "^4.2.2",
2828
"just-kebab-case": "^4.2.0",
29-
"nuxt-og-image": "^3.1.1",
30-
"posthog-js": "^1.225.1",
29+
"nuxt-og-image": "^5.1.1",
30+
"posthog-js": "^1.234.9",
3131
"submitjson": "^0.10.0",
3232
"ufo": "^1.5.4",
3333
"zod": "^3.24.2"
3434
},
3535
"devDependencies": {
36-
"@nuxt/eslint": "^0.7.6",
36+
"@iconify-json/vscode-icons": "^1.2.18",
37+
"@nuxt/eslint": "^1.3.0",
3738
"@nuxthq/studio": "^2.2.1",
38-
"@nuxtjs/seo": "2.2.0",
39+
"@nuxtjs/seo": "3.0.2",
3940
"@stefanobartoletti/nuxt-social-share": "^1.2.1",
40-
"eslint": "^9.21.0",
41-
"nuxt": "^3.15.1",
42-
"typescript": "^5.8.2",
41+
"eslint": "^9.24.0",
42+
"nuxt": "^3.16.2",
43+
"typescript": "^5.8.3",
4344
"vue-tsc": "^2.2.8"
4445
},
45-
"packageManager": "pnpm@10.6.1",
46+
"packageManager": "pnpm@10.7.1",
4647
"pnpm": {
4748
"onlyBuiltDependencies": [
4849
"@parcel/watcher",

pages/goodies/index.vue

+1-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ const activeArticle = useState()
2323
<UContainer>
2424
<UPageHeader :title="title" :description="description"/>
2525
<UPageBody>
26-
<UBlogList>
2726
<UBlogPost
28-
v-for="(article, index) in articles"
27+
v-for="(article, index) in articles"
2928
:key="index"
3029
:to="article._path"
3130
:title="article.title"
@@ -37,7 +36,6 @@ v-for="(article, index) in articles"
3736
:ui="{ title: 'text-3xl', description: 'text-xl'}"
3837
@click="activeArticle = index"
3938
/>
40-
</UBlogList>
4139
</UPageBody>
4240
</UContainer>
4341
</template>

pages/posts/index.vue

+2-8
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const activePost = useState()
3131
<UPageBody>
3232
<UBlogList>
3333
<UBlogPost
34-
v-for="(post, index) in posts"
34+
v-for="(post, index) in posts"
3535
:key="index"
3636
:to="post._path"
3737
:title="post.title"
@@ -46,13 +46,7 @@ v-for="(post, index) in posts"
4646
description: 'line-clamp-2'
4747
}"
4848
@click="activePost = index"
49-
>
50-
<!-- <template #date>
51-
<time :datetime="post.date" class="ext-sm text-gray-500 dark:text-gray-400 font-medium pointer-events-none">
52-
{{ new Date(post.date).toLocaleDateString('en', { year: 'numeric', month: 'short', day: 'numeric' }) }}
53-
</time>
54-
</template> -->
55-
</UBlogPost>
49+
/>
5650
</UBlogList>
5751
</UPageBody>
5852
</UContainer>

0 commit comments

Comments
 (0)