aboutsummaryrefslogtreecommitdiffstats
path: root/cache
diff options
context:
space:
mode:
Diffstat (limited to 'cache')
-rw-r--r--cache/bug_cache.go10
-rw-r--r--cache/bug_excerpt.go8
-rw-r--r--cache/bug_subcache.go10
-rw-r--r--cache/cached.go8
-rw-r--r--cache/filter.go6
-rw-r--r--cache/identity_cache.go6
-rw-r--r--cache/identity_excerpt.go2
-rw-r--r--cache/identity_subcache.go6
-rw-r--r--cache/lru_id_cache.go2
-rw-r--r--cache/multi_repo_cache.go2
-rw-r--r--cache/repo_cache.go8
-rw-r--r--cache/repo_cache_common.go8
-rw-r--r--cache/repo_cache_test.go12
-rw-r--r--cache/subcache.go6
-rw-r--r--cache/with_snapshot.go4
15 files changed, 49 insertions, 49 deletions
diff --git a/cache/bug_cache.go b/cache/bug_cache.go
index 3466f186..a0670959 100644
--- a/cache/bug_cache.go
+++ b/cache/bug_cache.go
@@ -4,11 +4,11 @@ import (
"fmt"
"time"
- "github.com/MichaelMure/git-bug/entities/bug"
- "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/bug"
+ "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 ErrNoMatchingOp = fmt.Errorf("no matching operation found")
diff --git a/cache/bug_excerpt.go b/cache/bug_excerpt.go
index 26b7ec74..12331b62 100644
--- a/cache/bug_excerpt.go
+++ b/cache/bug_excerpt.go
@@ -4,10 +4,10 @@ import (
"encoding/gob"
"time"
- "github.com/MichaelMure/git-bug/entities/bug"
- "github.com/MichaelMure/git-bug/entities/common"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/util/lamport"
+ "github.com/git-bug/git-bug/entities/bug"
+ "github.com/git-bug/git-bug/entities/common"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/util/lamport"
)
// Package initialisation used to register the type for (de)serialization
diff --git a/cache/bug_subcache.go b/cache/bug_subcache.go
index 21c9a6d2..a1f4498a 100644
--- a/cache/bug_subcache.go
+++ b/cache/bug_subcache.go
@@ -5,11 +5,11 @@ import (
"sort"
"time"
- "github.com/MichaelMure/git-bug/entities/bug"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/query"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/entities/bug"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/query"
+ "github.com/git-bug/git-bug/repository"
)
type RepoCacheBug struct {
diff --git a/cache/cached.go b/cache/cached.go
index 9f9e170d..dc40d948 100644
--- a/cache/cached.go
+++ b/cache/cached.go
@@ -3,10 +3,10 @@ package cache
import (
"sync"
- "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/lamport"
+ "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/lamport"
)
var _ CacheEntity = &CachedEntityBase[dag.Snapshot, dag.Operation]{}
diff --git a/cache/filter.go b/cache/filter.go
index 5a15e402..199e17b3 100644
--- a/cache/filter.go
+++ b/cache/filter.go
@@ -3,9 +3,9 @@ package cache
import (
"strings"
- "github.com/MichaelMure/git-bug/entities/common"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/query"
+ "github.com/git-bug/git-bug/entities/common"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/query"
)
// Filter is a predicate that match a subset of bugs
diff --git a/cache/identity_cache.go b/cache/identity_cache.go
index 466b6150..60659a4c 100644
--- a/cache/identity_cache.go
+++ b/cache/identity_cache.go
@@ -3,9 +3,9 @@ package cache
import (
"sync"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "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/repository"
)
var _ identity.Interface = &IdentityCache{}
diff --git a/cache/identity_excerpt.go b/cache/identity_excerpt.go
index 79d88537..8e654c86 100644
--- a/cache/identity_excerpt.go
+++ b/cache/identity_excerpt.go
@@ -5,7 +5,7 @@ import (
"fmt"
"strings"
- "github.com/MichaelMure/git-bug/entity"
+ "github.com/git-bug/git-bug/entity"
)
// Package initialisation used to register the type for (de)serialization
diff --git a/cache/identity_subcache.go b/cache/identity_subcache.go
index 05a91358..42b4d686 100644
--- a/cache/identity_subcache.go
+++ b/cache/identity_subcache.go
@@ -3,9 +3,9 @@ package cache
import (
"fmt"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "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/repository"
)
type RepoCacheIdentity struct {
diff --git a/cache/lru_id_cache.go b/cache/lru_id_cache.go
index b76f5312..0b551c23 100644
--- a/cache/lru_id_cache.go
+++ b/cache/lru_id_cache.go
@@ -5,7 +5,7 @@ import (
lru "github.com/hashicorp/golang-lru/v2"
- "github.com/MichaelMure/git-bug/entity"
+ "github.com/git-bug/git-bug/entity"
)
type lruIdCache struct {
diff --git a/cache/multi_repo_cache.go b/cache/multi_repo_cache.go
index da9544cf..91ca34b4 100644
--- a/cache/multi_repo_cache.go
+++ b/cache/multi_repo_cache.go
@@ -3,7 +3,7 @@ package cache
import (
"fmt"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/repository"
)
const lockfile = "lock"
diff --git a/cache/repo_cache.go b/cache/repo_cache.go
index 19b6e266..eb441d9e 100644
--- a/cache/repo_cache.go
+++ b/cache/repo_cache.go
@@ -7,10 +7,10 @@ import (
"strconv"
"sync"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/repository"
- "github.com/MichaelMure/git-bug/util/multierr"
- "github.com/MichaelMure/git-bug/util/process"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/repository"
+ "github.com/git-bug/git-bug/util/multierr"
+ "github.com/git-bug/git-bug/util/process"
)
// 1: original format
diff --git a/cache/repo_cache_common.go b/cache/repo_cache_common.go
index 759536bd..17568c27 100644
--- a/cache/repo_cache_common.go
+++ b/cache/repo_cache_common.go
@@ -5,10 +5,10 @@ import (
"github.com/pkg/errors"
- "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/multierr"
+ "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/multierr"
)
func (c *RepoCache) Name() string {
diff --git a/cache/repo_cache_test.go b/cache/repo_cache_test.go
index e3a9cc15..48704783 100644
--- a/cache/repo_cache_test.go
+++ b/cache/repo_cache_test.go
@@ -8,11 +8,11 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
- "github.com/MichaelMure/git-bug/entities/bug"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/query"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/entities/bug"
+ "github.com/git-bug/git-bug/entities/identity"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/query"
+ "github.com/git-bug/git-bug/repository"
)
func TestCache(t *testing.T) {
@@ -331,7 +331,7 @@ func TestCacheEviction(t *testing.T) {
}
func TestLongDescription(t *testing.T) {
- // See https://github.com/MichaelMure/git-bug/issues/606
+ // See https://github.com/git-bug/git-bug/issues/606
text := strings.Repeat("x", 65536)
diff --git a/cache/subcache.go b/cache/subcache.go
index 1306428f..d9b6db8d 100644
--- a/cache/subcache.go
+++ b/cache/subcache.go
@@ -9,9 +9,9 @@ import (
"github.com/pkg/errors"
- "github.com/MichaelMure/git-bug/entities/identity"
- "github.com/MichaelMure/git-bug/entity"
- "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/repository"
)
type Excerpt interface {
diff --git a/cache/with_snapshot.go b/cache/with_snapshot.go
index 674b6923..af61971a 100644
--- a/cache/with_snapshot.go
+++ b/cache/with_snapshot.go
@@ -3,8 +3,8 @@ package cache
import (
"sync"
- "github.com/MichaelMure/git-bug/entity/dag"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/entity/dag"
+ "github.com/git-bug/git-bug/repository"
)
var _ dag.Interface[dag.Snapshot, dag.OperationWithApply[dag.Snapshot]] = &withSnapshot[dag.Snapshot, dag.OperationWithApply[dag.Snapshot]]{}