Skip to content

Commit

Permalink
Merge branch 'release/3.5.7' into v3
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Nov 14, 2024
2 parents 646bcf5 + 8248668 commit 7f2a905
Show file tree
Hide file tree
Showing 15 changed files with 279 additions and 275 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# SEOmatic Changelog

## 3.5.7 - 2024.11.14
### Fixed
* Fixed a parse error if running PHP < `8.0`

## 3.5.6 - 2024.11.12
### Added
* Added the **Site Alternate Name** property to Site Settings, used in the JSON-LD for the homepage, if the MainEntityOfPage is WebPage or WebSite ([#1482](https://github.com/nystudio107/craft-seomatic/issues/1482))
Expand All @@ -8,8 +12,8 @@
### Changed
* No longer do a potentially expensive query on page load for sections that have a massive number of entries ([#1526](https://github.com/nystudio107/craft-seomatic/issues/1526))
* If the current route is the homepage, set the `name` and `alternateName` JSON-LD for the `mainEntityOfPage` to `seomatic.site.siteName` and `seomatic.site.identity.genericAlternateName` respectively, rather than the `seomatic.meta.seoTitle` ([#1482](https://github.com/nystudio107/craft-seomatic/issues/1482))
* The SEO preview display in Content SEO will pull an entry from the specific Entry Type rather than just the first entry ([#1535](https://github.com/nystudio107/craft-seomatic/issues/1535))
* Text and Asset pull sources in Content SEO will now display only fields from the specific Entry Type rather than all fields for that Section ([#1535](https://github.com/nystudio107/craft-seomatic/issues/1535))
* The SEO preview display in Content SEO will pull an entry from the specific Entry Type rather than just the first entry. Note: If you have a custom `SeoElement` PHP class, it will require a very minor method signature change to continue working ([#1535](https://github.com/nystudio107/craft-seomatic/issues/1535))
* Text and Asset pull sources in Content SEO will now display only fields from the specific Entry Type rather than all fields for that Section. Note: If you have a custom `SeoElement` PHP class, it will require a very minor method signature change to continue working ([#1535](https://github.com/nystudio107/craft-seomatic/issues/1535))

### Fixed
* Fixed an issue where an exception would be thrown if the Campaign plugin was installed first, and then you newly installed SEOmatic ([#1530](https://github.com/nystudio107/craft-seomatic/issues/1530))
Expand Down
184 changes: 92 additions & 92 deletions buildchain/package-lock.json

Large diffs are not rendered by default.

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.6",
"version": "3.5.7",
"keywords": [
"craft",
"cms",
Expand Down
344 changes: 172 additions & 172 deletions docs/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/services/MetaBundles.php
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ public function createMetaBundleFromSeoElement(
$sourceModel,
int $sourceSiteId,
$baseConfig = null,
$syncConfig = false,
$syncConfig = false
) {
$metaBundle = null;
// Get the site settings and turn them into arrays
Expand Down

Large diffs are not rendered by default.

Binary file not shown.
2 changes: 2 additions & 0 deletions src/web/assets/dist/assets/seomatic-C8AB7bSt.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/web/assets/dist/assets/seomatic-C8AB7bSt.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file removed src/web/assets/dist/assets/seomatic-CR7hXxYp.css.gz
Binary file not shown.
2 changes: 0 additions & 2 deletions src/web/assets/dist/assets/seomatic-pGx7eHQv.js

This file was deleted.

1 change: 0 additions & 1 deletion src/web/assets/dist/assets/seomatic-pGx7eHQv.js.map

This file was deleted.

4 changes: 2 additions & 2 deletions src/web/assets/dist/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@
]
},
"src/js/seomatic.js": {
"file": "assets/seomatic-pGx7eHQv.js",
"file": "assets/seomatic-C8AB7bSt.js",
"name": "seomatic",
"src": "src/js/seomatic.js",
"isEntry": true,
"css": [
"assets/seomatic-CR7hXxYp.css"
"assets/seomatic-9d2V52Sp.css"
]
}
}
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 7f2a905

Please sign in to comment.