Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nuxt-modules/og-image
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.0.4
Choose a base ref
...
head repository: nuxt-modules/og-image
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.0.5
Choose a head ref
  • 4 commits
  • 5 files changed
  • 1 contributor

Commits on Mar 17, 2025

  1. chore(ci): permissions

    harlan-zw committed Mar 17, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    68d2a3e View commit details

Commits on Mar 19, 2025

  1. chore: bump deps

    harlan-zw committed Mar 19, 2025
    Copy the full SHA
    2bdf4fa View commit details
  2. fix: register missing template params plugin

    harlan-zw committed Mar 19, 2025
    Copy the full SHA
    2fef772 View commit details
  3. chore: release v5.0.5

    harlan-zw committed Mar 19, 2025
    Copy the full SHA
    8093a25 View commit details
Showing with 1,427 additions and 377 deletions.
  1. +4 −1 .github/workflows/test.yml
  2. +1 −1 client/package.json
  3. +12 −12 package.json
  4. +1,406 −363 pnpm-lock.yaml
  5. +4 −0 src/runtime/app/composables/defineOgImage.ts
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
name: Test

permissions:
contents: read

on:
push:
branches:
- main
paths-ignore:
- '**/README.md'
pull_request:
pull_request_target:
branches:
- main

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
"@iconify-json/carbon": "^1.2.8",
"@nuxt/devtools-kit": "2.1.0",
"@nuxt/devtools-ui-kit": "2.1.0",
"@nuxt/kit": "^3.16.0",
"@nuxt/kit": "^3.16.1",
"@vueuse/core": "^13.0.0",
"floating-vue": "^5.2.2",
"json-editor-vue": "^0.18.1",
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "nuxt-og-image",
"type": "module",
"version": "5.0.4",
"packageManager": "pnpm@10.6.3",
"version": "5.0.5",
"packageManager": "pnpm@10.6.5",
"description": "Enlightened OG Image generation for Nuxt.",
"author": {
"website": "https://harlanzw.com",
@@ -69,33 +69,33 @@
},
"dependencies": {
"@nuxt/devtools-kit": "^2.3.0",
"@nuxt/kit": "^3.16.0",
"@nuxt/kit": "^3.16.1",
"@resvg/resvg-js": "^2.6.2",
"@resvg/resvg-wasm": "^2.6.2",
"@unocss/core": "^66.0.0",
"@unocss/preset-wind3": "^66.0.0",
"chrome-launcher": "^1.1.2",
"consola": "^3.4.0",
"consola": "^3.4.2",
"defu": "^6.1.4",
"execa": "^9.5.2",
"image-size": "^2.0.1",
"magic-string": "^0.30.17",
"mocked-exports": "^0.1.1",
"nuxt-site-config": "^3.1.6",
"nuxt-site-config": "^3.1.7",
"nypm": "^0.6.0",
"ofetch": "^1.4.1",
"ohash": "^2.0.11",
"pathe": "^2.0.3",
"pkg-types": "^2.1.0",
"playwright-core": "^1.51.0",
"playwright-core": "^1.51.1",
"radix3": "^1.1.2",
"satori": "^0.12.1",
"satori-html": "^0.3.2",
"sirv": "^3.0.1",
"std-env": "^3.8.1",
"strip-literal": "^3.0.0",
"ufo": "^1.5.4",
"unplugin": "^2.2.0",
"unplugin": "^2.2.1",
"unwasm": "^0.3.9",
"yoga-wasm-web": "^0.3.3"
},
@@ -113,13 +113,13 @@
"@nuxt/devtools": "2.2.1",
"@nuxt/devtools-ui-kit": "2.2.1",
"@nuxt/icon": "^1.11.0",
"@nuxt/image": "^1.9.0",
"@nuxt/image": "^1.10.0",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/test-utils": "3.17.1",
"@nuxt/ui": "^3.0.0",
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/i18n": "^9.3.1",
"@nuxtjs/i18n": "^9.3.2",
"@nuxtjs/tailwindcss": "^6.13.2",
"@unocss/nuxt": "^66.0.0",
"@unocss/preset-icons": "^66.0.0",
@@ -128,9 +128,9 @@
"bumpp": "^10.1.0",
"eslint": "9.22.0",
"jest-image-snapshot": "^6.4.0",
"nuxt": "^3.16.0",
"playwright": "^1.51.0",
"sass": "^1.85.1",
"nuxt": "^3.16.1",
"playwright": "^1.51.1",
"sass": "^1.86.0",
"sharp": "^0.33.5",
"typescript": "5.6.3",
"unocss": "^66.0.0",
Loading