renovate 40.9.0 → 40.9.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.
@@ -1,6 +1,6 @@
1
1
  export { extractPackageFile } from './extract';
2
2
  export declare const url = "../../../config-presets.md";
3
3
  export declare const defaultConfig: {
4
- fileMatch: string[];
4
+ managerFilePatterns: string[];
5
5
  };
6
6
  export declare const supportedDatasources: string[];
@@ -9,9 +9,7 @@ var extract_1 = require("./extract");
9
9
  Object.defineProperty(exports, "extractPackageFile", { enumerable: true, get: function () { return extract_1.extractPackageFile; } });
10
10
  exports.url = '../../../config-presets.md';
11
11
  exports.defaultConfig = {
12
- fileMatch: app_strings_1.configFileNames
13
- .filter((name) => name !== 'package.json')
14
- .map((name) => `^${name.replaceAll('.', '\\.')}$`),
12
+ managerFilePatterns: app_strings_1.configFileNames.filter((name) => name !== 'package.json'),
15
13
  };
16
14
  exports.supportedDatasources = [
17
15
  github_tags_1.GithubTagsDatasource.id,
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../lib/modules/manager/renovate-config-presets/index.ts"],"names":[],"mappings":";;;AAAA,6DAA8D;AAC9D,4DAAkE;AAClE,8DAAoE;AACpE,8DAAoE;AAEpE,qCAA+C;AAAtC,6GAAA,kBAAkB,OAAA;AAEd,QAAA,GAAG,GAAG,4BAA4B,CAAC;AAEnC,QAAA,aAAa,GAAG;IAC3B,SAAS,EAAE,6BAAe;SACvB,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,KAAK,cAAc,CAAC;SACzC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,IAAI,CAAC,UAAU,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,CAAC;CACrD,CAAC;AAEW,QAAA,oBAAoB,GAAG;IAClC,kCAAoB,CAAC,EAAE;IACvB,kCAAoB,CAAC,EAAE;IACvB,gCAAmB,CAAC,EAAE;CACvB,CAAC","sourcesContent":["import { configFileNames } from '../../../config/app-strings';\nimport { GiteaTagsDatasource } from '../../datasource/gitea-tags';\nimport { GithubTagsDatasource } from '../../datasource/github-tags';\nimport { GitlabTagsDatasource } from '../../datasource/gitlab-tags';\n\nexport { extractPackageFile } from './extract';\n\nexport const url = '../../../config-presets.md';\n\nexport const defaultConfig = {\n fileMatch: configFileNames\n .filter((name) => name !== 'package.json')\n .map((name) => `^${name.replaceAll('.', '\\\\.')}$`),\n};\n\nexport const supportedDatasources = [\n GithubTagsDatasource.id,\n GitlabTagsDatasource.id,\n GiteaTagsDatasource.id,\n];\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../lib/modules/manager/renovate-config-presets/index.ts"],"names":[],"mappings":";;;AAAA,6DAA8D;AAC9D,4DAAkE;AAClE,8DAAoE;AACpE,8DAAoE;AAEpE,qCAA+C;AAAtC,6GAAA,kBAAkB,OAAA;AAEd,QAAA,GAAG,GAAG,4BAA4B,CAAC;AAEnC,QAAA,aAAa,GAAG;IAC3B,mBAAmB,EAAE,6BAAe,CAAC,MAAM,CACzC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,KAAK,cAAc,CAClC;CACF,CAAC;AAEW,QAAA,oBAAoB,GAAG;IAClC,kCAAoB,CAAC,EAAE;IACvB,kCAAoB,CAAC,EAAE;IACvB,gCAAmB,CAAC,EAAE;CACvB,CAAC","sourcesContent":["import { configFileNames } from '../../../config/app-strings';\nimport { GiteaTagsDatasource } from '../../datasource/gitea-tags';\nimport { GithubTagsDatasource } from '../../datasource/github-tags';\nimport { GitlabTagsDatasource } from '../../datasource/gitlab-tags';\n\nexport { extractPackageFile } from './extract';\n\nexport const url = '../../../config-presets.md';\n\nexport const defaultConfig = {\n managerFilePatterns: configFileNames.filter(\n (name) => name !== 'package.json',\n ),\n};\n\nexport const supportedDatasources = [\n GithubTagsDatasource.id,\n GitlabTagsDatasource.id,\n GiteaTagsDatasource.id,\n];\n"]}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "renovate",
3
3
  "description": "Automated dependency updates. Flexible so you don't need to be.",
4
- "version": "40.9.0",
4
+ "version": "40.9.1",
5
5
  "type": "commonjs",
6
6
  "bin": {
7
7
  "renovate": "dist/renovate.js",
@@ -3267,16 +3267,16 @@
3267
3267
  "description": "Configuration object for the renovate-config-presets manager",
3268
3268
  "type": "object",
3269
3269
  "default": {
3270
- "fileMatch": [
3271
- "^renovate\\.json$",
3272
- "^renovate\\.json5$",
3273
- "^\\.github/renovate\\.json$",
3274
- "^\\.github/renovate\\.json5$",
3275
- "^\\.gitlab/renovate\\.json$",
3276
- "^\\.gitlab/renovate\\.json5$",
3277
- "^\\.renovaterc$",
3278
- "^\\.renovaterc\\.json$",
3279
- "^\\.renovaterc\\.json5$"
3270
+ "managerFilePatterns": [
3271
+ "renovate.json",
3272
+ "renovate.json5",
3273
+ ".github/renovate.json",
3274
+ ".github/renovate.json5",
3275
+ ".gitlab/renovate.json",
3276
+ ".gitlab/renovate.json5",
3277
+ ".renovaterc",
3278
+ ".renovaterc.json",
3279
+ ".renovaterc.json5"
3280
3280
  ]
3281
3281
  },
3282
3282
  "$ref": "#"