Skip to content

3.9.6.1

Compare
Choose a tag to compare
@bastianallgeier bastianallgeier released this 31 Jul 10:54
· 4247 commits to main since this release
ee2669e

🎉 Features

  • The Content-Security-Policy: frame-ancestors header sent by the Panel (introduced in 3.9.6) can now be customized with an option if needed: #5431

    return [
      'panel' => [
        // allow frame embedding from the same domain
        'frameAncestors' => true,
    
        // allow frame embedding from the same *and* from the specified domains
        'frameAncestors' => ['*.example.com', 'https://example.com'],
    
        // allow frame embedding on any domain (not recommended)
        'frameAncestors' => '*',
      ]
    ];

🐛 Bug fixes

  • Search component broken when query is null #5428