62a87bee49
Diff: https://github.com/garethgeorge/backrest/compare/v1.13.0...v1.14.1 Changelog: https://github.com/garethgeorge/backrest/releases/tag/v1.14.1 Add backrest-tray with tray support enabled. Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>
53 lines
1.7 KiB
Diff
53 lines
1.7 KiB
Diff
From c2d19683ba90d7cd3919ca3ea21ae4332d3ea82b Mon Sep 17 00:00:00 2001
|
|
From: phanirithvij <phanirithvij2000@gmail.com>
|
|
Date: Sun, 12 Jul 2026 14:39:09 +0530
|
|
Subject: [PATCH 1/3] fix: rm deprecated import
|
|
github.com/ncruces/go-sqlite3/embed
|
|
|
|
Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>
|
|
---
|
|
internal/kvstore/sqlitekvstore.go | 1 -
|
|
internal/logstore/logstore.go | 1 -
|
|
internal/oplog/sqlitestore/sqlitestore.go | 1 -
|
|
3 files changed, 3 deletions(-)
|
|
|
|
diff --git a/internal/kvstore/sqlitekvstore.go b/internal/kvstore/sqlitekvstore.go
|
|
index 9453228..e360a2c 100644
|
|
--- a/internal/kvstore/sqlitekvstore.go
|
|
+++ b/internal/kvstore/sqlitekvstore.go
|
|
@@ -8,7 +8,6 @@ import (
|
|
"strings"
|
|
|
|
_ "github.com/ncruces/go-sqlite3/driver"
|
|
- _ "github.com/ncruces/go-sqlite3/embed"
|
|
)
|
|
|
|
var ErrNotExist = errors.New("key does not exist")
|
|
diff --git a/internal/logstore/logstore.go b/internal/logstore/logstore.go
|
|
index 48e0509..dd6ac17 100644
|
|
--- a/internal/logstore/logstore.go
|
|
+++ b/internal/logstore/logstore.go
|
|
@@ -17,7 +17,6 @@ import (
|
|
|
|
"github.com/hashicorp/go-multierror"
|
|
_ "github.com/ncruces/go-sqlite3/driver"
|
|
- _ "github.com/ncruces/go-sqlite3/embed"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
diff --git a/internal/oplog/sqlitestore/sqlitestore.go b/internal/oplog/sqlitestore/sqlitestore.go
|
|
index 41b12ac..08a53e0 100644
|
|
--- a/internal/oplog/sqlitestore/sqlitestore.go
|
|
+++ b/internal/oplog/sqlitestore/sqlitestore.go
|
|
@@ -27,7 +27,6 @@ import (
|
|
|
|
"github.com/gofrs/flock"
|
|
_ "github.com/ncruces/go-sqlite3/driver"
|
|
- _ "github.com/ncruces/go-sqlite3/embed"
|
|
"github.com/ncruces/go-sqlite3/vfs"
|
|
"github.com/ncruces/go-sqlite3/vfs/memdb"
|
|
_ "github.com/ncruces/go-sqlite3/vfs/memdb"
|
|
--
|
|
2.54.0
|
|
|