renovate 43.55.1 → 43.55.3
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-validator.d.ts +0 -3
- package/dist/modules/datasource/npm/types.d.ts +0 -1
- package/dist/modules/datasource/types.d.ts +0 -1
- package/dist/modules/manager/custom/jsonata/types.d.ts +0 -2
- package/dist/modules/manager/types.d.ts +0 -1
- package/dist/modules/platform/bitbucket/index.d.ts +0 -1
- package/dist/modules/platform/bitbucket-server/index.d.ts +0 -1
- package/dist/modules/platform/bitbucket-server/types.d.ts +0 -2
- package/dist/modules/platform/gitlab/index.d.ts +0 -1
- package/dist/modules/platform/types.d.ts +0 -1
- package/dist/modules/versioning/types.d.ts +0 -1
- package/dist/renovate.d.ts +0 -3
- package/dist/util/git/config.d.ts +0 -2
- package/dist/util/git/types.d.ts +0 -1
- package/dist/util/host-rules.d.ts +0 -2
- package/dist/util/http/http.d.ts +0 -2
- package/dist/util/schema-utils/index.d.ts +1 -4
- package/dist/util/yaml.d.ts +1 -2
- package/dist/workers/repository/process/extract-update.d.ts +0 -4
- package/dist/workers/repository/process/write.d.ts +1 -3
- package/dist/workers/types.d.ts +0 -1
- package/package.json +5 -5
- package/renovate-schema.json +2 -2
|
@@ -7,7 +7,6 @@ import { FileChange } from "../../util/git/types.js";
|
|
|
7
7
|
import { MergeConfidence } from "../../util/merge-confidence/types.js";
|
|
8
8
|
import { Timestamp } from "../../util/timestamp.js";
|
|
9
9
|
import { RegistryStrategy } from "../datasource/types.js";
|
|
10
|
-
import "../datasource/index.js";
|
|
11
10
|
import { CustomExtractConfig } from "./custom/types.js";
|
|
12
11
|
import { MatchStringsStrategy, ToolSettingsOptions, UpdateType, ValidationMessage } from "../../config/types.js";
|
|
13
12
|
import { ReleaseType } from "semver";
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { BranchStatus } from "../../../types/branch-status.js";
|
|
2
|
-
import "../../../types/index.js";
|
|
3
2
|
import { AutodiscoverConfig, BranchStatusConfig, CreatePRConfig, EnsureCommentConfig, EnsureCommentRemovalConfig, EnsureIssueConfig, EnsureIssueResult, FindPRConfig, Issue, MergePRConfig, PlatformParams, PlatformResult, Pr, RepoParams, RepoResult, UpdatePrConfig } from "../types.js";
|
|
4
3
|
|
|
5
4
|
//#region lib/modules/platform/bitbucket/index.d.ts
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { BranchStatus } from "../../../types/branch-status.js";
|
|
2
|
-
import "../../../types/index.js";
|
|
3
2
|
import { BranchStatusConfig, CreatePRConfig, EnsureCommentConfig, EnsureCommentRemovalConfig, EnsureIssueConfig, EnsureIssueResult, FileOwnerRule, FindPRConfig, Issue, MergePRConfig, PlatformParams, PlatformResult, Pr, RepoParams, RepoResult, UpdatePrConfig } from "../types.js";
|
|
4
3
|
import { BbsPr } from "./types.js";
|
|
5
4
|
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { BranchStatus } from "../../../types/branch-status.js";
|
|
2
|
-
import "../../../types/index.js";
|
|
3
2
|
import { AutodiscoverConfig, BranchStatusConfig, CreatePRConfig, EnsureCommentConfig, EnsureCommentRemovalConfig, EnsureIssueConfig, FindPRConfig, Issue, MergePRConfig, PlatformParams, PlatformResult, Pr, ReattemptPlatformAutomergeConfig, RepoParams, RepoResult, UpdatePrConfig } from "../types.js";
|
|
4
3
|
import { GitlabIssue, GitlabPr } from "./types.js";
|
|
5
4
|
import { extractRulesFromCodeOwnersLines } from "./code-owners.js";
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { BranchStatus } from "../../types/branch-status.js";
|
|
2
2
|
import { HostRule } from "../../types/host-rules.js";
|
|
3
3
|
import { VulnerabilityAlert } from "../../types/vulnerability-alert.js";
|
|
4
|
-
import "../../types/index.js";
|
|
5
4
|
import { CommitFilesConfig, LongCommitSha } from "../../util/git/types.js";
|
|
6
5
|
import { MergeStrategy } from "../../config/types.js";
|
|
7
6
|
import { DateTime } from "luxon";
|
package/dist/renovate.d.ts
CHANGED
package/dist/util/git/types.d.ts
CHANGED
package/dist/util/http/http.d.ts
CHANGED
|
@@ -2,8 +2,6 @@ import { AsyncResult } from "../result.js";
|
|
|
2
2
|
import { HttpMethod, HttpOptions, HttpResponse, SafeJsonError } from "./types.js";
|
|
3
3
|
import { Options, OptionsInit, RetryObject } from "got";
|
|
4
4
|
import { ZodType, z } from "zod/v3";
|
|
5
|
-
import "type-fest";
|
|
6
|
-
|
|
7
5
|
//#region lib/util/http/http.d.ts
|
|
8
6
|
interface InternalJsonUnsafeOptions<Opts extends HttpOptions = HttpOptions> {
|
|
9
7
|
url: string | URL;
|
package/dist/util/yaml.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
import { ZodType } from "zod/v3";
|
|
2
|
-
import "yaml";
|
|
1
|
+
import { ZodType } from "zod/v3";
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { PackageFile } from "../../../modules/manager/types.js";
|
|
2
|
-
import "../../../config/types.js";
|
|
3
2
|
import { BranchConfig } from "../../types.js";
|
|
4
|
-
import "./write.js";
|
|
5
|
-
import "../../../util/cache/repository/types.js";
|
|
6
|
-
|
|
7
3
|
//#region lib/workers/repository/process/extract-update.d.ts
|
|
8
4
|
interface ExtractResult {
|
|
9
5
|
branches: BranchConfig[];
|
package/dist/workers/types.d.ts
CHANGED
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": "43.55.
|
|
4
|
+
"version": "43.55.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"renovate": "dist/renovate.js",
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"commander": "14.0.3",
|
|
142
142
|
"conventional-commits-detector": "1.0.3",
|
|
143
143
|
"croner": "10.0.1",
|
|
144
|
-
"cronstrue": "3.
|
|
144
|
+
"cronstrue": "3.13.0",
|
|
145
145
|
"deepmerge": "4.3.1",
|
|
146
146
|
"dequal": "2.0.3",
|
|
147
147
|
"detect-indent": "7.0.2",
|
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
"luxon": "3.7.2",
|
|
176
176
|
"markdown-it": "14.1.1",
|
|
177
177
|
"markdown-table": "3.0.4",
|
|
178
|
-
"minimatch": "10.2.
|
|
178
|
+
"minimatch": "10.2.4",
|
|
179
179
|
"moo": "0.5.2",
|
|
180
180
|
"ms": "2.1.3",
|
|
181
181
|
"neotraverse": "0.6.18",
|
|
@@ -253,7 +253,7 @@
|
|
|
253
253
|
"@types/mdast": "4.0.4",
|
|
254
254
|
"@types/moo": "0.5.10",
|
|
255
255
|
"@types/ms": "2.1.0",
|
|
256
|
-
"@types/node": "24.10.
|
|
256
|
+
"@types/node": "24.10.14",
|
|
257
257
|
"@types/parse-link-header": "2.0.3",
|
|
258
258
|
"@types/punycode": "2.1.4",
|
|
259
259
|
"@types/sax": "1.2.7",
|
|
@@ -293,7 +293,7 @@
|
|
|
293
293
|
"oxlint": "1.50.0",
|
|
294
294
|
"rimraf": "6.1.3",
|
|
295
295
|
"semantic-release": "25.0.3",
|
|
296
|
-
"tar": "7.5.
|
|
296
|
+
"tar": "7.5.10",
|
|
297
297
|
"tmp-promise": "3.0.3",
|
|
298
298
|
"tsdown": "0.20.3",
|
|
299
299
|
"type-fest": "5.4.4",
|
package/renovate-schema.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"title": "JSON schema for Renovate 43.55.
|
|
2
|
+
"title": "JSON schema for Renovate 43.55.3 config files (https://renovatebot.com/)",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
|
-
"x-renovate-version": "43.55.
|
|
4
|
+
"x-renovate-version": "43.55.3",
|
|
5
5
|
"allowComments": true,
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|