We used to be able to find the latest release by simply going to https://github.com/juice-shop/juice-shop/releases/latest, following the redirect to the latest tag release, and grepping the correct download link on the page. This is no longer the case, since the page returned does not contain the asset list (this is now fetched in a separate request).
The work around is to use the expanded asset list instead of the /releases/latest page, e.g.:
We used to be able to find the latest release by simply going to https://github.com/juice-shop/juice-shop/releases/latest, following the redirect to the latest tag release, and grepping the correct download link on the page. This is no longer the case, since the page returned does not contain the asset list (this is now fetched in a separate request).
The work around is to use the expanded asset list instead of the /releases/latest page, e.g.:
https://github.com/juice-shop/juice-shop/releases/expanded_assets/v14.3.0
The issue with this approach is, of course, it doesn't auto-update to the latest release.