-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ben Parizek <bparizek@uschamber.com>
- Loading branch information
1 parent
4132ea1
commit 0a7ef9d
Showing
17 changed files
with
85 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -318,6 +318,7 @@ module.exports = { | |
'data-studio', | ||
'email', | ||
'redirects', | ||
'sitemaps', | ||
], | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
--- | ||
date: 2023-09-25 | ||
description: Sprout Sitemaps update guide. | ||
--- | ||
|
||
# Sitemaps | ||
|
||
## v4.44.444 - September 25, 2023 | ||
|
||
This release adds Craft 4 support and a few new features such as Content Query Sitemaps and improved navigation. | ||
|
||
Sitemaps now has a Lite and Pro version. Existing users have been given a new license key for Sitemaps Pro. | ||
|
||
### License Migrations | ||
|
||
Existing Sprout Sitemaps license holders have received a new Sprout Sitemaps Pro license in the same Craft Console account for the old Sprout Sitemaps license key. Once upgraded to Craft 4, you will need to manually add your new licenses key to your Craft installation. Your new Sitemaps license will have the same expiration as the old license and you will need to manually re-select the auto-renew option in your Craft Console. | ||
|
||
### Breaking Changes | ||
|
||
- See the general [upgrade guide][#400-framework] for Sprout Modules to 4.0 | ||
- Lite Edition allows managing up to 5 Content and Content Query Sitemaps per Site | ||
- Custom Sitemap Metadata integration has been updated from `barrelstrength\sproutbaseuris\services\UrlEnabledSections::EVENT_REGISTER_URL_ENABLED_SECTION_TYPES` => `BarrelStrength\Sprout\sitemaps\sitemapmetadata\SitemapMetadata::EVENT_REGISTER_ELEMENT_SITEMAP_METADATA` | ||
|
||
### Notable Changes | ||
|
||
#### Generated URLs for individual sitemaps have changed | ||
|
||
Your `/sitemap.xml` Sitemap index exists at the same URL, however, the URLs listed in the Sitemap Index have changed. | ||
|
||
In Craft 3, Content Sitemaps displayed with a 12 character key: | ||
|
||
``` xml | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | ||
<sitemap> | ||
<loc>{{ siteUrl }}sitemap-G76D5Oizt4fH-1.xml</loc> | ||
<lastmod>{{ now|date('Y-m-d') }}</lastmod> | ||
</sitemap> | ||
<sitemap> | ||
<loc>{{ siteUrl }}sitemap-9O2U0q1gdvPM-1.xml</loc> | ||
<lastmod>{{ now|date('Y-m-d') }}</lastmod> | ||
</sitemap> | ||
</sitemapindex> | ||
``` | ||
|
||
In Craft 4, Content Sitemaps display using the Sitemap Metadata UID key: | ||
|
||
``` xml | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | ||
<sitemap> | ||
<loc>{{ siteUrl }}sitemap-0a0c9e98-fe8b-430a-9b47-f3e521dd048e-1.xml</loc> | ||
<lastmod>{{ now|date('Y-m-d') }}</lastmod> | ||
</sitemap> | ||
<sitemap> | ||
<loc>{{ siteUrl }}sitemap-0a0c9e98-fe8b-430a-9b47-f3e521dd048e-2.xml</loc> | ||
<lastmod>{{ now|date('Y-m-d') }}</lastmod> | ||
</sitemap> | ||
</sitemapindex> | ||
``` | ||
|
||
[#400-framework]: ../update-guides/sprout.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters