Testing different versions in Playground

Hello ,

I know it’s possible to test a specific PR in the Playground by adding ?snapshot=refs/pull/16144/merge

But is it also possible to test specific versions? The version selector only shows major version, but I want to test 7.47, 7.48, 7.49 etc

Hello !

I don’t know a straight forward way of doing this, from the official playground…
Maybe official devs will help :slight_smile:


Otherwise, what you could do is finding the right commit with a search on the repo :

And then, you could either :

  • Use the hash with git checkout commitHash on your own clone of the repo, and test on a local playground
  • Use the date and display the commits of the following dates and choose the PR to be used with snapshot=refs/pull/16144/merge on the online playground
1 Like

You can set the version in the url like this:

5 Likes

Thank you!