Skip to content

v6.5.1

Choose a tag to compare

@ekassos ekassos released this 05 Sep 00:55
· 821 commits to main since this release
73252cb

Release Notes

This update provides important bug fixes and improvements.

Threads

Resolved Issues

  • Fixed: Users may be unable to copy the thread link when PingPong is embedded in an iframe due to Chromium browsers blocking websites from accessing the clipboard without explicit user permission at embed time. See Deprecating Permissions in Cross-Origin Iframes (The Chromium Projects) for more details.
    • PingPong will now display a modal dialog when it can't access the Clipboard API. Users will have to actively copy the link to their clipboard using Cmd+C / Ctrl+C.
    • To bypass this restriction on Chromium browsers and restore the previous copying behavior, add the allow="clipboard-write" attribute in your iframe definition, e.g.
    <iframe 
        style="border:0" 
        src="LINK_COPIED_FROM_PINGPONG" 
        height="1000px" 
        width="100%" 
        allow="clipboard-write"
    ></iframe> 
    

Deployment Information

Schema Upgrade Migration Script Permissions Update Task Definition Update Configuration Update
No No No No No

Deployment Details

  • N/A

Related PRs

  • fix/ Allow copying thread link when embedded in an iframe by @ekassos in #999

Full Changelog: 776-srv362-web220...777-srv362-web221