renovate 42.54.0 → 42.54.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -26,6 +26,12 @@ exports.presets = {
|
|
|
26
26
|
packageRules: [
|
|
27
27
|
{
|
|
28
28
|
changelogUrl: '{{sourceUrl}}/compare/{{currentDigest}}..{{newDigest}}',
|
|
29
|
+
matchDatasources: [
|
|
30
|
+
'git-refs',
|
|
31
|
+
'git-tags',
|
|
32
|
+
'github-releases',
|
|
33
|
+
'github-tags',
|
|
34
|
+
],
|
|
29
35
|
matchSourceUrls: ['https://github.com/**'],
|
|
30
36
|
matchUpdateTypes: ['digest'],
|
|
31
37
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"helpers.js","sourceRoot":"","sources":["../../../../lib/config/presets/internal/helpers.ts"],"names":[],"mappings":";;;AAEA,+EAA+E;AAElE,QAAA,OAAO,GAA2B;IAC7C,qBAAqB,EAAE;QACrB,WAAW,EAAE,2CAA2C;QACxD,YAAY,EAAE;YACZ;gBACE,OAAO,EAAE,KAAK;gBACd,iBAAiB,EAAE,CAAC,aAAa,CAAC;gBAClC,gBAAgB,EAAE,CAAC,OAAO,CAAC;aAC5B;SACF;KACF;IACD,oBAAoB,EAAE;QACpB,WAAW,EAAE,wDAAwD;QACrE,OAAO,EAAE,CAAC,8BAA8B,CAAC;KAC1C;IACD,kBAAkB,EAAE;QAClB,WAAW,EAAE,sDAAsD;QACnE,OAAO,EAAE,CAAC,4BAA4B,CAAC;KACxC;IACD,sBAAsB,EAAE;QACtB,WAAW,EACT,wHAAwH;QAC1H,YAAY,EAAE;YACZ;gBACE,YAAY,EAAE,wDAAwD;gBACtE,eAAe,EAAE,CAAC,uBAAuB,CAAC;gBAC1C,gBAAgB,EAAE,CAAC,QAAQ,CAAC;aAC7B;SACF;KACF;IACD,wBAAwB,EAAE;QACxB,WAAW,EAAE,6DAA6D;QAC1E,YAAY,EAAE;YACZ;gBACE,aAAa,EAAE,CAAC,OAAO,CAAC;gBACxB,+DAA+D;gBAC/D,gBAAgB,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,OAAO,CAAC;gBAC7C,iBAAiB,EAAE;oBACjB,MAAM,EACJ,sRAAsR;iBACzR;aACF;SACF;KACF;IACD,mBAAmB,EAAE;QACnB,WAAW,EAAE,yDAAyD;QACtE,YAAY,EAAE;YACZ;gBACE,aAAa,EAAE,CAAC,OAAO,CAAC;gBACxB,iBAAiB,EAAE;oBACjB,OAAO,EACL,qIAAqI;iBACxI;aACF;SACF;KACF;IACD,sBAAsB,EAAE;QACtB,WAAW,EAAE,8BAA8B;QAC3C,YAAY,EAAE;YACZ;gBACE,aAAa,EAAE,CAAC,QAAQ,CAAC;gBACzB,UAAU,EAAE,IAAI;aACjB;SACF;KACF;IACD,8BAA8B,EAAE;QAC9B,WAAW,EAAE,iDAAiD;QAC9D,YAAY,EAAE;YACZ;gBACE,OAAO,EAAE,CAAC,gCAAgC,CAAC;gBAC3C,cAAc,EAAE,oCAAoC;gBACpD,UAAU,EACR,+DAA+D;aAClE;SACF;KACF;CACF,CAAC","sourcesContent":["import type { Preset } from '../types';\n\n/* eslint sort-keys: [\"error\", \"asc\", {caseSensitive: false, natural: true}] */\n\nexport const presets: Record<string, Preset> = {\n disableTypesNodeMajor: {\n description: 'Disable `major` updates to `@types/node`.',\n packageRules: [\n {\n enabled: false,\n matchPackageNames: ['@types/node'],\n matchUpdateTypes: ['major'],\n },\n ],\n },\n followTypescriptNext: {\n description: 'Keep `typescript` version in sync with the `next` tag.',\n extends: [':followTag(typescript, next)'],\n },\n followTypescriptRc: {\n description: 'Keep `typescript` version in sync with the `rc` tag.',\n extends: [':followTag(typescript, rc)'],\n },\n githubDigestChangelogs: {\n description:\n 'Ensure that every dependency pinned by digest and sourced from GitHub.com contains a link to the commit-to-commit diff',\n packageRules: [\n {\n changelogUrl: '{{sourceUrl}}/compare/{{currentDigest}}..{{newDigest}}',\n matchSourceUrls: ['https://github.com/**'],\n matchUpdateTypes: ['digest'],\n },\n ],\n },\n goXPackagesChangelogLink: {\n description: 'Correctly link to the source code for golang.org/x packages',\n packageRules: [\n {\n matchManagers: ['gomod'],\n // NOTE that digests are not supported with the below diff view\n matchUpdateTypes: ['major', 'minor', 'patch'],\n prBodyDefinitions: {\n Change:\n \"{{#if (containsString depName 'golang.org/x/')}}[`{{{displayFrom}}}` -> `{{{displayTo}}}`](https://cs.opensource.google/{{{replace '^golang\\\\.org' 'go' depName}}}/+/refs/tags/{{{currentValue}}}...refs/tags/{{{newValue}}}){{else}}`{{{displayFrom}}}` -> `{{{displayTo}}}`{{/if}}\",\n },\n },\n ],\n },\n goXPackagesNameLink: {\n description: \"Link to pkg.go.dev/... for golang.org/x packages' title\",\n packageRules: [\n {\n matchManagers: ['gomod'],\n prBodyDefinitions: {\n Package:\n \"{{#if (containsString depName 'golang.org/x/')}}[{{{depName}}}](https://pkg.go.dev/{{{depName}}}){{else}}{{{depNameLinked}}}{{/if}}\",\n },\n },\n ],\n },\n pinGitHubActionDigests: {\n description: 'Pin `github-action` digests.',\n packageRules: [\n {\n matchDepTypes: ['action'],\n pinDigests: true,\n },\n ],\n },\n pinGitHubActionDigestsToSemver: {\n description: 'Convert pinned GitHub Action digests to SemVer.',\n packageRules: [\n {\n extends: ['helpers:pinGitHubActionDigests'],\n extractVersion: '^(?<version>v?\\\\d+\\\\.\\\\d+\\\\.\\\\d+)$',\n versioning:\n 'regex:^v?(?<major>\\\\d+)(\\\\.(?<minor>\\\\d+)\\\\.(?<patch>\\\\d+))?$',\n },\n ],\n },\n};\n"]}
|
|
1
|
+
{"version":3,"file":"helpers.js","sourceRoot":"","sources":["../../../../lib/config/presets/internal/helpers.ts"],"names":[],"mappings":";;;AAEA,+EAA+E;AAElE,QAAA,OAAO,GAA2B;IAC7C,qBAAqB,EAAE;QACrB,WAAW,EAAE,2CAA2C;QACxD,YAAY,EAAE;YACZ;gBACE,OAAO,EAAE,KAAK;gBACd,iBAAiB,EAAE,CAAC,aAAa,CAAC;gBAClC,gBAAgB,EAAE,CAAC,OAAO,CAAC;aAC5B;SACF;KACF;IACD,oBAAoB,EAAE;QACpB,WAAW,EAAE,wDAAwD;QACrE,OAAO,EAAE,CAAC,8BAA8B,CAAC;KAC1C;IACD,kBAAkB,EAAE;QAClB,WAAW,EAAE,sDAAsD;QACnE,OAAO,EAAE,CAAC,4BAA4B,CAAC;KACxC;IACD,sBAAsB,EAAE;QACtB,WAAW,EACT,wHAAwH;QAC1H,YAAY,EAAE;YACZ;gBACE,YAAY,EAAE,wDAAwD;gBACtE,gBAAgB,EAAE;oBAChB,UAAU;oBACV,UAAU;oBACV,iBAAiB;oBACjB,aAAa;iBACd;gBACD,eAAe,EAAE,CAAC,uBAAuB,CAAC;gBAC1C,gBAAgB,EAAE,CAAC,QAAQ,CAAC;aAC7B;SACF;KACF;IACD,wBAAwB,EAAE;QACxB,WAAW,EAAE,6DAA6D;QAC1E,YAAY,EAAE;YACZ;gBACE,aAAa,EAAE,CAAC,OAAO,CAAC;gBACxB,+DAA+D;gBAC/D,gBAAgB,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,OAAO,CAAC;gBAC7C,iBAAiB,EAAE;oBACjB,MAAM,EACJ,sRAAsR;iBACzR;aACF;SACF;KACF;IACD,mBAAmB,EAAE;QACnB,WAAW,EAAE,yDAAyD;QACtE,YAAY,EAAE;YACZ;gBACE,aAAa,EAAE,CAAC,OAAO,CAAC;gBACxB,iBAAiB,EAAE;oBACjB,OAAO,EACL,qIAAqI;iBACxI;aACF;SACF;KACF;IACD,sBAAsB,EAAE;QACtB,WAAW,EAAE,8BAA8B;QAC3C,YAAY,EAAE;YACZ;gBACE,aAAa,EAAE,CAAC,QAAQ,CAAC;gBACzB,UAAU,EAAE,IAAI;aACjB;SACF;KACF;IACD,8BAA8B,EAAE;QAC9B,WAAW,EAAE,iDAAiD;QAC9D,YAAY,EAAE;YACZ;gBACE,OAAO,EAAE,CAAC,gCAAgC,CAAC;gBAC3C,cAAc,EAAE,oCAAoC;gBACpD,UAAU,EACR,+DAA+D;aAClE;SACF;KACF;CACF,CAAC","sourcesContent":["import type { Preset } from '../types';\n\n/* eslint sort-keys: [\"error\", \"asc\", {caseSensitive: false, natural: true}] */\n\nexport const presets: Record<string, Preset> = {\n disableTypesNodeMajor: {\n description: 'Disable `major` updates to `@types/node`.',\n packageRules: [\n {\n enabled: false,\n matchPackageNames: ['@types/node'],\n matchUpdateTypes: ['major'],\n },\n ],\n },\n followTypescriptNext: {\n description: 'Keep `typescript` version in sync with the `next` tag.',\n extends: [':followTag(typescript, next)'],\n },\n followTypescriptRc: {\n description: 'Keep `typescript` version in sync with the `rc` tag.',\n extends: [':followTag(typescript, rc)'],\n },\n githubDigestChangelogs: {\n description:\n 'Ensure that every dependency pinned by digest and sourced from GitHub.com contains a link to the commit-to-commit diff',\n packageRules: [\n {\n changelogUrl: '{{sourceUrl}}/compare/{{currentDigest}}..{{newDigest}}',\n matchDatasources: [\n 'git-refs',\n 'git-tags',\n 'github-releases',\n 'github-tags',\n ],\n matchSourceUrls: ['https://github.com/**'],\n matchUpdateTypes: ['digest'],\n },\n ],\n },\n goXPackagesChangelogLink: {\n description: 'Correctly link to the source code for golang.org/x packages',\n packageRules: [\n {\n matchManagers: ['gomod'],\n // NOTE that digests are not supported with the below diff view\n matchUpdateTypes: ['major', 'minor', 'patch'],\n prBodyDefinitions: {\n Change:\n \"{{#if (containsString depName 'golang.org/x/')}}[`{{{displayFrom}}}` -> `{{{displayTo}}}`](https://cs.opensource.google/{{{replace '^golang\\\\.org' 'go' depName}}}/+/refs/tags/{{{currentValue}}}...refs/tags/{{{newValue}}}){{else}}`{{{displayFrom}}}` -> `{{{displayTo}}}`{{/if}}\",\n },\n },\n ],\n },\n goXPackagesNameLink: {\n description: \"Link to pkg.go.dev/... for golang.org/x packages' title\",\n packageRules: [\n {\n matchManagers: ['gomod'],\n prBodyDefinitions: {\n Package:\n \"{{#if (containsString depName 'golang.org/x/')}}[{{{depName}}}](https://pkg.go.dev/{{{depName}}}){{else}}{{{depNameLinked}}}{{/if}}\",\n },\n },\n ],\n },\n pinGitHubActionDigests: {\n description: 'Pin `github-action` digests.',\n packageRules: [\n {\n matchDepTypes: ['action'],\n pinDigests: true,\n },\n ],\n },\n pinGitHubActionDigestsToSemver: {\n description: 'Convert pinned GitHub Action digests to SemVer.',\n packageRules: [\n {\n extends: ['helpers:pinGitHubActionDigests'],\n extractVersion: '^(?<version>v?\\\\d+\\\\.\\\\d+\\\\.\\\\d+)$',\n versioning:\n 'regex:^v?(?<major>\\\\d+)(\\\\.(?<minor>\\\\d+)\\\\.(?<patch>\\\\d+))?$',\n },\n ],\n },\n};\n"]}
|
package/package.json
CHANGED
package/renovate-schema.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"title": "JSON schema for Renovate 42.54.
|
|
2
|
+
"title": "JSON schema for Renovate 42.54.1 config files (https://renovatebot.com/)",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
|
-
"x-renovate-version": "42.54.
|
|
4
|
+
"x-renovate-version": "42.54.1",
|
|
5
5
|
"allowComments": true,
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|