Skip to content
This repository has been archived by the owner on Jun 15, 2022. It is now read-only.

Please release for 2.0.0-beta.3 #58

Closed
jacobq opened this issue Mar 12, 2018 · 1 comment
Closed

Please release for 2.0.0-beta.3 #58

jacobq opened this issue Mar 12, 2018 · 1 comment

Comments

@jacobq
Copy link

jacobq commented Mar 12, 2018

The following current electron versions do not currently have corresponding electron-prebuilt-compile versions:

@paulcbetts Could you please publish releases for these soon? (My app is impacted by the race condition in 2.0.0-beta.1.) I feel bad pestering people to work for me for free, especially other FOSS folks. If I can help, e.g. with #55, please let me know. I'm also sending a small 💵 thank you via PayPal (using your GH email) 😉.

In case it's helpful, here's a script that lists missing versions:

// npm install npm-registry-package-info
const pkginfo = require('npm-registry-package-info');
 
pkginfo({
  packages: ['electron', 'electron-prebuilt-compile']
}, (error, data) => {
  if (error) {
    throw error;
  }
  const { meta, data: results, failures } = data;
  console.log(meta, failures);
  const eVersions = Object.keys(results.electron.versions);
  const epcVersions = Object.keys(results['electron-prebuilt-compile'].versions);
  if (eVersions instanceof Array && epcVersions instanceof Array) {
      missingVersions = eVersions
        .map(ev => epcVersions.find(epcv => epcv === ev) ? null : ev)
        .filter(Boolean);
      console.log('Could not find electron-prebuilt-compile match for the following electron versions:', missingVersions);
  }
  else {
    console.error('Could not fetch versions', eVersions, epcVersions);
  }
});

Output:

Could not find electron-prebuilt-compile match for the following electron versions: [ '0.1.0',
  '0.1.1',
  '0.1.2',
  '0.2.0',
  '0.2.1',
  '0.3.0',
  '0.4.0',
  '0.4.1',
  '1.3.3',
  '1.3.4',
  '1.4.8',
  '1.5.0',
  '1.3.14',
  '1.4.16',
  '1.3.15',
  '1.7.10',
  '1.7.12',
  '1.6.17',
  '2.0.0-beta.2',
  '1.8.3',
  '2.0.0-beta.3' ]
@jacobq
Copy link
Author

jacobq commented Mar 16, 2018

Closing since now outdated

$ npm info electron-prebuilt-compile@beta version
2.0.0-beta.4

@jacobq jacobq closed this as completed Mar 16, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant