feat(manager/asdf): Support gohugo plugin including extended_ version (#18987)

This commit is contained in:
Jonatan Männchen 2022-11-18 19:01:32 +01:00 committed by GitHub
parent f31dacb8cd
commit 84bb830e00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 13 deletions

View file

@ -58,6 +58,7 @@ elixir 1.14.1
elm 0.19.1
erlang 25.1.2
gauche 0.9.12
gohugo extended_0.104.3
golang 1.19.2
haskell 9.4.2
helm 3.10.1
@ -180,6 +181,14 @@ dummy 1.2.3
versioning: 'semver',
depName: 'gauche',
},
{
currentValue: '0.104.3',
datasource: 'github-releases',
packageName: 'gohugoio/hugo',
versioning: 'semver',
depName: 'gohugo',
extractVersion: '^v(?<version>\\S+)',
},
{
currentValue: '1.19.2',
datasource: 'github-tags',

View file

@ -16,10 +16,27 @@ export type StaticTooling = Partial<PackageDependency> &
export type DynamicTooling = (version: string) => StaticTooling | undefined;
export const upgradeableTooling: Record<
string,
{ config: StaticTooling | DynamicTooling; asdfPluginUrl: string }
> = {
export type ToolingConfig = StaticTooling | DynamicTooling;
export interface ToolingDefinition {
config: ToolingConfig;
asdfPluginUrl: string;
}
const hugoDefinition: ToolingDefinition = {
// This plugin supports the names `hugo` & `gohugo`
asdfPluginUrl: 'https://github.com/NeoHsu/asdf-hugo',
config: (version) => ({
datasource: GithubReleasesDatasource.id,
packageName: 'gohugoio/hugo',
versioning: semverVersioning.id,
extractVersion: '^v(?<version>\\S+)',
// The asdf hugo plugin supports prefixing the version with
// `extended_`. Extended versions feature Sass support.
currentValue: version.replace(/^extended_/, ''),
}),
};
export const upgradeableTooling: Record<string, ToolingDefinition> = {
awscli: {
asdfPluginUrl: 'https://github.com/MetricMike/asdf-awscli',
config: {
@ -121,6 +138,7 @@ export const upgradeableTooling: Record<
versioning: semverVersioning.id,
},
},
gohugo: hugoDefinition,
golang: {
asdfPluginUrl: 'https://github.com/kennyp/asdf-golang',
config: {
@ -157,15 +175,7 @@ export const upgradeableTooling: Record<
extractVersion: '^v(?<version>\\S+)',
},
},
hugo: {
asdfPluginUrl: 'https://github.com/NeoHsu/asdf-hugo',
config: {
datasource: GithubReleasesDatasource.id,
packageName: 'gohugoio/hugo',
versioning: semverVersioning.id,
extractVersion: '^v(?<version>\\S+)',
},
},
hugo: hugoDefinition,
idris: {
asdfPluginUrl: 'https://github.com/asdf-community/asdf-idris',
config: {