mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 21:48:32 +00:00
5e7844fb81
Use absolute import format for depName in jsonnet-bundler. Closes #13568 BREAKING CHANGE: `depName` now uses the "absolute import" format (e.g. `bar` → `github.com/foo/bar/baz-wow`)
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`modules/manager/jsonnet-bundler/extract extractPackageFile() extracts dependency 1`] = `
|
|
{
|
|
"deps": [
|
|
{
|
|
"currentValue": "v0.50.0",
|
|
"depName": "github.com/prometheus-operator/prometheus-operator/jsonnet/prometheus-operator",
|
|
"managerData": {
|
|
"subdir": "jsonnet/prometheus-operator",
|
|
},
|
|
"packageName": "https://github.com/prometheus-operator/prometheus-operator.git",
|
|
},
|
|
{
|
|
"currentValue": "v0.9.0",
|
|
"depName": "github.com/prometheus-operator/kube-prometheus/jsonnet/kube-prometheus",
|
|
"managerData": {
|
|
"subdir": "jsonnet/kube-prometheus",
|
|
},
|
|
"packageName": "ssh://git@github.com/prometheus-operator/kube-prometheus.git",
|
|
},
|
|
],
|
|
}
|
|
`;
|
|
|
|
exports[`modules/manager/jsonnet-bundler/extract extractPackageFile() extracts dependency with custom name 1`] = `
|
|
{
|
|
"deps": [
|
|
{
|
|
"currentValue": "v0.50.0",
|
|
"depName": "github.com/prometheus-operator/prometheus-operator/jsonnet/mixin",
|
|
"managerData": {
|
|
"subdir": "jsonnet/mixin",
|
|
},
|
|
"packageName": "https://github.com/prometheus-operator/prometheus-operator",
|
|
},
|
|
],
|
|
}
|
|
`;
|