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: unjs/unhead
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.0-rc.11
Choose a base ref
...
head repository: unjs/unhead
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.0-rc.12
Choose a head ref
  • 3 commits
  • 11 files changed
  • 1 contributor

Commits on Mar 13, 2025

  1. fix(useSeoMeta): broken required types

    harlan-zw committed Mar 13, 2025
    Copy the full SHA
    82ca799 View commit details
  2. chore: broken build

    harlan-zw committed Mar 13, 2025
    Copy the full SHA
    a72ee44 View commit details
  3. chore: release v2.0.0-rc.12

    harlan-zw committed Mar 13, 2025
    Copy the full SHA
    66e6dc7 View commit details
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "unhead-monorepo",
"type": "module",
"version": "2.0.0-rc.11",
"version": "2.0.0-rc.12",
"private": "true",
"packageManager": "pnpm@10.6.2",
"author": "Harlan Wilton <harlan@harlanzw.com>",
2 changes: 1 addition & 1 deletion packages/addons/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@unhead/addons",
"type": "module",
"version": "2.0.0-rc.11",
"version": "2.0.0-rc.12",
"author": "Harlan Wilton <harlan@harlanzw.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/harlan-zw",
2 changes: 1 addition & 1 deletion packages/angular/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@unhead/angular",
"type": "module",
"version": "2.0.0-rc.11",
"version": "2.0.0-rc.12",
"description": "Full-stack <head> manager built for Angular.",
"author": "Harlan Wilton <harlan@harlanzw.com>",
"license": "MIT",
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@unhead/react",
"type": "module",
"version": "2.0.0-rc.11",
"version": "2.0.0-rc.12",
"author": "Harlan Wilton <harlan@harlanzw.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/harlan-zw",
2 changes: 1 addition & 1 deletion packages/schema-org/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@unhead/schema-org",
"type": "module",
"version": "2.0.0-rc.11",
"version": "2.0.0-rc.12",
"description": "Unhead Schema.org for Simple and Automated Google Rich Results",
"author": "Harlan Wilton <harlan@harlanzw.com>",
"license": "MIT",
2 changes: 1 addition & 1 deletion packages/solid-js/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@unhead/solid-js",
"type": "module",
"version": "2.0.0-rc.11",
"version": "2.0.0-rc.12",
"author": "Harlan Wilton <harlan@harlanzw.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/harlan-zw",
2 changes: 1 addition & 1 deletion packages/svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@unhead/svelte",
"type": "module",
"version": "2.0.0-rc.11",
"version": "2.0.0-rc.12",
"author": "Harlan Wilton <harlan@harlanzw.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/harlan-zw",
2 changes: 1 addition & 1 deletion packages/unhead/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "unhead",
"type": "module",
"version": "2.0.0-rc.11",
"version": "2.0.0-rc.12",
"description": "Full-stack <head> manager built for any framework.",
"author": {
"name": "Harlan Wilton",
4 changes: 2 additions & 2 deletions packages/unhead/src/types/schema/metaFlat.ts
Original file line number Diff line number Diff line change
@@ -303,7 +303,7 @@ export interface MetaFlat extends MetaFlatArticle, MetaFlatBook, MetaFlatProfile
*
* @see https://developers.google.com/search/docs/crawling-indexing/special-tags
*/
google:
google?:
/**
* When users search for your site, Google Search results sometimes display a search box specific to your site,
* along with other direct links to your site. This tag tells Google not to show the sitelinks search box.
@@ -318,7 +318,7 @@ export interface MetaFlat extends MetaFlatArticle, MetaFlatBook, MetaFlatProfile
*
* @see https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag
*/
googlebot:
googlebot?:
/**
* When Google recognizes that the contents of a page aren't in the language that the user likely wants to read,
* Google may provide a translated title link and snippet in search results.
2 changes: 0 additions & 2 deletions packages/unhead/src/utils/meta.ts
Original file line number Diff line number Diff line change
@@ -194,7 +194,6 @@ export function unpackMeta<T extends MetaFlat>(input: T): Required<ResolvableHea

for (const [propKey, propValue] of Object.entries(v)) {
const metaKey = `${key}${propKey === 'url' ? '' : `:${propKey}`}`
// @ts-expect-error untyped
const meta = unpackMeta({ [metaKey]: propValue }) as UnheadMeta[]
// @ts-expect-error untyped
;(propKey === 'url' ? urlProps : otherProps).push(...meta)
@@ -204,7 +203,6 @@ export function unpackMeta<T extends MetaFlat>(input: T): Required<ResolvableHea
}
else {
extras.push(...(typeof v === 'string'
// @ts-expect-error untyped
? unpackMeta({ [key]: v }) as UnheadMeta[]
: handleObjectEntry(key, v)))
}
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@unhead/vue",
"type": "module",
"version": "2.0.0-rc.11",
"version": "2.0.0-rc.12",
"description": "Full-stack <head> manager built for Vue.",
"author": "Harlan Wilton <harlan@harlanzw.com>",
"license": "MIT",