renovate 39.181.0 → 40.0.0-next.10
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.
- package/dist/config/schema.d.ts +2 -2
- package/dist/modules/datasource/custom/schema.d.ts +5 -5
- package/dist/modules/datasource/deno/schema.d.ts +8 -8
- package/dist/modules/datasource/docker/schema.d.ts +32 -32
- package/dist/modules/datasource/galaxy/schema.d.ts +1 -1
- package/dist/modules/datasource/galaxy-collection/schema.d.ts +3 -3
- package/dist/modules/datasource/gitea-releases/schema.d.ts +4 -4
- package/dist/modules/datasource/gitea-tags/schema.d.ts +4 -4
- package/dist/modules/datasource/hex/schema.d.ts +11 -11
- package/dist/modules/datasource/packagist/schema.d.ts +30 -30
- package/dist/modules/manager/argocd/schema.d.ts +10 -10
- package/dist/modules/manager/azure-pipelines/schema.d.ts +10 -10
- package/dist/modules/manager/batect/schema.d.ts +6 -6
- package/dist/modules/manager/bazel/rules/docker.d.ts +9 -9
- package/dist/modules/manager/bazel/rules/git.d.ts +10 -10
- package/dist/modules/manager/bazel/rules/go.d.ts +5 -5
- package/dist/modules/manager/bazel/rules/oci.d.ts +3 -3
- package/dist/modules/manager/bazel-module/parser/fragments.d.ts +40 -40
- package/dist/modules/manager/bazel-module/parser/maven.d.ts +27 -27
- package/dist/modules/manager/bazel-module/parser/oci.d.ts +17 -17
- package/dist/modules/manager/bazel-module/rules.d.ts +40 -40
- package/dist/modules/manager/cargo/schema.d.ts +100 -100
- package/dist/modules/manager/circleci/schema.d.ts +6 -6
- package/dist/modules/manager/composer/schema.d.ts +40 -40
- package/dist/modules/manager/crossplane/schema.d.ts +2 -2
- package/dist/modules/manager/custom/jsonata/schema.d.ts +7 -7
- package/dist/modules/manager/fingerprint.generated.js +66 -66
- package/dist/modules/manager/fingerprint.generated.js.map +1 -1
- package/dist/modules/manager/fleet/schema.d.ts +12 -12
- package/dist/modules/manager/flux/schema.d.ts +50 -50
- package/dist/modules/manager/glasskube/schema.d.ts +8 -8
- package/dist/modules/manager/nix/schema.d.ts +24 -24
- package/dist/modules/manager/npm/schema.d.ts +13 -13
- package/dist/modules/manager/nuget/schema.d.ts +8 -8
- package/dist/modules/manager/ocb/schema.d.ts +6 -6
- package/dist/modules/manager/pep621/schema.d.ts +55 -55
- package/dist/modules/manager/poetry/schema.d.ts +48 -48
- package/dist/modules/manager/sveltos/schema.d.ts +12 -12
- package/dist/modules/manager/vendir/schema.d.ts +27 -27
- package/dist/modules/platform/api.d.ts +1 -1
- package/dist/modules/platform/bitbucket/schema.d.ts +17 -17
- package/dist/modules/platform/gitea/schema.d.ts +8 -8
- package/dist/modules/platform/github/issue.d.ts +12 -12
- package/dist/modules/platform/github/schema.d.ts +65 -65
- package/dist/modules/platform/scm.d.ts +1 -1
- package/dist/util/cache/repository/impl/base.d.ts +1 -1
- package/dist/util/github/graphql/query-adapters/releases-query-adapter.d.ts +5 -5
- package/dist/util/http/cache/schema.d.ts +2 -2
- package/dist/util/http/legacy.js +4 -0
- package/dist/util/http/legacy.js.map +1 -1
- package/package.json +17 -19
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": "
|
4
|
+
"version": "40.0.0-next.10",
|
5
5
|
"type": "commonjs",
|
6
6
|
"bin": {
|
7
7
|
"renovate": "dist/renovate.js",
|
@@ -20,15 +20,16 @@
|
|
20
20
|
"doc-fix": "run-s markdown-lint-fix prettier-fix",
|
21
21
|
"doc-fix-everything": "run-s doc-fix doc-fence-check lint-documentation",
|
22
22
|
"doc-fence-check": "node tools/check-fenced-code.mjs",
|
23
|
-
"lint-documentation": "
|
24
|
-
"lint-other": "
|
23
|
+
"lint-documentation": "vitest run --coverage false test/docs/**.spec.ts",
|
24
|
+
"lint-other": "vitest run --coverage false test/other/**.spec.ts",
|
25
25
|
"eslint": "eslint . --cache --cache-location .cache/eslint",
|
26
26
|
"eslint-fix": "eslint --cache --cache-location .cache/eslint --fix .",
|
27
27
|
"eslint-ci": "eslint . --cache --cache-strategy content --cache-location .cache/eslint --format gha",
|
28
28
|
"generate": "run-s 'generate:*'",
|
29
29
|
"generate:imports": "node tools/generate-imports.mjs",
|
30
30
|
"git-check": "node tools/check-git-version.mjs",
|
31
|
-
"jest": "GIT_ALLOW_PROTOCOL=file LOG_LEVEL=fatal
|
31
|
+
"jest": "GIT_ALLOW_PROTOCOL=file LOG_LEVEL=fatal vitest run --logHeapUsage",
|
32
|
+
"vitest": "GIT_ALLOW_PROTOCOL=file LOG_LEVEL=fatal vitest run --logHeapUsage",
|
32
33
|
"lint": "run-s ls-lint type-check eslint prettier markdown-lint git-check doc-fence-check",
|
33
34
|
"lint-fix": "run-s eslint-fix prettier-fix markdown-lint-fix",
|
34
35
|
"ls-lint": "ls-lint",
|
@@ -136,7 +137,7 @@
|
|
136
137
|
},
|
137
138
|
"homepage": "https://renovatebot.com",
|
138
139
|
"engines": {
|
139
|
-
"node": "^
|
140
|
+
"node": "^22.13.0",
|
140
141
|
"pnpm": "^10.0.0"
|
141
142
|
},
|
142
143
|
"volta": {
|
@@ -264,11 +265,6 @@
|
|
264
265
|
"@containerbase/eslint-plugin": "1.1.4",
|
265
266
|
"@eslint/js": "9.20.0",
|
266
267
|
"@hyrious/marshal": "0.3.3",
|
267
|
-
"@jest/environment": "29.7.0",
|
268
|
-
"@jest/globals": "29.7.0",
|
269
|
-
"@jest/reporters": "29.7.0",
|
270
|
-
"@jest/test-result": "29.7.0",
|
271
|
-
"@jest/types": "29.6.3",
|
272
268
|
"@ls-lint/ls-lint": "2.2.3",
|
273
269
|
"@openpgp/web-stream-tools": "0.1.3",
|
274
270
|
"@semantic-release/exec": "7.0.3",
|
@@ -313,45 +309,44 @@
|
|
313
309
|
"@types/url-join": "4.0.3",
|
314
310
|
"@types/validate-npm-package-name": "4.0.2",
|
315
311
|
"@types/xmldoc": "1.1.9",
|
312
|
+
"@vitest/coverage-v8": "3.0.6",
|
313
|
+
"@vitest/eslint-plugin": "1.1.31",
|
316
314
|
"aws-sdk-client-mock": "4.1.0",
|
317
315
|
"callsite": "1.0.0",
|
318
316
|
"common-tags": "1.8.2",
|
319
317
|
"conventional-changelog-conventionalcommits": "8.0.0",
|
320
318
|
"emojibase-data": "16.0.2",
|
319
|
+
"esbuild": "0.25.0",
|
321
320
|
"eslint": "9.20.1",
|
322
321
|
"eslint-config-prettier": "10.0.1",
|
323
322
|
"eslint-formatter-gha": "1.5.2",
|
324
323
|
"eslint-import-resolver-typescript": "3.8.2",
|
325
324
|
"eslint-plugin-import": "2.31.0",
|
326
|
-
"eslint-plugin-jest": "28.11.0",
|
327
325
|
"eslint-plugin-promise": "7.2.1",
|
328
|
-
"expect": "29.7.0",
|
329
326
|
"expect-more-jest": "5.5.0",
|
330
327
|
"globals": "15.15.0",
|
331
328
|
"graphql": "16.10.0",
|
332
329
|
"husky": "9.1.7",
|
333
|
-
"jest": "29.7.0",
|
334
330
|
"jest-extended": "4.0.2",
|
335
|
-
"jest-mock": "29.7.0",
|
336
|
-
"jest-mock-extended": "3.0.7",
|
337
|
-
"jest-snapshot": "29.7.0",
|
338
331
|
"lint-staged": "15.4.3",
|
339
332
|
"markdownlint-cli2": "0.17.2",
|
340
333
|
"memfs": "4.17.0",
|
341
334
|
"nock": "13.5.6",
|
342
335
|
"npm-run-all2": "7.0.2",
|
343
336
|
"nyc": "17.1.0",
|
344
|
-
"pretty-format": "29.7.0",
|
345
337
|
"rimraf": "6.0.1",
|
346
338
|
"semantic-release": "24.2.3",
|
347
339
|
"tar": "7.4.3",
|
348
340
|
"tmp-promise": "3.0.3",
|
349
|
-
"ts-jest": "29.2.5",
|
350
341
|
"ts-node": "10.9.2",
|
351
342
|
"type-fest": "4.35.0",
|
352
343
|
"typescript": "5.7.3",
|
353
344
|
"typescript-eslint": "8.24.1",
|
354
|
-
"unified": "9.2.2"
|
345
|
+
"unified": "9.2.2",
|
346
|
+
"vite": "6.1.1",
|
347
|
+
"vite-tsconfig-paths": "5.1.4",
|
348
|
+
"vitest": "3.0.6",
|
349
|
+
"vitest-mock-extended": "3.0.1"
|
355
350
|
},
|
356
351
|
"packageManager": "pnpm@10.4.1",
|
357
352
|
"files": [
|
@@ -369,6 +364,9 @@
|
|
369
364
|
"better-sqlite3",
|
370
365
|
"re2"
|
371
366
|
],
|
367
|
+
"overrides": {
|
368
|
+
"esbuild": "0.25.0"
|
369
|
+
},
|
372
370
|
"patchedDependencies": {
|
373
371
|
"re2": "patches/re2.patch"
|
374
372
|
}
|