Aaron Parker

Results 174 comments of Aaron Parker

`AWSCLI` isn't using the internal `Get-GitHubRepoRelease` function which supports tokens. I'll have to update that app

Evergreen is using the channels feed provided by Google. I don't think that Google publishes an early stable as a channel: ```powershell (irm -uri "https://versionhistory.googleapis.com/v1/chrome/platforms/win64/channels").channels | fl name : chrome/platforms/win64/channels/extended...

For reference, here's what Evergreen currently returns: ```powershell $ Get-EvergreenApp GoogleChrome | ft Version Architecture Channel Type URI ------- ------------ ------- ---- --- 118.0.5993.54 x64 beta msi https://dl.google.com/dl/chrome/install/beta/googlechromebetastandaloneenterprise64.msi 118.0.5993.54 x86...

Unfortunately there's no release date in the update feed - that would be ideal. There may be a secondary feed that could be use to find the dates.

The issue is that `119` is listed in the stable channel at the moment: https://versionhistory.googleapis.com/v1/chrome/platforms/win64/channels/stable/versions/all/releases. We need to determine whether there are additional properties in the update feed to filter...

These updated queries might work for providing the required version data: * Extended: https://chromiumdash.appspot.com/fetch_releases?channel=Extended&platform=Windows&num=6&offset=0 * Stable: https://chromiumdash.appspot.com/fetch_releases?channel=Stable&platform=Windows&num=6&offset=0 * Beta: https://chromiumdash.appspot.com/fetch_releases?channel=Beta&platform=Windows&num=6&offset=0 * Dev: https://chromiumdash.appspot.com/fetch_releases?channel=Dev&platform=Windows&num=6&offset=0 * Canary: https://chromiumdash.appspot.com/fetch_releases?channel=Canary&platform=Windows&num=6&offset=0 Time stamp data *...

These updated URLs though, won't change the status of this issue - there is no Extended installer and there doesn't appear to be a way to return a URL with...

Here's an update to `GoogleChrome` that includes the start date for that channel that can be used as an additional data point for version compare, particularly for the Extended channel...

Should Mendeley Desktop be removed after this is added, or stay in Evergreen?

The API repo is private at the moment, but I can open it up. The API is written in Javascript, and I'm not an experience Javascript developer. One thing I...