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/robots
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.2.4
Choose a base ref
...
head repository: nuxt-modules/robots
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.2.5
Choose a head ref
  • 5 commits
  • 7 files changed
  • 2 contributors

Commits on Mar 3, 2025

  1. doc: broken example

    According to the configuration docs it shall be Allow not Disallow
    HP8585 authored Mar 3, 2025
    Copy the full SHA
    3537549 View commit details

Commits on Mar 5, 2025

  1. chore: bump deps

    harlan-zw committed Mar 5, 2025
    Copy the full SHA
    ce585d5 View commit details
  2. fix: Unhead v2 compatibility

    harlan-zw committed Mar 5, 2025
    Copy the full SHA
    efb99be View commit details
  3. chore: broken build

    harlan-zw committed Mar 5, 2025
    Copy the full SHA
    a538415 View commit details
  4. chore: release v5.2.5

    harlan-zw committed Mar 5, 2025
    Copy the full SHA
    a154232 View commit details
Showing with 1,179 additions and 518 deletions.
  1. +3 −3 client/package.json
  2. +1 −1 docs/content/2.guides/1.robot-recipes.md
  3. +14 −14 package.json
  4. +1,157 −496 pnpm-lock.yaml
  5. +1 −1 src/module.ts
  6. +1 −1 src/runtime/app/composables/useRobotsRule.ts
  7. +2 −2 src/runtime/app/plugins/robot-meta.server.ts
6 changes: 3 additions & 3 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@
"name": "@nuxtjs/robots-client",
"private": true,
"devDependencies": {
"@iconify-json/carbon": "^1.2.7",
"@nuxt/devtools-kit": "^2.1.0",
"@iconify-json/carbon": "^1.2.8",
"@nuxt/devtools-kit": "^2.1.3",
"@nuxt/devtools-ui-kit": "latest",
"@nuxt/kit": "^3.15.4",
"floating-vue": "5.2.2",
"nuxt": "latest",
"shiki": "^3.0.0",
"shiki": "^3.1.0",
"vue": "3.5.13",
"vue-router": "latest"
}
2 changes: 1 addition & 1 deletion docs/content/2.guides/1.robot-recipes.md
Original file line number Diff line number Diff line change
@@ -70,7 +70,7 @@ Disallow: /user-profiles
# Allow social crawlers
User-agent: facebookexternalhit
User-agent: Twitterbot
Disallow: /user-profiles
Allow: /user-profiles
```

See [Config using Robots.txt](/docs/robots/guides/robots-txt) for more information.
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@nuxtjs/robots",
"type": "module",
"version": "5.2.4",
"packageManager": "pnpm@10.4.1",
"version": "5.2.5",
"packageManager": "pnpm@10.5.2",
"description": "Tame the robots crawling and indexing your Nuxt site with ease.",
"author": {
"name": "Harlan Wilton",
@@ -76,41 +76,41 @@
"@nuxt/kit": "^3.15.4",
"consola": "^3.4.0",
"defu": "^6.1.4",
"nuxt-site-config": "^3.1.0",
"nuxt-site-config": "^3.1.3",
"pathe": "^2.0.3",
"pkg-types": "^1.3.1",
"pkg-types": "^2.1.0",
"sirv": "^3.0.1",
"std-env": "^3.8.0",
"std-env": "^3.8.1",
"ufo": "^1.5.4"
},
"devDependencies": {
"@antfu/eslint-config": "^4.3.0",
"@antfu/eslint-config": "^4.5.1",
"@headlessui/vue": "^1.7.23",
"@iconify-json/carbon": "^1.2.7",
"@iconify-json/carbon": "^1.2.8",
"@iconify-json/logos": "^1.2.4",
"@iconify-json/ri": "^1.2.5",
"@iconify-json/tabler": "^1.2.16",
"@nuxt/content": "^3.1.1",
"@nuxt/content": "^3.2.2",
"@nuxt/content-v2": "npm:@nuxt/content@2.13.4",
"@nuxt/devtools-ui-kit": "^2.1.0",
"@nuxt/devtools-ui-kit": "^2.1.3",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/test-utils": "^3.15.4",
"@nuxt/test-utils": "^3.17.1",
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/i18n": "^9.2.0",
"@nuxtjs/i18n": "^9.2.1",
"@unocss/nuxt": "^66.0.0",
"@unocss/preset-icons": "^66.0.0",
"@unocss/preset-uno": "^66.0.0",
"@unocss/runtime": "^66.0.0",
"@vueuse/nuxt": "^12.7.0",
"@vueuse/nuxt": "^12.8.0",
"bumpp": "^10.0.3",
"eslint": "^9.20.1",
"eslint": "^9.21.0",
"execa": "^9.5.2",
"firebase-functions": "^6.3.2",
"nuxt": "^3.15.4",
"typescript": "5.6.3",
"unocss": "^66.0.0",
"vitest": "^3.0.6",
"vitest": "^3.0.7",
"vue": "3.5.13",
"vue-router": "^4.5.0"
},
Loading