Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 5b91483

Browse files
Move from deislabs/cnab-go to cnabio/cnab-go
* Bump github.com/docker/cnab-to-oci v0.3.0-beta2 -> v0.3.0-beta4 * Bump github.com/cnabio/cnab-go v0.7.1-beta1 -> v0.8.2-beta1 Signed-off-by: Silvin Lubecki <[email protected]>
1 parent 6d698be commit 5b91483

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+135
-138
lines changed

Gopkg.lock

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ required = ["github.com/wadey/gocovmerge"]
4242

4343
[[override]]
4444
name = "github.com/docker/cnab-to-oci"
45-
version = "v0.3.0-beta2"
45+
version = "v0.3.0-beta4"
4646

4747
[[override]]
4848
name = "github.com/containerd/containerd"
@@ -53,8 +53,8 @@ required = ["github.com/wadey/gocovmerge"]
5353
revision = "37f9a88c696ae81be14c1697bd083d6421b4933c"
5454

5555
[[override]]
56-
name = "github.com/deislabs/cnab-go"
57-
version = "v0.7.1-beta1"
56+
name = "github.com/cnabio/cnab-go"
57+
version = "v0.8.2-beta1"
5858

5959
[[constraint]]
6060
name = "github.com/sirupsen/logrus"

cmd/cnab-run/bundle.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"github.com/deislabs/cnab-go/bundle"
4+
"github.com/cnabio/cnab-go/bundle"
55
"github.com/docker/app/internal/image"
66
"github.com/docker/cnab-to-oci/relocation"
77
)

e2e/build_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515

1616
"github.com/docker/app/internal/store"
1717

18-
"github.com/deislabs/cnab-go/bundle"
18+
"github.com/cnabio/cnab-go/bundle"
1919
"gotest.tools/assert"
2020
"gotest.tools/icmd"
2121
)

e2e/commands_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
"testing"
1212

13-
"github.com/deislabs/cnab-go/credentials"
13+
"github.com/cnabio/cnab-go/credentials"
1414
"github.com/docker/app/internal"
1515
"github.com/docker/app/internal/image"
1616
"github.com/docker/app/internal/yaml"

e2e/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"runtime"
1010
"testing"
1111

12-
"github.com/deislabs/cnab-go/credentials"
12+
"github.com/cnabio/cnab-go/credentials"
1313
"github.com/docker/app/internal/store"
1414
dockerConfigFile "github.com/docker/cli/cli/config/configfile"
1515
"gotest.tools/assert"

internal/bundle/parameters.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"os"
88
"strings"
99

10-
"github.com/deislabs/cnab-go/bundle"
10+
"github.com/cnabio/cnab-go/bundle"
1111
"github.com/docker/app/internal"
1212
"github.com/docker/app/internal/packager"
1313
"github.com/docker/app/internal/store"

internal/bundle/parameters_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99

1010
"github.com/docker/app/internal/image"
1111

12-
"github.com/deislabs/cnab-go/bundle"
13-
"github.com/deislabs/cnab-go/bundle/definition"
14-
"github.com/deislabs/cnab-go/claim"
12+
"github.com/cnabio/cnab-go/bundle"
13+
"github.com/cnabio/cnab-go/bundle/definition"
14+
"github.com/cnabio/cnab-go/claim"
1515
"github.com/docker/app/internal"
1616
"github.com/docker/app/internal/packager"
1717
"github.com/docker/app/internal/store"

internal/cnab/driver.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212
"github.com/docker/app/internal/cliopts"
1313
"github.com/docker/app/internal/store"
1414

15-
"github.com/deislabs/cnab-go/claim"
16-
"github.com/deislabs/cnab-go/driver"
17-
dockerDriver "github.com/deislabs/cnab-go/driver/docker"
15+
"github.com/cnabio/cnab-go/claim"
16+
"github.com/cnabio/cnab-go/driver"
17+
dockerDriver "github.com/cnabio/cnab-go/driver/docker"
1818
"github.com/docker/app/internal"
1919
"github.com/docker/cli/cli/command"
2020
"github.com/docker/cli/cli/context/docker"

internal/commands/build/build.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,12 @@ import (
1313
"strings"
1414
"sync"
1515

16+
"github.com/cnabio/cnab-go/bundle"
17+
cnab "github.com/cnabio/cnab-go/driver"
18+
"github.com/containerd/console"
1619
"github.com/docker/app/internal"
1720
"github.com/docker/app/internal/packager"
1821
"github.com/docker/app/types"
19-
20-
"github.com/containerd/console"
21-
"github.com/deislabs/cnab-go/bundle"
22-
cnab "github.com/deislabs/cnab-go/driver"
2322
"github.com/docker/buildx/build"
2423
"github.com/docker/buildx/driver"
2524
_ "github.com/docker/buildx/driver/docker" // required to get default driver registered, see driver/docker/factory.go:14

0 commit comments

Comments
 (0)