renovate 41.148.1 → 41.148.2

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.
File without changes
package/dist/renovate.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,68 +1,12 @@
1
1
  {
2
2
  "name": "renovate",
3
3
  "description": "Automated dependency updates. Flexible so you don't need to be.",
4
- "version": "41.148.1",
4
+ "version": "41.148.2",
5
5
  "type": "commonjs",
6
6
  "bin": {
7
7
  "renovate": "dist/renovate.js",
8
8
  "renovate-config-validator": "dist/config-validator.js"
9
9
  },
10
- "scripts": {
11
- "build": "run-s clean 'generate:*' 'compile:*' create-json-schema",
12
- "build:docker": "tsx tools/docker.ts",
13
- "build:docs": "tsx tools/generate-docs.ts",
14
- "clean": "rimraf dist tmp",
15
- "clean-cache": "node tools/clean-cache.mjs",
16
- "compile:ts": "tsc -p tsconfig.app.json",
17
- "config-validator": "tsx lib/config-validator.ts",
18
- "create-json-schema": "tsx tools/generate-schema.ts && prettier --write --cache 'renovate-schema.json'",
19
- "debug": "tsx --inspect-brk lib/renovate.ts",
20
- "doc-fix": "run-s markdown-lint-fix prettier-fix",
21
- "doc-fix-everything": "run-s doc-fix doc-fence-check lint-documentation",
22
- "doc-fence-check": "tsx tools/check-fenced-code.ts",
23
- "lint-documentation": "vitest run --coverage false test/docs/**.spec.ts",
24
- "lint-other": "vitest run --coverage false test/other/**.spec.ts",
25
- "eslint": "eslint . --cache --cache-location .cache/eslint",
26
- "eslint-fix": "eslint --cache --cache-location .cache/eslint --fix .",
27
- "eslint-ci": "eslint . --cache --cache-strategy content --cache-location .cache/eslint --format gha",
28
- "generate": "run-s 'generate:*'",
29
- "generate:imports": "node tools/generate-imports.mjs",
30
- "git-check": "node tools/check-git-version.mjs",
31
- "jest": "GIT_ALLOW_PROTOCOL=file LOG_LEVEL=fatal vitest run --logHeapUsage",
32
- "vitest": "GIT_ALLOW_PROTOCOL=file LOG_LEVEL=fatal vitest run --logHeapUsage",
33
- "lint": "run-s ls-lint type-check eslint prettier markdown-lint git-check doc-fence-check",
34
- "lint-fix": "run-s eslint-fix prettier-fix markdown-lint-fix",
35
- "ls-lint": "ls-lint",
36
- "markdown-lint": "markdownlint-cli2",
37
- "markdown-lint-fix": "markdownlint-cli2 --fix",
38
- "mkdocs": "tsx tools/mkdocs.ts",
39
- "prepare": "run-s 'prepare:*'",
40
- "prepare:husky": "husky",
41
- "prepare:generate": "run-s 'generate:*'",
42
- "prepare:deps": "node tools/prepare-deps.mjs",
43
- "prestart": "run-s 'generate:*'",
44
- "pretest": "run-s 'generate:*'",
45
- "prettier": "prettier --cache --check '**/*.{ts,js,mjs,json,md,yml}'",
46
- "prettier-fix": "prettier --write --cache '**/*.{ts,js,mjs,json,md,yml}'",
47
- "release:prepare": "tsx tools/prepare-release.ts",
48
- "release:publish": "tsx tools/publish-release.ts",
49
- "start": "tsx lib/renovate.ts",
50
- "test": "run-s lint test-schema jest",
51
- "test-dirty": "git diff --exit-code",
52
- "test-e2e": "run-s 'test-e2e:*'",
53
- "test-e2e:pack": "pnpm pack",
54
- "test-e2e:install": "cd test/e2e && pnpm --ignore-workspace install --no-lockfile --prod",
55
- "test-e2e:run": "cd test/e2e && pnpm test",
56
- "test-schema": "run-s create-json-schema",
57
- "test:docs": "node --test tools/docs/test/**/*.mjs",
58
- "schedule-test-shards": "SCHEDULE_TEST_SHARDS=true tsx tools/test-shards.ts",
59
- "tsc": "tsc",
60
- "type-check": "run-s 'generate:*' 'tsc --noEmit {@}' --",
61
- "update-static-data": "run-s 'update-static-data:*'",
62
- "update-static-data:distro-info": "node tools/static-data/generate-distro-info.mjs",
63
- "update-static-data:lambda-node-schedule": "node tools/static-data/generate-lambda-node-schedule.mjs",
64
- "update-static-data:node-schedule": "node tools/static-data/generate-node-schedule.mjs"
65
- },
66
10
  "repository": {
67
11
  "type": "git",
68
12
  "url": "git+https://github.com/renovatebot/renovate.git"
@@ -272,6 +216,7 @@
272
216
  },
273
217
  "devDependencies": {
274
218
  "@containerbase/eslint-plugin": "1.1.14",
219
+ "@containerbase/semantic-release-pnpm": "1.2.5",
275
220
  "@eslint/js": "9.35.0",
276
221
  "@hyrious/marshal": "0.3.3",
277
222
  "@ls-lint/ls-lint": "2.3.1",
@@ -354,30 +299,63 @@
354
299
  "vitest": "3.2.4",
355
300
  "vitest-mock-extended": "3.1.0"
356
301
  },
357
- "packageManager": "pnpm@10.18.1",
358
302
  "files": [
359
303
  "dist",
360
304
  "renovate-schema.json"
361
305
  ],
362
- "pnpm": {
363
- "ignoredBuiltDependencies": [
364
- "core-js-pure",
365
- "esbuild",
366
- "protobufjs",
367
- "unrs-resolver"
368
- ],
369
- "ignoredOptionalDependencies": [
370
- "dtrace-provider",
371
- "moment",
372
- "mv",
373
- "safe-json-stringify"
374
- ],
375
- "onlyBuiltDependencies": [
376
- "better-sqlite3",
377
- "re2"
378
- ],
379
- "overrides": {
380
- "esbuild": "0.25.10"
381
- }
306
+ "scripts": {
307
+ "build": "run-s clean 'generate:*' 'compile:*' create-json-schema",
308
+ "build:docker": "tsx tools/docker.ts",
309
+ "build:docs": "tsx tools/generate-docs.ts",
310
+ "clean": "rimraf dist tmp",
311
+ "clean-cache": "node tools/clean-cache.mjs",
312
+ "compile:ts": "tsc -p tsconfig.app.json",
313
+ "config-validator": "tsx lib/config-validator.ts",
314
+ "create-json-schema": "tsx tools/generate-schema.ts && prettier --write --cache 'renovate-schema.json'",
315
+ "debug": "tsx --inspect-brk lib/renovate.ts",
316
+ "doc-fix": "run-s markdown-lint-fix prettier-fix",
317
+ "doc-fix-everything": "run-s doc-fix doc-fence-check lint-documentation",
318
+ "doc-fence-check": "tsx tools/check-fenced-code.ts",
319
+ "lint-documentation": "vitest run --coverage false test/docs/**.spec.ts",
320
+ "lint-other": "vitest run --coverage false test/other/**.spec.ts",
321
+ "eslint": "eslint . --cache --cache-location .cache/eslint",
322
+ "eslint-fix": "eslint --cache --cache-location .cache/eslint --fix .",
323
+ "eslint-ci": "eslint . --cache --cache-strategy content --cache-location .cache/eslint --format gha",
324
+ "generate": "run-s 'generate:*'",
325
+ "generate:imports": "node tools/generate-imports.mjs",
326
+ "git-check": "node tools/check-git-version.mjs",
327
+ "jest": "GIT_ALLOW_PROTOCOL=file LOG_LEVEL=fatal vitest run --logHeapUsage",
328
+ "vitest": "GIT_ALLOW_PROTOCOL=file LOG_LEVEL=fatal vitest run --logHeapUsage",
329
+ "lint": "run-s ls-lint type-check eslint prettier markdown-lint git-check doc-fence-check",
330
+ "lint-fix": "run-s eslint-fix prettier-fix markdown-lint-fix",
331
+ "ls-lint": "ls-lint",
332
+ "markdown-lint": "markdownlint-cli2",
333
+ "markdown-lint-fix": "markdownlint-cli2 --fix",
334
+ "mkdocs": "tsx tools/mkdocs.ts",
335
+ "prepare:husky": "husky",
336
+ "prepare:generate": "run-s 'generate:*'",
337
+ "prepare:deps": "node tools/prepare-deps.mjs",
338
+ "prestart": "run-s 'generate:*'",
339
+ "pretest": "run-s 'generate:*'",
340
+ "prettier": "prettier --cache --check '**/*.{ts,js,mjs,json,md,yml}'",
341
+ "prettier-fix": "prettier --write --cache '**/*.{ts,js,mjs,json,md,yml}'",
342
+ "release:prepare": "tsx tools/prepare-release.ts",
343
+ "release:publish": "tsx tools/publish-release.ts",
344
+ "start": "tsx lib/renovate.ts",
345
+ "test": "run-s lint test-schema jest",
346
+ "test-dirty": "git diff --exit-code",
347
+ "test-e2e": "run-s 'test-e2e:*'",
348
+ "test-e2e:pack": "pnpm pack",
349
+ "test-e2e:install": "cd test/e2e && pnpm --ignore-workspace install --no-lockfile --prod",
350
+ "test-e2e:run": "cd test/e2e && pnpm test",
351
+ "test-schema": "run-s create-json-schema",
352
+ "test:docs": "node --test tools/docs/test/**/*.mjs",
353
+ "schedule-test-shards": "SCHEDULE_TEST_SHARDS=true tsx tools/test-shards.ts",
354
+ "tsc": "tsc",
355
+ "type-check": "run-s 'generate:*' 'tsc --noEmit {@}' --",
356
+ "update-static-data": "run-s 'update-static-data:*'",
357
+ "update-static-data:distro-info": "node tools/static-data/generate-distro-info.mjs",
358
+ "update-static-data:lambda-node-schedule": "node tools/static-data/generate-lambda-node-schedule.mjs",
359
+ "update-static-data:node-schedule": "node tools/static-data/generate-node-schedule.mjs"
382
360
  }
383
- }
361
+ }
@@ -1,6 +1,7 @@
1
1
  {
2
- "title": "JSON schema for Renovate config files (https://renovatebot.com/)",
2
+ "title": "JSON schema for Renovate 41.148.2 config files (https://renovatebot.com/)",
3
3
  "$schema": "http://json-schema.org/draft-04/schema#",
4
+ "x-renovate-version": "41.148.2",
4
5
  "type": "object",
5
6
  "properties": {
6
7
  "abandonmentThreshold": {