renovate 43.25.2 → 43.25.4
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/options/index.js +1 -1
- package/dist/config/options/index.js.map +1 -1
- package/dist/util/http/bitbucket-server.js +7 -0
- package/dist/util/http/bitbucket-server.js.map +1 -1
- package/dist/util/http/bitbucket.js +3 -0
- package/dist/util/http/bitbucket.js.map +1 -1
- package/dist/util/http/forgejo.js +3 -0
- package/dist/util/http/forgejo.js.map +1 -1
- package/dist/util/http/gitea.js +3 -0
- package/dist/util/http/gitea.js.map +1 -1
- package/dist/util/http/github.d.ts +1 -0
- package/dist/util/http/github.js +8 -0
- package/dist/util/http/github.js.map +1 -1
- package/dist/util/http/gitlab.d.ts +1 -0
- package/dist/util/http/gitlab.js +3 -0
- package/dist/util/http/gitlab.js.map +1 -1
- package/dist/util/http/got.js +16 -1
- package/dist/util/http/got.js.map +1 -1
- package/dist/util/http/http.d.ts +6 -0
- package/dist/util/http/http.js +17 -3
- package/dist/util/http/http.js.map +1 -1
- package/dist/util/http/types.d.ts +17 -2
- package/dist/util/http/types.js +17 -1
- package/dist/util/http/types.js.map +1 -0
- package/package.json +2 -2
- package/renovate-schema.json +2 -2
|
@@ -605,7 +605,7 @@ const options = [
|
|
|
605
605
|
name: "dockerSidecarImage",
|
|
606
606
|
description: "Change this value to override the default Renovate sidecar image.",
|
|
607
607
|
type: "string",
|
|
608
|
-
default: "ghcr.io/renovatebot/base-image:13.10.
|
|
608
|
+
default: "ghcr.io/renovatebot/base-image:13.10.3",
|
|
609
609
|
globalOnly: true,
|
|
610
610
|
deprecationMsg: "The usage of `binarySource=docker` is deprecated, and will be removed in the future"
|
|
611
611
|
},
|