Jamie Magee

Results 252 comments of Jamie Magee

We should also look into automating the sync of Node.js release schedule data[^1] as part of this. No update script is required, but the file is synced from upstream[^2] [^1]:...

Yeah, I think so. I wasn't sure if you wanted to keep this issue open to discuss `node-schedule` work.

Built with tracks the most popular CDNs[^1]. The most popular, according to them, that we are missing are: 1. [jsDelivr](https://www.jsdelivr.com/) 2. [BootstrapCDN](https://www.bootstrapcdn.com/) 3. [jQuery CDN](https://releases.jquery.com/) 4. [UNPKG](https://unpkg.com/) There are a...

Investigating this a bit more the API to use is going to be `https://dev.azure.com/{organizationName}/_apis/distributedtask/tasks?allVersions=true`. This API returns all available versions for a task in the current organization. Not all task...

Versions in Azure Pipelines are immutable and pinning will not be necessary for this manager.

Work is complete on support for built-in Azure Pipelines tasks. Providing support for custom Azure Pipelines tasks is a little more complicated. Custom Azure Pipelines tasks come from the [Visual...

Additionally, custom tasks can be defined by `{publisherName}.{extensionName}.{taskId}.{taskName}`, or some variation of it. For example: - `id-az-pipeline.jmeter-perf-analyzer.custom-build-release-task.perfanalyzer` - `perfanalyzer` refer to the same task. The fully-qualified version is only required...

> Scrape -> new git repo -> use that as a datasource ? Yeah, that's likely going to be the solution.

And the query I've been using: `POST https://marketplace.visualstudio.com/_apis/public/gallery/extensionquery` ```json { "assetTypes": [ "Microsoft.VisualStudio.Services.Manifest" ], "filters": [ { "criteria": [ { "filterType": 5, "value": "Azure Pipelines" }, { "filterType": 8, "value":...

Sorry about that! It's difficult to tell which versions are deployed. There's no public API, only the `https://dev.azure.com/{organizationName}/_apis/distributedtask/tasks?allVersions=true` API on Azure DevOps itself. Unfortunately, that's not possible to use for...