aboutsummaryrefslogtreecommitdiffstats
path: root/entities/bug
diff options
context:
space:
mode:
authorsudoforge <no-reply@sudoforge.com>2024-08-24 08:08:00 -0700
committerGitHub <noreply@github.com>2024-08-24 08:08:00 -0700
commit2004fa79e6ae7645d964a03e2ae2dd808f7d486a (patch)
tree64f3d5291d6957bd57fdb168b6aa10452f0fa1cb /entities/bug
parent63295b1106e0ad01bc1e0d682b71df14558b293a (diff)
downloadgit-bug-2004fa79e6ae7645d964a03e2ae2dd808f7d486a.tar.gz
feat: update references to the git-bug organization (#1249)
The repository was recently moved to the git-bug organization on github. This change refactors references to the repository to ensure that they use the updated owner URI. Closes: #1243 Change-Id: I799712354c6ba25cdd8b06286275850c52efe6ff
Diffstat (limited to 'entities/bug')
-rw-r--r--entities/bug/bug.go10
-rw-r--r--entities/bug/bug_actions.go8
-rw-r--r--entities/bug/comment.go8
-rw-r--r--entities/bug/label.go2
-rw-r--r--entities/bug/op_add_comment.go12
-rw-r--r--entities/bug/op_add_comment_test.go8
-rw-r--r--entities/bug/op_create.go12
-rw-r--r--entities/bug/op_create_test.go10
-rw-r--r--entities/bug/op_edit_comment.go12
-rw-r--r--entities/bug/op_edit_comment_test.go8
-rw-r--r--entities/bug/op_label_change.go8
-rw-r--r--entities/bug/op_label_change_test.go6
-rw-r--r--entities/bug/op_set_metadata.go6
-rw-r--r--entities/bug/op_set_status.go10
-rw-r--r--entities/bug/op_set_status_test.go8
-rw-r--r--entities/bug/op_set_title.go10
-rw-r--r--entities/bug/op_set_title_test.go6
-rw-r--r--entities/bug/operation.go4
-rw-r--r--entities/bug/operation_test.go8
-rw-r--r--entities/bug/resolver.go4
-rw-r--r--entities/bug/snapshot.go8
-rw-r--r--entities/bug/timeline.go8
22 files changed, 88 insertions, 88 deletions
diff --git a/entities/bug/bug.go b/entities/bug/bug.go
index deb00c7c..8958fbd0 100644
--- a/entities/bug/bug.go
+++ b/entities/bug/bug.go
@@ -4,11 +4,11 @@ package bug
import (
"fmt"
- "github.com/MichaelMure/git-bug/entities/common"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/entities/common"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/repository"
)
var _ Interface = &Bug{}
diff --git a/entities/bug/bug_actions.go b/entities/bug/bug_actions.go
index 651d24dc..c20b81f3 100644
--- a/entities/bug/bug_actions.go
+++ b/entities/bug/bug_actions.go
@@ -1,10 +1,10 @@
package bug
import (
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/repository"
)
// Fetch retrieve updates from a remote
diff --git a/entities/bug/comment.go b/entities/bug/comment.go
index 7835c5a8..99da635d 100644
--- a/entities/bug/comment.go
+++ b/entities/bug/comment.go
@@ -3,10 +3,10 @@ package bug
import (
"github.com/dustin/go-humanize"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/repository"
- "github.com/MichaelMure/git-bug/util/timestamp"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/repository"
+ "github.com/git-bug/git-bug/util/timestamp"
)
// Comment represent a comment in a Bug
diff --git a/entities/bug/label.go b/entities/bug/label.go
index 79b5f591..948a5b47 100644
--- a/entities/bug/label.go
+++ b/entities/bug/label.go
@@ -7,7 +7,7 @@ import (
fcolor "github.com/fatih/color"
- "github.com/MichaelMure/git-bug/util/text"
+ "github.com/git-bug/git-bug/util/text"
)
type Label string
diff --git a/entities/bug/op_add_comment.go b/entities/bug/op_add_comment.go
index 5edef9d0..ea709397 100644
--- a/entities/bug/op_add_comment.go
+++ b/entities/bug/op_add_comment.go
@@ -3,12 +3,12 @@ package bug
import (
"fmt"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
- "github.com/MichaelMure/git-bug/repository"
- "github.com/MichaelMure/git-bug/util/text"
- "github.com/MichaelMure/git-bug/util/timestamp"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/repository"
+ "github.com/git-bug/git-bug/util/text"
+ "github.com/git-bug/git-bug/util/timestamp"
)
var _ Operation = &AddCommentOperation{}
diff --git a/entities/bug/op_add_comment_test.go b/entities/bug/op_add_comment_test.go
index fee9e785..901ed6f1 100644
--- a/entities/bug/op_add_comment_test.go
+++ b/entities/bug/op_add_comment_test.go
@@ -3,10 +3,10 @@ package bug
import (
"testing"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/repository"
)
func TestAddCommentSerialize(t *testing.T) {
diff --git a/entities/bug/op_create.go b/entities/bug/op_create.go
index 2afea406..c7b6bada 100644
--- a/entities/bug/op_create.go
+++ b/entities/bug/op_create.go
@@ -3,12 +3,12 @@ package bug
import (
"fmt"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
- "github.com/MichaelMure/git-bug/repository"
- "github.com/MichaelMure/git-bug/util/text"
- "github.com/MichaelMure/git-bug/util/timestamp"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/repository"
+ "github.com/git-bug/git-bug/util/text"
+ "github.com/git-bug/git-bug/util/timestamp"
)
var _ Operation = &CreateOperation{}
diff --git a/entities/bug/op_create_test.go b/entities/bug/op_create_test.go
index d8bde46f..a7367acc 100644
--- a/entities/bug/op_create_test.go
+++ b/entities/bug/op_create_test.go
@@ -6,11 +6,11 @@ import (
"github.com/stretchr/testify/require"
- "github.com/MichaelMure/git-bug/entities/common"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/entities/common"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/repository"
)
func TestCreate(t *testing.T) {
diff --git a/entities/bug/op_edit_comment.go b/entities/bug/op_edit_comment.go
index 6ac09fd7..18f130f9 100644
--- a/entities/bug/op_edit_comment.go
+++ b/entities/bug/op_edit_comment.go
@@ -5,13 +5,13 @@ import (
"github.com/pkg/errors"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
- "github.com/MichaelMure/git-bug/repository"
- "github.com/MichaelMure/git-bug/util/timestamp"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/repository"
+ "github.com/git-bug/git-bug/util/timestamp"
- "github.com/MichaelMure/git-bug/util/text"
+ "github.com/git-bug/git-bug/util/text"
)
var _ Operation = &EditCommentOperation{}
diff --git a/entities/bug/op_edit_comment_test.go b/entities/bug/op_edit_comment_test.go
index 2ca1345e..8a1f70d9 100644
--- a/entities/bug/op_edit_comment_test.go
+++ b/entities/bug/op_edit_comment_test.go
@@ -6,10 +6,10 @@ import (
"github.com/stretchr/testify/require"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/repository"
)
func TestEdit(t *testing.T) {
diff --git a/entities/bug/op_label_change.go b/entities/bug/op_label_change.go
index 0d13fe9e..b65b8ffb 100644
--- a/entities/bug/op_label_change.go
+++ b/entities/bug/op_label_change.go
@@ -8,10 +8,10 @@ import (
"github.com/pkg/errors"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
- "github.com/MichaelMure/git-bug/util/timestamp"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/util/timestamp"
)
var _ Operation = &LabelChangeOperation{}
diff --git a/entities/bug/op_label_change_test.go b/entities/bug/op_label_change_test.go
index e6dc8803..d184e47a 100644
--- a/entities/bug/op_label_change_test.go
+++ b/entities/bug/op_label_change_test.go
@@ -3,9 +3,9 @@ package bug
import (
"testing"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
)
func TestLabelChangeSerialize(t *testing.T) {
diff --git a/entities/bug/op_set_metadata.go b/entities/bug/op_set_metadata.go
index b4aab78c..fd5cc94b 100644
--- a/entities/bug/op_set_metadata.go
+++ b/entities/bug/op_set_metadata.go
@@ -1,9 +1,9 @@
package bug
import (
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
)
func NewSetMetadataOp(author identity.Interface, unixTime int64, target entity.Id, newMetadata map[string]string) *dag.SetMetadataOperation[*Snapshot] {
diff --git a/entities/bug/op_set_status.go b/entities/bug/op_set_status.go
index 68199129..641065a0 100644
--- a/entities/bug/op_set_status.go
+++ b/entities/bug/op_set_status.go
@@ -3,11 +3,11 @@ package bug
import (
"github.com/pkg/errors"
- "github.com/MichaelMure/git-bug/entities/common"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
- "github.com/MichaelMure/git-bug/util/timestamp"
+ "github.com/git-bug/git-bug/entities/common"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/util/timestamp"
)
var _ Operation = &SetStatusOperation{}
diff --git a/entities/bug/op_set_status_test.go b/entities/bug/op_set_status_test.go
index 0f6d358a..449e40ca 100644
--- a/entities/bug/op_set_status_test.go
+++ b/entities/bug/op_set_status_test.go
@@ -3,10 +3,10 @@ package bug
import (
"testing"
- "github.com/MichaelMure/git-bug/entities/common"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/entities/common"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
)
func TestSetStatusSerialize(t *testing.T) {
diff --git a/entities/bug/op_set_title.go b/entities/bug/op_set_title.go
index 6e445aa6..7ec98281 100644
--- a/entities/bug/op_set_title.go
+++ b/entities/bug/op_set_title.go
@@ -3,12 +3,12 @@ package bug
import (
"fmt"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
- "github.com/MichaelMure/git-bug/util/timestamp"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/util/timestamp"
- "github.com/MichaelMure/git-bug/util/text"
+ "github.com/git-bug/git-bug/util/text"
)
var _ Operation = &SetTitleOperation{}
diff --git a/entities/bug/op_set_title_test.go b/entities/bug/op_set_title_test.go
index 82425ab4..60157c6c 100644
--- a/entities/bug/op_set_title_test.go
+++ b/entities/bug/op_set_title_test.go
@@ -3,9 +3,9 @@ package bug
import (
"testing"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
)
func TestSetTitleSerialize(t *testing.T) {
diff --git a/entities/bug/operation.go b/entities/bug/operation.go
index 04365046..9c8d2016 100644
--- a/entities/bug/operation.go
+++ b/entities/bug/operation.go
@@ -4,8 +4,8 @@ import (
"encoding/json"
"fmt"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
)
const (
diff --git a/entities/bug/operation_test.go b/entities/bug/operation_test.go
index 4bec49ae..d24faa7a 100644
--- a/entities/bug/operation_test.go
+++ b/entities/bug/operation_test.go
@@ -6,10 +6,10 @@ import (
"github.com/stretchr/testify/require"
- "github.com/MichaelMure/git-bug/entities/common"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity/dag"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/entities/common"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/repository"
)
// TODO: move to entity/dag?
diff --git a/entities/bug/resolver.go b/entities/bug/resolver.go
index b0a05917..07ff66f5 100644
--- a/entities/bug/resolver.go
+++ b/entities/bug/resolver.go
@@ -1,8 +1,8 @@
package bug
import (
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/repository"
)
var _ entity.Resolver = &SimpleResolver{}
diff --git a/entities/bug/snapshot.go b/entities/bug/snapshot.go
index 5c260d85..ca352284 100644
--- a/entities/bug/snapshot.go
+++ b/entities/bug/snapshot.go
@@ -4,10 +4,10 @@ import (
"fmt"
"time"
- "github.com/MichaelMure/git-bug/entities/common"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/entities/common"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/entity/dag"
)
var _ dag.Snapshot = &Snapshot{}
diff --git a/entities/bug/timeline.go b/entities/bug/timeline.go
index 84ece262..4f3d956e 100644
--- a/entities/bug/timeline.go
+++ b/entities/bug/timeline.go
@@ -3,10 +3,10 @@ package bug
import (
"strings"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/repository"
- "github.com/MichaelMure/git-bug/util/timestamp"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/repository"
+ "github.com/git-bug/git-bug/util/timestamp"
)
type TimelineItem interface {