Hello team, since last year I was having trouble with deployments using remote storage where there is a symlink to a folder. I had to update prefect for another issue and since then it stopped following symlinks, so all the files in this folder were not copied. This was not an urgent issue because we use symlink to a common folder where we have all common includes between different flows, and they changed rarely in our code base, but we prepare a new release so now we change them a lot (so it is a pain to copy this files manually to the remote storage). I did some investigation and it looks like symlinks were broken when
https://github.com/PrefectHQ/prefect/pull/7336 was implemented to enable support for hidden files. The implementation was changed from using glob.glob to now use pathlib's Path.rglob which is known to handle symlinks differently. Any idea was this done on purpose and you do not want to follow symlinks when deploying?