renovate 39.257.1 → 39.257.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/modules/datasource/docker/schema.d.ts +72 -96
- package/dist/modules/datasource/packagist/schema.d.ts +7 -7
- package/dist/modules/manager/argocd/schema.d.ts +12 -12
- package/dist/modules/manager/bazel-module/parser/maven.d.ts +6 -52
- package/dist/modules/manager/bazel-module/parser/oci.d.ts +3 -26
- package/dist/modules/manager/bazel-module/rules.d.ts +15 -125
- package/dist/modules/manager/cargo/schema.d.ts +3 -3
- package/dist/modules/manager/circleci/schema.d.ts +3 -3
- package/dist/modules/manager/composer/schema.d.ts +6 -8
- package/dist/modules/manager/fingerprint.generated.js +1 -1
- package/dist/modules/manager/fingerprint.generated.js.map +1 -1
- package/dist/modules/manager/flux/schema.d.ts +36 -60
- package/dist/modules/manager/gomod/update.js +3 -1
- package/dist/modules/manager/gomod/update.js.map +1 -1
- package/dist/modules/manager/sveltos/schema.d.ts +18 -30
- package/dist/modules/manager/vendir/schema.d.ts +3 -3
- package/dist/modules/platform/bitbucket/schema.d.ts +3 -3
- package/dist/modules/platform/github/issue.d.ts +6 -6
- package/dist/modules/platform/github/schema.d.ts +52 -52
- package/package.json +2 -2
@@ -25,12 +25,12 @@ export declare const VulnerabilityAlertSchema: z.ZodEffects<z.ZodArray<z.ZodAny,
|
|
25
25
|
};
|
26
26
|
dismissed_reason?: string | null | undefined;
|
27
27
|
}[], any[]>;
|
28
|
-
export declare const GithubFileMeta: z.ZodObject<
|
28
|
+
export declare const GithubFileMeta: z.ZodObject<{
|
29
29
|
name: z.ZodString;
|
30
30
|
path: z.ZodString;
|
31
|
-
}
|
31
|
+
} & {
|
32
32
|
type: z.ZodLiteral<"file">;
|
33
|
-
}
|
33
|
+
}, "strip", z.ZodTypeAny, {
|
34
34
|
path: string;
|
35
35
|
type: "file";
|
36
36
|
name: string;
|
@@ -40,15 +40,15 @@ export declare const GithubFileMeta: z.ZodObject<z.objectUtil.extendShape<{
|
|
40
40
|
name: string;
|
41
41
|
}>;
|
42
42
|
export type GithubFileMeta = z.infer<typeof GithubFileMeta>;
|
43
|
-
export declare const GithubFile: z.ZodObject<
|
43
|
+
export declare const GithubFile: z.ZodObject<{
|
44
44
|
name: z.ZodString;
|
45
45
|
path: z.ZodString;
|
46
|
-
}
|
46
|
+
} & {
|
47
47
|
type: z.ZodLiteral<"file">;
|
48
|
-
}
|
48
|
+
} & {
|
49
49
|
content: z.ZodString;
|
50
50
|
encoding: z.ZodString;
|
51
|
-
}
|
51
|
+
}, "strip", z.ZodTypeAny, {
|
52
52
|
path: string;
|
53
53
|
type: "file";
|
54
54
|
name: string;
|
@@ -62,12 +62,12 @@ export declare const GithubFile: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
62
62
|
content: string;
|
63
63
|
}>;
|
64
64
|
export type GithubFile = z.infer<typeof GithubFile>;
|
65
|
-
export declare const GithubDirectory: z.ZodObject<
|
65
|
+
export declare const GithubDirectory: z.ZodObject<{
|
66
66
|
name: z.ZodString;
|
67
67
|
path: z.ZodString;
|
68
|
-
}
|
68
|
+
} & {
|
69
69
|
type: z.ZodLiteral<"dir">;
|
70
|
-
}
|
70
|
+
}, "strip", z.ZodTypeAny, {
|
71
71
|
path: string;
|
72
72
|
type: "dir";
|
73
73
|
name: string;
|
@@ -77,12 +77,12 @@ export declare const GithubDirectory: z.ZodObject<z.objectUtil.extendShape<{
|
|
77
77
|
name: string;
|
78
78
|
}>;
|
79
79
|
export type GithubDirectory = z.infer<typeof GithubDirectory>;
|
80
|
-
export declare const GithubOtherContent: z.ZodObject<
|
80
|
+
export declare const GithubOtherContent: z.ZodObject<{
|
81
81
|
name: z.ZodString;
|
82
82
|
path: z.ZodString;
|
83
|
-
}
|
83
|
+
} & {
|
84
84
|
type: z.ZodUnion<[z.ZodLiteral<"symlink">, z.ZodLiteral<"submodule">]>;
|
85
|
-
}
|
85
|
+
}, "strip", z.ZodTypeAny, {
|
86
86
|
path: string;
|
87
87
|
type: "symlink" | "submodule";
|
88
88
|
name: string;
|
@@ -92,15 +92,15 @@ export declare const GithubOtherContent: z.ZodObject<z.objectUtil.extendShape<{
|
|
92
92
|
name: string;
|
93
93
|
}>;
|
94
94
|
export type GithubOtherContent = z.infer<typeof GithubOtherContent>;
|
95
|
-
export declare const GithubElement: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
95
|
+
export declare const GithubElement: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
96
96
|
name: z.ZodString;
|
97
97
|
path: z.ZodString;
|
98
|
-
}
|
98
|
+
} & {
|
99
99
|
type: z.ZodLiteral<"file">;
|
100
|
-
}
|
100
|
+
} & {
|
101
101
|
content: z.ZodString;
|
102
102
|
encoding: z.ZodString;
|
103
|
-
}
|
103
|
+
}, "strip", z.ZodTypeAny, {
|
104
104
|
path: string;
|
105
105
|
type: "file";
|
106
106
|
name: string;
|
@@ -112,12 +112,12 @@ export declare const GithubElement: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
112
112
|
name: string;
|
113
113
|
encoding: string;
|
114
114
|
content: string;
|
115
|
-
}>, z.ZodObject<
|
115
|
+
}>, z.ZodObject<{
|
116
116
|
name: z.ZodString;
|
117
117
|
path: z.ZodString;
|
118
|
-
}
|
118
|
+
} & {
|
119
119
|
type: z.ZodLiteral<"file">;
|
120
|
-
}
|
120
|
+
}, "strip", z.ZodTypeAny, {
|
121
121
|
path: string;
|
122
122
|
type: "file";
|
123
123
|
name: string;
|
@@ -125,12 +125,12 @@ export declare const GithubElement: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
125
125
|
path: string;
|
126
126
|
type: "file";
|
127
127
|
name: string;
|
128
|
-
}>]>, z.ZodObject<
|
128
|
+
}>]>, z.ZodObject<{
|
129
129
|
name: z.ZodString;
|
130
130
|
path: z.ZodString;
|
131
|
-
}
|
131
|
+
} & {
|
132
132
|
type: z.ZodLiteral<"dir">;
|
133
|
-
}
|
133
|
+
}, "strip", z.ZodTypeAny, {
|
134
134
|
path: string;
|
135
135
|
type: "dir";
|
136
136
|
name: string;
|
@@ -138,12 +138,12 @@ export declare const GithubElement: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
138
138
|
path: string;
|
139
139
|
type: "dir";
|
140
140
|
name: string;
|
141
|
-
}>]>, z.ZodObject<
|
141
|
+
}>]>, z.ZodObject<{
|
142
142
|
name: z.ZodString;
|
143
143
|
path: z.ZodString;
|
144
|
-
}
|
144
|
+
} & {
|
145
145
|
type: z.ZodUnion<[z.ZodLiteral<"symlink">, z.ZodLiteral<"submodule">]>;
|
146
|
-
}
|
146
|
+
}, "strip", z.ZodTypeAny, {
|
147
147
|
path: string;
|
148
148
|
type: "symlink" | "submodule";
|
149
149
|
name: string;
|
@@ -153,15 +153,15 @@ export declare const GithubElement: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObj
|
|
153
153
|
name: string;
|
154
154
|
}>]>;
|
155
155
|
export type GithubElement = z.infer<typeof GithubElement>;
|
156
|
-
export declare const GithubContentResponse: z.ZodUnion<[z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
156
|
+
export declare const GithubContentResponse: z.ZodUnion<[z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
157
157
|
name: z.ZodString;
|
158
158
|
path: z.ZodString;
|
159
|
-
}
|
159
|
+
} & {
|
160
160
|
type: z.ZodLiteral<"file">;
|
161
|
-
}
|
161
|
+
} & {
|
162
162
|
content: z.ZodString;
|
163
163
|
encoding: z.ZodString;
|
164
|
-
}
|
164
|
+
}, "strip", z.ZodTypeAny, {
|
165
165
|
path: string;
|
166
166
|
type: "file";
|
167
167
|
name: string;
|
@@ -173,12 +173,12 @@ export declare const GithubContentResponse: z.ZodUnion<[z.ZodArray<z.ZodUnion<[z
|
|
173
173
|
name: string;
|
174
174
|
encoding: string;
|
175
175
|
content: string;
|
176
|
-
}>, z.ZodObject<
|
176
|
+
}>, z.ZodObject<{
|
177
177
|
name: z.ZodString;
|
178
178
|
path: z.ZodString;
|
179
|
-
}
|
179
|
+
} & {
|
180
180
|
type: z.ZodLiteral<"file">;
|
181
|
-
}
|
181
|
+
}, "strip", z.ZodTypeAny, {
|
182
182
|
path: string;
|
183
183
|
type: "file";
|
184
184
|
name: string;
|
@@ -186,12 +186,12 @@ export declare const GithubContentResponse: z.ZodUnion<[z.ZodArray<z.ZodUnion<[z
|
|
186
186
|
path: string;
|
187
187
|
type: "file";
|
188
188
|
name: string;
|
189
|
-
}>]>, z.ZodObject<
|
189
|
+
}>]>, z.ZodObject<{
|
190
190
|
name: z.ZodString;
|
191
191
|
path: z.ZodString;
|
192
|
-
}
|
192
|
+
} & {
|
193
193
|
type: z.ZodLiteral<"dir">;
|
194
|
-
}
|
194
|
+
}, "strip", z.ZodTypeAny, {
|
195
195
|
path: string;
|
196
196
|
type: "dir";
|
197
197
|
name: string;
|
@@ -199,12 +199,12 @@ export declare const GithubContentResponse: z.ZodUnion<[z.ZodArray<z.ZodUnion<[z
|
|
199
199
|
path: string;
|
200
200
|
type: "dir";
|
201
201
|
name: string;
|
202
|
-
}>]>, z.ZodObject<
|
202
|
+
}>]>, z.ZodObject<{
|
203
203
|
name: z.ZodString;
|
204
204
|
path: z.ZodString;
|
205
|
-
}
|
205
|
+
} & {
|
206
206
|
type: z.ZodUnion<[z.ZodLiteral<"symlink">, z.ZodLiteral<"submodule">]>;
|
207
|
-
}
|
207
|
+
}, "strip", z.ZodTypeAny, {
|
208
208
|
path: string;
|
209
209
|
type: "symlink" | "submodule";
|
210
210
|
name: string;
|
@@ -212,15 +212,15 @@ export declare const GithubContentResponse: z.ZodUnion<[z.ZodArray<z.ZodUnion<[z
|
|
212
212
|
path: string;
|
213
213
|
type: "symlink" | "submodule";
|
214
214
|
name: string;
|
215
|
-
}>]>, "many">, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
215
|
+
}>]>, "many">, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
216
216
|
name: z.ZodString;
|
217
217
|
path: z.ZodString;
|
218
|
-
}
|
218
|
+
} & {
|
219
219
|
type: z.ZodLiteral<"file">;
|
220
|
-
}
|
220
|
+
} & {
|
221
221
|
content: z.ZodString;
|
222
222
|
encoding: z.ZodString;
|
223
|
-
}
|
223
|
+
}, "strip", z.ZodTypeAny, {
|
224
224
|
path: string;
|
225
225
|
type: "file";
|
226
226
|
name: string;
|
@@ -232,12 +232,12 @@ export declare const GithubContentResponse: z.ZodUnion<[z.ZodArray<z.ZodUnion<[z
|
|
232
232
|
name: string;
|
233
233
|
encoding: string;
|
234
234
|
content: string;
|
235
|
-
}>, z.ZodObject<
|
235
|
+
}>, z.ZodObject<{
|
236
236
|
name: z.ZodString;
|
237
237
|
path: z.ZodString;
|
238
|
-
}
|
238
|
+
} & {
|
239
239
|
type: z.ZodLiteral<"file">;
|
240
|
-
}
|
240
|
+
}, "strip", z.ZodTypeAny, {
|
241
241
|
path: string;
|
242
242
|
type: "file";
|
243
243
|
name: string;
|
@@ -245,12 +245,12 @@ export declare const GithubContentResponse: z.ZodUnion<[z.ZodArray<z.ZodUnion<[z
|
|
245
245
|
path: string;
|
246
246
|
type: "file";
|
247
247
|
name: string;
|
248
|
-
}>]>, z.ZodObject<
|
248
|
+
}>]>, z.ZodObject<{
|
249
249
|
name: z.ZodString;
|
250
250
|
path: z.ZodString;
|
251
|
-
}
|
251
|
+
} & {
|
252
252
|
type: z.ZodLiteral<"dir">;
|
253
|
-
}
|
253
|
+
}, "strip", z.ZodTypeAny, {
|
254
254
|
path: string;
|
255
255
|
type: "dir";
|
256
256
|
name: string;
|
@@ -258,12 +258,12 @@ export declare const GithubContentResponse: z.ZodUnion<[z.ZodArray<z.ZodUnion<[z
|
|
258
258
|
path: string;
|
259
259
|
type: "dir";
|
260
260
|
name: string;
|
261
|
-
}>]>, z.ZodObject<
|
261
|
+
}>]>, z.ZodObject<{
|
262
262
|
name: z.ZodString;
|
263
263
|
path: z.ZodString;
|
264
|
-
}
|
264
|
+
} & {
|
265
265
|
type: z.ZodUnion<[z.ZodLiteral<"symlink">, z.ZodLiteral<"submodule">]>;
|
266
|
-
}
|
266
|
+
}, "strip", z.ZodTypeAny, {
|
267
267
|
path: string;
|
268
268
|
type: "symlink" | "submodule";
|
269
269
|
name: string;
|
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": "39.257.
|
4
|
+
"version": "39.257.3",
|
5
5
|
"type": "commonjs",
|
6
6
|
"bin": {
|
7
7
|
"renovate": "dist/renovate.js",
|
@@ -260,7 +260,7 @@
|
|
260
260
|
"vuln-vects": "1.1.0",
|
261
261
|
"xmldoc": "1.3.0",
|
262
262
|
"yaml": "2.7.1",
|
263
|
-
"zod": "3.24.
|
263
|
+
"zod": "3.24.3"
|
264
264
|
},
|
265
265
|
"optionalDependencies": {
|
266
266
|
"better-sqlite3": "11.9.1",
|