SharePoint online PnP PowerShell get file versions history

Hi All,

I am trying below command to get the File Versions. I am getting all versions with this command.
Command:
$versions = Get-PnPProperty -ClientObject $File -Property Versions
ForEach($List in $Lists)
{
$version.VersionLabel
}

I need to get Versions history of file. Means I want which data has been updated in specific versions.
Is it possible to get all columns data with specific version. Which metadata is update that can get which is not updated so that will be blank. So Version history we want of specific version.

Thanks,
Harish Patil