You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As you can see, while the lock mentions 3.5.2, the actual URLs don't include any version information. If I use the dist URL, I get 3.6.0, not 3.5.2. The timestamp has no effect.
wpackagist builds its packages from the information at https://plugins.svn.wordpress.org/. The auth0 plugin release in there just includes trunk, no tag information.
This means that it's impossible to download older versions of the plugin, either from Wordpress itself or via wpackagist.
Would it be possible to push release tags into the wordpress plugins svn repo so that versions can be properly managed through it?
This is pretty critical for us; currently we cannot deploy our service as we can't rely on which version of the auth0 plugin we are going to get.
The text was updated successfully, but these errors were encountered:
I've resolved this in our case by referencing the git repository directly in my composer.json, but this will still affect anyone trying to use it via the official plugin repository.
@Floppy - Thanks for bringing this up. I noticed a while back that the WP.org repo listing doesn't have older versions listed and have it on my list to check that. We use a Jenkins script to deploy from master on this repo and we should be able to adjust that to push the release tag as well. I have a fixit release that needs to come out here soon so I'll see if I can add tags to the deployment process before that happens.
DISCLAIMER: I'm not 100% sure where the root cause of this problem is - I think it's here, but it might not be.
We use composer to manage our Wordpress plugins, including Auth0. We are using it via wpackagist in order to do so. The plugin is listed here: https://wpackagist.org/search?q=auth0&type=any&search=
Our composer lockfile specifies 3.5.2 - we'll upgrade to 3.6.0 in time, but when we've tested it properly with our setup.
The composer lockfile specifies this:
As you can see, while the lock mentions 3.5.2, the actual URLs don't include any version information. If I use the
dist
URL, I get 3.6.0, not 3.5.2. The timestamp has no effect.wpackagist builds its packages from the information at https://plugins.svn.wordpress.org/. The auth0 plugin release in there just includes trunk, no tag information.
This means that it's impossible to download older versions of the plugin, either from Wordpress itself or via wpackagist.
Would it be possible to push release tags into the wordpress plugins svn repo so that versions can be properly managed through it?
This is pretty critical for us; currently we cannot deploy our service as we can't rely on which version of the auth0 plugin we are going to get.
The text was updated successfully, but these errors were encountered: