From ed232a54e3dbcaab61001718388f7555123cac0cb3d9b82e81e571ad8d2fcdcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Fri, 19 Jul 2024 01:23:12 +0200 Subject: [PATCH 1/3] chore: remove _scmsync.obsinfo and build.specials.obscpio --- .gitignore | 2 ++ _scmsync.obsinfo | 4 ---- build.specials.obscpio | 3 --- 3 files changed, 2 insertions(+), 7 deletions(-) delete mode 100644 _scmsync.obsinfo delete mode 100644 build.specials.obscpio diff --git a/.gitignore b/.gitignore index 57affb6..bc5941e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ .osc +_scmsync.obsinfo +build.specials.obscpio diff --git a/_scmsync.obsinfo b/_scmsync.obsinfo deleted file mode 100644 index dd66b33..0000000 --- a/_scmsync.obsinfo +++ /dev/null @@ -1,4 +0,0 @@ -mtime: 1716306206 -commit: 37df43d87407ec2126096834cde3c96c3261b7ea -url: https://src.opensuse.org/mcepl_pkgs/git-bug.git -revision: 37df43d87407ec2126096834cde3c96c3261b7ea diff --git a/build.specials.obscpio b/build.specials.obscpio deleted file mode 100644 index 5fb121b..0000000 --- a/build.specials.obscpio +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fce9c0f1f8552a16aa03fae4df34d624f911bccf4e83a8b4abeb5a4d38cb8f25 -size 260 From 78057987ffe2fbc8d6a231bc8de652d28d71a51a12d79dd0713700c2f4b61537 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Sat, 3 Aug 2024 17:27:38 +0200 Subject: [PATCH 2/3] Add remote-config.patch (gh#MichaelMure/git-bug!1076): try reading git-bug.remote config value before defaulting to 'origin' when no explicit REMOTE argument. --- git-bug.changes | 7 ++++ git-bug.spec | 3 ++ remote-config.patch | 100 ++++++++++++++++++++++++++++++++++++++++++++ vendor.tar.gz | 4 +- 4 files changed, 112 insertions(+), 2 deletions(-) create mode 100644 remote-config.patch diff --git a/git-bug.changes b/git-bug.changes index faf6e3e..67b3f5e 100644 --- a/git-bug.changes +++ b/git-bug.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Sat Aug 3 15:16:21 UTC 2024 - Matej Cepl + +- Add remote-config.patch (gh#MichaelMure/git-bug!1076): try + reading git-bug.remote config value before defaulting to + 'origin' when no explicit REMOTE argument. + ------------------------------------------------------------------- Tue May 07 14:31:42 UTC 2024 - mcepl@cepl.eu diff --git a/git-bug.spec b/git-bug.spec index 18c4653..3b0a865 100644 --- a/git-bug.spec +++ b/git-bug.spec @@ -24,6 +24,9 @@ License: MIT URL: https://github.com/MichaelMure/git-bug # Source0: https://github.com/MichaelMure/%%{name}/archive/refs/tags/v%%{version}.tar.gz#/git-bug-%%{version}.tar.gz Source0: git-bug-%{version}.tar.gz +# PATCH-FIX-UPSTREAM remote-config.patch gh#MichaelMure/git-bug!1076 mcepl@suse.com +# try reading git-bug.remote config value before defaulting to 'origin' when no explicit REMOTE argument +Patch0: remote-config.patch Source1: vendor.tar.gz # # PATCH-FEATURE-UPSTREAM 501-export.patch gh#MichaelMure/git-bug!501 mcepl@suse.com # # add a command to export bugs as raw operations diff --git a/remote-config.patch b/remote-config.patch new file mode 100644 index 0000000..4cd834e --- /dev/null +++ b/remote-config.patch @@ -0,0 +1,100 @@ +From 65cfe2b3fff11d34b5ffc9f7e5d24aefb505497f Mon Sep 17 00:00:00 2001 +From: William Ahern +Date: Thu, 27 Jul 2023 22:06:45 -0700 +Subject: [PATCH] pull, push: try reading git-bug.remote config value before + defaulting to 'origin' when no explicit REMOTE argument + +--- + commands/pull.go | 16 +++++++++++----- + commands/push.go | 16 +++++++++++----- + repository/config.go | 11 +++++++++++ + 3 files changed, 33 insertions(+), 10 deletions(-) + +--- a/commands/pull.go ++++ b/commands/pull.go +@@ -8,6 +8,7 @@ import ( + "github.com/MichaelMure/git-bug/commands/completion" + "github.com/MichaelMure/git-bug/commands/execenv" + "github.com/MichaelMure/git-bug/entity" ++ "github.com/MichaelMure/git-bug/repository" + ) + + func newPullCommand(env *execenv.Env) *cobra.Command { +@@ -25,13 +26,18 @@ func newPullCommand(env *execenv.Env) *c + } + + func runPull(env *execenv.Env, args []string) error { +- if len(args) > 1 { ++ var remote string ++ switch { ++ case len(args) > 1: + return errors.New("Only pulling from one remote at a time is supported") +- } +- +- remote := "origin" +- if len(args) == 1 { ++ case len(args) == 1: + remote = args[0] ++ default: ++ v, err := repository.GetDefaultString("git-bug.remote", env.Repo.AnyConfig(), "origin") ++ if err != nil { ++ return err ++ } ++ remote = v + } + + env.Out.Println("Fetching remote ...") +--- a/commands/push.go ++++ b/commands/push.go +@@ -7,6 +7,7 @@ import ( + + "github.com/MichaelMure/git-bug/commands/completion" + "github.com/MichaelMure/git-bug/commands/execenv" ++ "github.com/MichaelMure/git-bug/repository" + ) + + func newPushCommand(env *execenv.Env) *cobra.Command { +@@ -24,13 +25,18 @@ func newPushCommand(env *execenv.Env) *c + } + + func runPush(env *execenv.Env, args []string) error { +- if len(args) > 1 { ++ var remote string ++ switch { ++ case len(args) > 1: + return errors.New("Only pushing to one remote at a time is supported") +- } +- +- remote := "origin" +- if len(args) == 1 { ++ case len(args) == 1: + remote = args[0] ++ default: ++ v, err := repository.GetDefaultString("git-bug.remote", env.Repo.AnyConfig(), "origin") ++ if err != nil { ++ return err ++ } ++ remote = v + } + + stdout, err := env.Backend.Push(remote) +--- a/repository/config.go ++++ b/repository/config.go +@@ -60,6 +60,17 @@ type ConfigWrite interface { + RemoveAll(keyPrefix string) error + } + ++func GetDefaultString(key string, cfg ConfigRead, def string) (string, error) { ++ val, err := cfg.ReadString(key) ++ if err == nil { ++ return val, nil ++ } else if errors.Is(err, ErrNoConfigEntry) { ++ return def, nil ++ } else { ++ return "", err ++ } ++} ++ + func ParseTimestamp(s string) (time.Time, error) { + timestamp, err := strconv.Atoi(s) + if err != nil { diff --git a/vendor.tar.gz b/vendor.tar.gz index b6ab2e4..ad81456 100644 --- a/vendor.tar.gz +++ b/vendor.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:20212cbdc6d9ca0461e8b47c6a459f9c061439252510fd0ffb9fdeb094651ab4 -size 6582254 +oid sha256:fb3ee611b914d7b1632914d5e15464f07d2094c3eb0abaa6b08c97a7d486e550 +size 6758351 From 6747d5f7671b55c0ff5e8a8c7910ab57476d8671674e9ffa239cb588c8f7443a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Thu, 3 Oct 2024 20:48:18 +0200 Subject: [PATCH 3/3] Update to version 0.8.0+git.1725552198.b0cc690: * build(deps): bump golang.org/x/term from 0.23.0 to 0.24.0 (#1261) * graphql: properly namespace Bug to make space for other entities (#1254) * refactor: rename github test repository: test-github-bridge (#1256) * build(deps-dev): bump the npm_and_yarn group across 1 directory with 4 updates (#1250) * core: make label a common type, in a similar fashion as for status (#1252) * chore: regenerate command completion and documentation (#1253) * feat: update references to the git-bug organization (#1249) * build(deps): bump github.com/vbauerster/mpb/v8 from 8.7.5 to 8.8.2 (#1248) * build(deps): bump golang.org/x/sys from 0.23.0 to 0.24.0 (#1242) * feat: add package to dev shell: delve (#1240) * build(deps): bump golang.org/x/crypto from 0.25.0 to 0.26.0 (#1239) * build(deps): bump golang.org/x/text from 0.16.0 to 0.17.0 (#1237) * feat(ci): support a merge queue * DOC: it is "new" not "configure" command (also was missing \) * build(deps): bump golang.org/x/sys from 0.22.0 to 0.23.0 * build(deps): bump golang.org/x/oauth2 from 0.21.0 to 0.22.0 * build(deps): bump golang.org/x/sync from 0.7.0 to 0.8.0 * fix: correct path for reusable workflow: lifecycle * feat: merge go directive and toolchain specification * feat: improved lifecycle management with stale-bot * build(deps): bump github.com/vbauerster/mpb/v8 from 8.7.4 to 8.7.5 * revert: "feat: increase operations per run for workflow: cron" * chore: update go dependencies * fix: run the presubmit pipeline for PRs * chore: remove refs to deprecated io/ioutil * fix: move codeql into an independent workflow * feat: bump node versions to 16.x, 18.x, and 20.x * feat: refactor pipelines into reusable workflows * build(deps): bump jsonwebtoken and @graphql-tools/prisma-loader * build(deps-dev): bump tough-cookie from 4.1.2 to 4.1.3 in /webui * build(deps): bump github.com/xanzy/go-gitlab from 0.106.0 to 0.107.0 * build(deps): bump graphql from 16.6.0 to 16.8.1 in /webui * build(deps-dev): bump undici from 5.11.0 to 5.28.4 in /webui * build(deps): bump @babel/traverse from 7.19.3 to 7.24.8 in /webui * build(deps): bump github.com/99designs/gqlgen from 0.17.36 to 0.17.49 * build(deps): bump github.com/dvsekhvalnov/jose2go from 1.5.0 to 1.6.0 * build(deps-dev): bump semver from 5.7.1 to 5.7.2 in /webui * build(deps-dev): bump word-wrap from 1.2.3 to 1.2.5 in /webui * build(deps-dev): bump express from 4.18.1 to 4.19.2 in /webui * build(deps-dev): bump ws from 7.5.9 to 7.5.10 in /webui * build(deps): bump golang.org/x/vuln from 1.1.2 to 1.1.3 * build(deps): bump github.com/go-git/go-git/v5 from 5.8.1 to 5.12.0 * build(deps-dev): bump undici from 5.11.0 to 5.26.3 in /webui * build(deps): bump github.com/vbauerster/mpb/v8 from 8.5.2 to 8.7.4 * build(deps): bump webpack from 5.74.0 to 5.76.1 in /webui * build(deps): bump github.com/go-git/go-billy/v5 from 5.4.1 to 5.5.0 * build(deps): bump ua-parser-js from 0.7.31 to 0.7.33 in /webui * build(deps): bump github.com/vektah/gqlparser/v2 from 2.5.15 to 2.5.16 * build(deps): bump google.golang.org/protobuf from 1.31.0 to 1.33.0 * build(deps): bump json5 from 1.0.1 to 1.0.2 in /webui * build(deps): bump loader-utils from 2.0.2 to 2.0.4 in /webui * build(deps): bump minimatch and recursive-readdir in /webui * fix: add write for prs: stale/issue-and-pr * feat: allow for manual execution of workflow: cron * feat: increase operations per run for workflow: cron * fix: add missing `with` property to //.github/workflows:cron.yml * feat: add workflow for triaging stale issues and prs * feat: add initial editorconfig configuration file * feat: add a common file for git-blame ignored revisions * feat: add a commit message template * feat: add initial nix development shell * feat: update action library versions * feat: add concurrency limits to all pipelines * fix: bump to go v1.22.5 * fix: correct typo: acceps => accepts * build(deps): bump github.com/fatih/color from 1.16.0 to 1.17.0 (#1183) * build(deps): bump github.com/gorilla/mux from 1.8.0 to 1.8.1 (#1181) * build(deps): bump github.com/spf13/cobra from 1.7.0 to 1.8.1 (#1179) * build(deps): bump golang.org/x/vuln from 1.0.0 to 1.1.2 (#1171) * build(deps): bump golang.org/x/crypto from 0.21.0 to 0.25.0 (#1175) * build(deps): bump github.com/hashicorp/golang-lru/v2 from 2.0.5 to 2.0.7 (#1113) * build(deps): bump golang.org/x/text from 0.14.0 to 0.16.0 (#1173) * build(deps): bump github.com/vektah/gqlparser/v2 from 2.5.8 to 2.5.15 (#1164) * build(deps): bump github.com/hashicorp/go-retryablehttp (#1162) * build(deps): bump golang.org/x/net from 0.14.0 to 0.23.0 (#1166) * build(deps): bump golang.org/x/oauth2 from 0.11.0 to 0.21.0 (#1165) * build(deps): bump github.com/xanzy/go-gitlab from 0.90.0 to 0.106.0 (#1167) * build(deps): bump golang.org/x/sys from 0.11.0 to 0.14.0 (#1132) --- .gitignore | 1 + _service | 13 ++- _servicedata | 2 +- git-bug-0.8.0+git.1713935544.6d051a2.tar.gz | 3 - git-bug-0.8.0+git.1725552198.b0cc690.obscpio | 3 + git-bug.changes | 83 ++++++++++++++++++++ git-bug.obsinfo | 4 + git-bug.spec | 4 +- remote-config.patch | 14 ++-- vendor.tar.gz | 4 +- 10 files changed, 108 insertions(+), 23 deletions(-) delete mode 100644 git-bug-0.8.0+git.1713935544.6d051a2.tar.gz create mode 100644 git-bug-0.8.0+git.1725552198.b0cc690.obscpio create mode 100644 git-bug.obsinfo diff --git a/.gitignore b/.gitignore index bc5941e..ac54578 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .osc _scmsync.obsinfo build.specials.obscpio +git-bug/ diff --git a/_service b/_service index 057d144..4215177 100644 --- a/_service +++ b/_service @@ -1,19 +1,16 @@ - + 0.8.0+git https://github.com/MichaelMure/git-bug.git git - .git* enable mcepl@cepl.eu - + + *.tar gz - - git-bug - - - + + diff --git a/_servicedata b/_servicedata index b26ce67..ffe128b 100644 --- a/_servicedata +++ b/_servicedata @@ -1,4 +1,4 @@ https://github.com/MichaelMure/git-bug.git - 6d051a243c734489993c6733c1b21895d59e5e34 \ No newline at end of file + b0cc690854e501af9d91e2f09366263d629ceeaa \ No newline at end of file diff --git a/git-bug-0.8.0+git.1713935544.6d051a2.tar.gz b/git-bug-0.8.0+git.1713935544.6d051a2.tar.gz deleted file mode 100644 index ab24aa0..0000000 --- a/git-bug-0.8.0+git.1713935544.6d051a2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e2b961edb692b20ddc3454dde1eae2363ef20144a57c3a6b82ff190ead32ecdc -size 2597759 diff --git a/git-bug-0.8.0+git.1725552198.b0cc690.obscpio b/git-bug-0.8.0+git.1725552198.b0cc690.obscpio new file mode 100644 index 0000000..8058592 --- /dev/null +++ b/git-bug-0.8.0+git.1725552198.b0cc690.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3661c916b26066d398293d13695d76fb61e00e5d4fe049830afeaeba924335 +size 7206413 diff --git a/git-bug.changes b/git-bug.changes index 67b3f5e..4cc4927 100644 --- a/git-bug.changes +++ b/git-bug.changes @@ -1,3 +1,86 @@ +------------------------------------------------------------------- +Thu Oct 03 18:28:47 UTC 2024 - mcepl@cepl.eu + +- Update to version 0.8.0+git.1725552198.b0cc690: + * build(deps): bump golang.org/x/term from 0.23.0 to 0.24.0 (#1261) + * graphql: properly namespace Bug to make space for other entities (#1254) + * refactor: rename github test repository: test-github-bridge (#1256) + * build(deps-dev): bump the npm_and_yarn group across 1 directory with 4 updates (#1250) + * core: make label a common type, in a similar fashion as for status (#1252) + * chore: regenerate command completion and documentation (#1253) + * feat: update references to the git-bug organization (#1249) + * build(deps): bump github.com/vbauerster/mpb/v8 from 8.7.5 to 8.8.2 (#1248) + * build(deps): bump golang.org/x/sys from 0.23.0 to 0.24.0 (#1242) + * feat: add package to dev shell: delve (#1240) + * build(deps): bump golang.org/x/crypto from 0.25.0 to 0.26.0 (#1239) + * build(deps): bump golang.org/x/text from 0.16.0 to 0.17.0 (#1237) + * feat(ci): support a merge queue + * DOC: it is "new" not "configure" command (also was missing \) + * build(deps): bump golang.org/x/sys from 0.22.0 to 0.23.0 + * build(deps): bump golang.org/x/oauth2 from 0.21.0 to 0.22.0 + * build(deps): bump golang.org/x/sync from 0.7.0 to 0.8.0 + * fix: correct path for reusable workflow: lifecycle + * feat: merge go directive and toolchain specification + * feat: improved lifecycle management with stale-bot + * build(deps): bump github.com/vbauerster/mpb/v8 from 8.7.4 to 8.7.5 + * revert: "feat: increase operations per run for workflow: cron" + * chore: update go dependencies + * fix: run the presubmit pipeline for PRs + * chore: remove refs to deprecated io/ioutil + * fix: move codeql into an independent workflow + * feat: bump node versions to 16.x, 18.x, and 20.x + * feat: refactor pipelines into reusable workflows + * build(deps): bump jsonwebtoken and @graphql-tools/prisma-loader + * build(deps-dev): bump tough-cookie from 4.1.2 to 4.1.3 in /webui + * build(deps): bump github.com/xanzy/go-gitlab from 0.106.0 to 0.107.0 + * build(deps): bump graphql from 16.6.0 to 16.8.1 in /webui + * build(deps-dev): bump undici from 5.11.0 to 5.28.4 in /webui + * build(deps): bump @babel/traverse from 7.19.3 to 7.24.8 in /webui + * build(deps): bump github.com/99designs/gqlgen from 0.17.36 to 0.17.49 + * build(deps): bump github.com/dvsekhvalnov/jose2go from 1.5.0 to 1.6.0 + * build(deps-dev): bump semver from 5.7.1 to 5.7.2 in /webui + * build(deps-dev): bump word-wrap from 1.2.3 to 1.2.5 in /webui + * build(deps-dev): bump express from 4.18.1 to 4.19.2 in /webui + * build(deps-dev): bump ws from 7.5.9 to 7.5.10 in /webui + * build(deps): bump golang.org/x/vuln from 1.1.2 to 1.1.3 + * build(deps): bump github.com/go-git/go-git/v5 from 5.8.1 to 5.12.0 + * build(deps-dev): bump undici from 5.11.0 to 5.26.3 in /webui + * build(deps): bump github.com/vbauerster/mpb/v8 from 8.5.2 to 8.7.4 + * build(deps): bump webpack from 5.74.0 to 5.76.1 in /webui + * build(deps): bump github.com/go-git/go-billy/v5 from 5.4.1 to 5.5.0 + * build(deps): bump ua-parser-js from 0.7.31 to 0.7.33 in /webui + * build(deps): bump github.com/vektah/gqlparser/v2 from 2.5.15 to 2.5.16 + * build(deps): bump google.golang.org/protobuf from 1.31.0 to 1.33.0 + * build(deps): bump json5 from 1.0.1 to 1.0.2 in /webui + * build(deps): bump loader-utils from 2.0.2 to 2.0.4 in /webui + * build(deps): bump minimatch and recursive-readdir in /webui + * fix: add write for prs: stale/issue-and-pr + * feat: allow for manual execution of workflow: cron + * feat: increase operations per run for workflow: cron + * fix: add missing `with` property to //.github/workflows:cron.yml + * feat: add workflow for triaging stale issues and prs + * feat: add initial editorconfig configuration file + * feat: add a common file for git-blame ignored revisions + * feat: add a commit message template + * feat: add initial nix development shell + * feat: update action library versions + * feat: add concurrency limits to all pipelines + * fix: bump to go v1.22.5 + * fix: correct typo: acceps => accepts + * build(deps): bump github.com/fatih/color from 1.16.0 to 1.17.0 (#1183) + * build(deps): bump github.com/gorilla/mux from 1.8.0 to 1.8.1 (#1181) + * build(deps): bump github.com/spf13/cobra from 1.7.0 to 1.8.1 (#1179) + * build(deps): bump golang.org/x/vuln from 1.0.0 to 1.1.2 (#1171) + * build(deps): bump golang.org/x/crypto from 0.21.0 to 0.25.0 (#1175) + * build(deps): bump github.com/hashicorp/golang-lru/v2 from 2.0.5 to 2.0.7 (#1113) + * build(deps): bump golang.org/x/text from 0.14.0 to 0.16.0 (#1173) + * build(deps): bump github.com/vektah/gqlparser/v2 from 2.5.8 to 2.5.15 (#1164) + * build(deps): bump github.com/hashicorp/go-retryablehttp (#1162) + * build(deps): bump golang.org/x/net from 0.14.0 to 0.23.0 (#1166) + * build(deps): bump golang.org/x/oauth2 from 0.11.0 to 0.21.0 (#1165) + * build(deps): bump github.com/xanzy/go-gitlab from 0.90.0 to 0.106.0 (#1167) + * build(deps): bump golang.org/x/sys from 0.11.0 to 0.14.0 (#1132) + ------------------------------------------------------------------- Sat Aug 3 15:16:21 UTC 2024 - Matej Cepl diff --git a/git-bug.obsinfo b/git-bug.obsinfo new file mode 100644 index 0000000..d1b0dbb --- /dev/null +++ b/git-bug.obsinfo @@ -0,0 +1,4 @@ +name: git-bug +version: 0.8.0+git.1725552198.b0cc690 +mtime: 1725552198 +commit: b0cc690854e501af9d91e2f09366263d629ceeaa diff --git a/git-bug.spec b/git-bug.spec index 3b0a865..4eaccd2 100644 --- a/git-bug.spec +++ b/git-bug.spec @@ -17,7 +17,7 @@ Name: git-bug -Version: 0.8.0+git.1713935544.6d051a2 +Version: 0.8.0+git.1725552198.b0cc690 Release: 0 Summary: Distributed, offline-first bug tracker embedded in git, with bridges License: MIT @@ -32,7 +32,7 @@ Source1: vendor.tar.gz # # add a command to export bugs as raw operations # Patch0: 501-export.patch BuildRequires: golang-packaging -BuildRequires: golang(API) = 1.18 +BuildRequires: golang(API) = 1.22 %description git-bug is a bug tracker that: diff --git a/remote-config.patch b/remote-config.patch index 4cd834e..45b73d4 100644 --- a/remote-config.patch +++ b/remote-config.patch @@ -13,10 +13,10 @@ Subject: [PATCH] pull, push: try reading git-bug.remote config value before --- a/commands/pull.go +++ b/commands/pull.go @@ -8,6 +8,7 @@ import ( - "github.com/MichaelMure/git-bug/commands/completion" - "github.com/MichaelMure/git-bug/commands/execenv" - "github.com/MichaelMure/git-bug/entity" -+ "github.com/MichaelMure/git-bug/repository" + "github.com/git-bug/git-bug/commands/completion" + "github.com/git-bug/git-bug/commands/execenv" + "github.com/git-bug/git-bug/entity" ++ "github.com/git-bug/git-bug/repository" ) func newPullCommand(env *execenv.Env) *cobra.Command { @@ -48,9 +48,9 @@ Subject: [PATCH] pull, push: try reading git-bug.remote config value before +++ b/commands/push.go @@ -7,6 +7,7 @@ import ( - "github.com/MichaelMure/git-bug/commands/completion" - "github.com/MichaelMure/git-bug/commands/execenv" -+ "github.com/MichaelMure/git-bug/repository" + "github.com/git-bug/git-bug/commands/completion" + "github.com/git-bug/git-bug/commands/execenv" ++ "github.com/git-bug/git-bug/repository" ) func newPushCommand(env *execenv.Env) *cobra.Command { diff --git a/vendor.tar.gz b/vendor.tar.gz index ad81456..d7517c2 100644 --- a/vendor.tar.gz +++ b/vendor.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb3ee611b914d7b1632914d5e15464f07d2094c3eb0abaa6b08c97a7d486e550 -size 6758351 +oid sha256:b44f1a26e4b38ceca0c7474e3befd040ce31b6a68d15537221f9e18731ea711c +size 7532472