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
Because an exact version is pinned for `composer/ca-bundle`, the `composer update` command cannot update the dependency to the latest version.
The command would not work for an individual dependency anyway due to the fact that there is no `composer.lock` file generated.
grunt.registerTask('certificates:update','Updates the Composer package responsible for root certificate updates.',function(){
1588
+
grunt.registerTask('certificates:upgrade-package','Upgrades the package responsible for supplying the certificate authority certificate store bundled with WordPress.',function(){
1588
1589
vardone=this.async();
1589
1590
varflags=this.flags;
1590
-
varargs=['update'];
1591
+
varspawn=require('child_process').spawnSync;
1592
+
varfs=require('fs');
1593
+
1594
+
// Ensure that `composer update` has been run and the dependency is installed.
0 commit comments