Skip to content

Commit

Permalink
Merge branch 'release/3.5.14' into v3
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Jan 23, 2025
2 parents 980e3e6 + efd731d commit 30d50a3
Show file tree
Hide file tree
Showing 19 changed files with 1,328 additions and 1,324 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/code-analysis.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Code Analysis

on:
pull_request: null
pull_request:
pull_request_review:
types: [ submitted, edited ]
push:
branches:
- develop
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# SEOmatic Changelog

## 3.5.14 - 2025.01.23
### Changed
* Removed leading spaces from the `robots.txt` template, [though Google ignores whitespace](https://developers.google.com/search/docs/crawling-indexing/robots/robots_txt#syntax)

## 3.5.13 - 2025.01.16
### Added
* Added a `ModifySitemapQueryEvent` to allow the modification of the element query used to generate a sitemap ([#1553](https://github.com/nystudio107/craft-seomatic/issues/1553))
Expand Down
200 changes: 100 additions & 100 deletions buildchain/package-lock.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions buildchain/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ export default defineConfig(({command}) => ({
preserveSymlinks: true,
},
server: {
cors: true, // Allow cross-origin requests -- https://github.com/vitejs/vite/security/advisories/GHSA-vg6x-rcgg-rjx6
fs: {
strict: false
},
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nystudio107/craft-seomatic",
"description": "SEOmatic facilitates modern SEO best practices & implementation for Craft CMS 3. It is a turnkey SEO system that is comprehensive, powerful, and flexible.",
"type": "craft-plugin",
"version": "3.5.13",
"version": "3.5.14",
"keywords": [
"craft",
"cms",
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ SEOmatic is a comprehensive, powerful, and flexible turnkey SEO system that faci
- Various utilities for managing additional meta tags, text excerpts, and more.

::: tip Use Retour for 404 Redirects
SEOmatic _does not_ cover is 404 redirects; for that we recommend our [Retour plugin](https://github.com/nystudio107/craft-retour).
SEOmatic _does not_ handle 404 redirects; for that we recommend our [Retour plugin](https://github.com/nystudio107/craft-retour).
:::

## Used By
Expand Down
629 changes: 280 additions & 349 deletions docs/package-lock.json

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions src/templates/_frontend/pages/robots.twig
Original file line number Diff line number Diff line change
Expand Up @@ -5,37 +5,37 @@

{% case "live" %}

# live - don't allow web crawlers to index cpresources/ or vendor/
# live - don't allow web crawlers to index cpresources/ or vendor/

User-agent: *
Disallow: /cpresources/
Disallow: /vendor/
Disallow: /.env
Disallow: /cache/
User-agent: *
Disallow: /cpresources/
Disallow: /vendor/
Disallow: /.env
Disallow: /cache/

{% case "staging" %}

# staging - disallow all
# staging - disallow all

User-agent: *
Disallow: /
User-agent: *
Disallow: /

{% case "local" %}

# local - disallow all
# local - disallow all

User-agent: *
Disallow: /
User-agent: *
Disallow: /

{% default %}

# default - don't allow web crawlers to index cpresources/ or vendor/
# default - don't allow web crawlers to index cpresources/ or vendor/

User-agent: *
Disallow: /cpresources/
Disallow: /vendor/
Disallow: /.env
Disallow: /cache/
User-agent: *
Disallow: /cpresources/
Disallow: /vendor/
Disallow: /.env
Disallow: /cache/

{% endswitch %}

Expand Down
851 changes: 0 additions & 851 deletions src/web/assets/dist/assets/dashboard-7S6CGMhR.js

This file was deleted.

Binary file removed src/web/assets/dist/assets/dashboard-7S6CGMhR.js.gz
Binary file not shown.
1 change: 0 additions & 1 deletion src/web/assets/dist/assets/dashboard-7S6CGMhR.js.map

This file was deleted.

Binary file not shown.
917 changes: 917 additions & 0 deletions src/web/assets/dist/assets/dashboard-Bldjd6r5.js

Large diffs are not rendered by default.

Binary file not shown.
1 change: 1 addition & 0 deletions src/web/assets/dist/assets/dashboard-Bldjd6r5.js.map

Large diffs are not rendered by default.

Binary file not shown.
2 changes: 1 addition & 1 deletion src/web/assets/dist/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
]
},
"src/js/dashboard.js": {
"file": "assets/dashboard-7S6CGMhR.js",
"file": "assets/dashboard-Bldjd6r5.js",
"name": "dashboard",
"src": "src/js/dashboard.js",
"isEntry": true,
Expand Down
Binary file modified src/web/assets/dist/manifest.json.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion src/web/assets/dist/stats.html

Large diffs are not rendered by default.

0 comments on commit 30d50a3

Please sign in to comment.