Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(rubygems): fallback to info when version fails #7323

Merged
merged 14 commits into from Sep 22, 2020
Merged
15 changes: 14 additions & 1 deletion lib/datasource/rubygems/get.ts
Expand Up @@ -52,7 +52,7 @@ export async function getDependency(

const versions = (await fetch(dependency, registry, VERSIONS_PATH)) || [];
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doesn't this request throw ? If so then everything below it is not executed.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i thought it doesnt because of the || if not than i can add a try catch around it

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just to be sure a try catch would look like the following right? I can implement this if you want me to.

let versions = []
try {
 versions = await fetch(dependency, registry, VERSIONS_PATH);
} catch {
// all of my code
}


const releases = versions.map(
let releases = versions.map(
({
number: version,
platform: rubyPlatform,
Expand All @@ -68,6 +68,19 @@ export async function getDependency(
})
);

if (versions.length === 0 && info.version) {
logger.warn('falling back to the version from the info endpoint');
releases = [
{
version: info.version,
rubyPlatform: info.platform,
releaseTimestamp: null,
rubyVersion: null,
rubygemsVersion: '\u003e= 0',
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the meaning of this value?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it was the default value from the versions endpoint its basically >= 0

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

but we can remove it I just wanted to match the signature from the "default" case

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, remove it

},
];
}

return {
releases,
homepage: info.homepage_uri,
Expand Down