Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## v10.0.0 (2026-01-25)

### What's new
- Statamic v6 support. 325e6d2 by @robdekort
- Hide some canonical fields. 840fd0a1 by @robdekort
- Update revoke consent instructions. 64ebe45a by @robdekort
- Use share megaphone icon for OG action. dd9c3288 by @robdekort

## v9.0.0 (2025-12-23)

### What's new
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
}
},
"require": {
"statamic/cms": "^5.0"
"statamic/cms": "^6.0"
}
}
2 changes: 1 addition & 1 deletion resources/fieldsets/globals_seo_trackers_consent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ fields:
columns: 1
rows: 1
display: 'Revoke consent before'
instructions: 'Revoke all users consent before this date and time. Use this when you changed consent settings, added scripts or changed trackers, or when your privacy policy has changed. The consent banner will reappear. Expects a time in the timezone configured for your application.'
instructions: 'Revoke all users consent before this date and time. Use this when you changed consent settings, added scripts or changed trackers, or when your privacy policy has changed. The consent banner will reappear.'
instructions_position: below
type: date
width: 66
Expand Down
4 changes: 2 additions & 2 deletions resources/fieldsets/seo_advanced.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ fields:
field: common.entry
config:
localizable: true
listable: hidden
listable: false
display: 'Canonical URL'
width: 66
instructions: 'If this is an entry with duplicate content. Enter the original URL for this content.'
Expand All @@ -54,7 +54,7 @@ fields:
display: 'Canonical URL'
type: text
icon: text
listable: hidden
listable: false
localizable: true
validate:
- 'required_if:seo_canonical_type,external'
Expand Down
1 change: 1 addition & 0 deletions src/Actions/GenerateSocialImages.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
class GenerateSocialImages extends Action
{
public $available_collections = array();
public $icon = 'share-mega-phone';

public function __construct() {
if (GlobalSet::findByHandle('seo')->inDefaultSite()->get('use_social_image_generation') && GlobalSet::findByHandle('seo')->inDefaultSite()->get('social_images_collections')) {
Expand Down