Releases: harlan-zw/nuxt-seo-utils
v6.0.3
🐞 Bug Fixes
- Give route rules
seoMeta
andhead
higher priority - by @harlan-zw (c0592)
View changes on GitHub
v6.0.2
v6.0.1
🐞 Bug Fixes
- Resolve
app.head.seoMeta
types absolutely - by @harlan-zw (55269)
View changes on GitHub
v6.0.0
Introduction
The v5 major of Nuxt Schema.org is a simple release to remove deprecations and add support for the Nuxt SEO v2 stable.
⚠️ Breaking Features
Site Config v3
Nuxt Site Config is a module used internally by Nuxt Schema.org.
The major update to v3.0.0 shouldn't have any direct effect on your site, however, you may want to double-check
the breaking changes.
Changelog
🚨 Breaking Changes
- Upgrade to v3 nuxt site config - by @harlan-zw (cb063)
View changes on GitHub
v5.0.2
🐞 Bug Fixes
- Add
#seo-utils
alias - by @harlan-zw (34fd5) - breadcrumbs: Avoid using route name as a fallback label - by @harlan-zw (12737)
View changes on GitHub
v5.0.1
🐞 Bug Fixes
nuxt-i18n-micro
integration - by @Rigo-m in #25 (1d60e)- breadcrumbs:
- Support reactive props - by @harlan-zw (5cf1c)
- Avoid using route names that are wildcard - by @harlan-zw (339a2)
View changes on GitHub
v5.0.0
Module Renamed To Nuxt Seo Utils
The module has been renamed to nuxt-seo-utils
to better reflect the functionality it provides.
The original name of the module was nuxt-seo-experiments
, hinting that the features weren't stable and that they would land in the Nuxt core. This is no longer the case, and the module has been renamed to reflect this.
With this rename the module scope changes to include the random functionality that Nuxt SEO was previously providing:
useBreadcrumbItems()
composable- Config:
redirectToCanonicalSiteUrl
- Config:
fallbackTitle
- Config:
automaticDefaults
The new docs will reflect these.
🚨 Breaking Changes
- Migrate module to
nuxt-seo-utils
- by @harlan-zw (10148)
View changes on GitHub
v4.0.1
🐞 Bug Fixes
sizes
missing from icons - by @harlan-zw (04e45)- Migrate to
app.head.seoMeta
to avoid type issues - by @harlan-zw (4905b)
View changes on GitHub
v4.0.0
Nuxt SEO Experiments v4 🎉
This new stable release for Nuxt SEO experiments introduces many stability improvements and support for dark and light icons.
Dark / Light Mode Icons
When you have a site that supports both light and dark modes, it can make sense to serve two separate icons depending on which mode is selected. With Nuxt SEO experiments you can now opt-in to this feature by simply renaming your icons as either icon-light
or icon-dark
.
<link rel="icon" href="/icon-dark.png" media="(prefers-color-scheme: dark)" />
<link rel="icon" href="/icon-light.png" media="(prefers-color-scheme: light)" />
Learn more on the docs.
Changelog
🚨 Breaking Changes
- Nuxt-site-config v2 - by @harlan-zw (ae73d)
🚀 Features
- Support
.dark
,.light
icons - by @harlan-zw (e829c)
🐞 Bug Fixes
- Maybe resolve missing
unhead
dep error - by @harlan-zw (9edcf) - Ensure logo links include
app.baseURL
- by @harlan-zw (51486) - Empty image url breaking page - by @b-mounir-dev in #21 (aa458)
- No longer set default
en
lang - by @harlan-zw (941c3) - Ensure plugin types are generated - by @harlan-zw (fd2a8)
- Broken type
seoMeta
types - by @harlan-zw (06ed9) - Avoid redundant
favicon.ico
link - by @harlan-zw (830ae) - Broken svg icon
link
- by @harlan-zw (9950e)
View changes on GitHub
v4.0.0-rc.13
No significant changes