0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-12-22 21:48:32 +00:00
renovatebot_renovate/lib/modules/manager/jsonnet-bundler/__snapshots__/extract.spec.ts.snap
Maxime Brunet 5e7844fb81 feat(jsonnet-bundler)!: Use absolute import format for depName (#14525)
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`)
2022-10-23 06:48:35 +02:00

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",
},
],
}
`;