3413 Commits

Author SHA1 Message Date
Philip O'Toole
02de93a4f6 Merge pull request #1098 from rqlite/dont-check-bootstrap-expect
Bootstrapping doesn't need bootstrap-expect
2022-10-28 17:20:24 -04:00
Philip O'Toole
4942292490 More system-level bootstrap testing 2022-10-28 17:04:21 -04:00
Philip O'Toole
2cfabf3a32 Update test function prototypes 2022-10-28 17:02:57 -04:00
Philip O'Toole
62e229d266 Improve comments 2022-10-28 16:46:20 -04:00
Philip O'Toole
83a481ff03 Update CHANGELOG 2022-10-28 16:41:52 -04:00
Philip O'Toole
f7c6ce6696 Bootstrapping doesn't need bootstrap-expect
It's the Store object that needs it.
2022-10-28 16:40:40 -04:00
Philip O'Toole
cd45070f8c Update KUBERNETES.md 2022-10-28 16:25:17 -04:00
Philip O'Toole
22040148cc Update KUBERNETES.md 2022-10-28 16:18:57 -04:00
Philip O'Toole
c21d5baf9d Update KUBERNETES.md 2022-10-28 16:00:25 -04:00
Philip O'Toole
1a21396816 Merge branch 'master' of github.com:rqlite/rqlite 2022-10-28 14:35:48 -04:00
Philip O'Toole
25085c13cf Extend liveness testing 2022-10-28 14:35:16 -04:00
Philip O'Toole
219e54be21 Update KUBERNETES.md 2022-10-28 14:33:06 -04:00
Philip O'Toole
6f3b7afd21 Update KUBERNETES.md 2022-10-28 14:32:55 -04:00
Philip O'Toole
ce258ceb89 Merge pull request #1097 from rqlite/start-http-service-asap
Start HTTP server ASAP
2022-10-28 12:47:30 -04:00
Philip O'Toole
f264e8b05e Update CHANGELOG 2022-10-28 11:38:05 -04:00
Philip O'Toole
edec152ec9 Fix Store unit test 2022-10-28 11:36:30 -04:00
Philip O'Toole
9c68b13868 Better error from /nodes when Store is not open 2022-10-28 11:34:28 -04:00
Philip O'Toole
4ab4b08049 Less changes 2022-10-28 11:28:39 -04:00
Philip O'Toole
e158ae8a72 Start HTTP server ASAP 2022-10-28 11:27:36 -04:00
Philip O'Toole
158d8b1fc6 Update KUBERNETES.md 2022-10-28 09:05:14 -04:00
Philip O'Toole
63db2c2d0f Update KUBERNETES.md 2022-10-28 09:00:55 -04:00
Philip O'Toole
5bbd2214fd 7.10.0 is going out v7.10.0 2022-10-26 21:35:29 -04:00
Philip O'Toole
547bb84bbe Merge pull request #1096 from rqlite/sqlite-3.39
Upgrade to SQLite 3.39.4
2022-10-26 20:59:39 -04:00
Philip O'Toole
f31f89ed2c Update CHANGELOG 2022-10-26 20:43:19 -04:00
Philip O'Toole
a031c8eefa Upgrade to SQLite 3.39.4
Also upgrade other dependencies.
2022-10-26 20:42:02 -04:00
Philip O'Toole
fc51243dd8 Merge pull request #1095 from rqlite/sqlite-version-display
Log, and add to version output, SQLite release
2022-10-26 20:35:29 -04:00
Philip O'Toole
942df3676c Update CHANGELOG 2022-10-26 20:30:06 -04:00
Philip O'Toole
9054ea0f77 Merge branch 'master' of github.com:rqlite/rqlite into sqlite-version-display 2022-10-26 20:29:06 -04:00
Philip O'Toole
a688d8053d Log, and add to version output, SQLite release 2022-10-26 20:28:12 -04:00
Philip O'Toole
da6fab595a Update CHANGELOG.md
https://github.com/rqlite/rqlite/pull/1094
2022-10-26 15:43:32 -04:00
Philip O'Toole
53e52061da Merge pull request #1094 from sgalsaleh/update-go-mod-to-fix-cves
Update packages to resolve CVE-2022-32149 and CVE-2022-27664
2022-10-26 15:43:10 -04:00
Salah Aldeen Al Saleh
36eb4d87f6 Update packages to resolve CVE-2022-32149 and CVE-2022-27664 2022-10-26 19:28:02 +00:00
Philip O'Toole
476e67ca30 Merge pull request #1093 from Juneezee/test/t.TempDir
test: use `T.TempDir` to create temporary test directory
2022-10-26 12:50:45 -04:00
Eng Zer Jun
93eebc6e77 test: fix failing store_restart.test.go on Windows
Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
2022-10-27 00:23:41 +08:00
Eng Zer Jun
da103c9b3e test: fix failing Test_OpenStoreSingleNode on Windows
Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
2022-10-27 00:23:41 +08:00
Eng Zer Jun
6444926be7 test: fix failing Test_SingleNodeSnapshotInMem on Windows
Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
2022-10-27 00:23:41 +08:00
Eng Zer Jun
6969165330 test: fix failing Test_SingleNodeSnapshotOnDisk on Windows
Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
2022-10-27 00:13:01 +08:00
Eng Zer Jun
5141eff5fc test: use T.TempDir to create temporary test directory
This commit replaces `ioutil.TempDir` with `t.TempDir` in tests. The
directory created by `t.TempDir` is automatically removed when the test
and all its subtests complete.

Prior to this commit, temporary directory created using `ioutil.TempDir`
needs to be removed manually by calling `os.RemoveAll`, which is omitted
in some tests. The error handling boilerplate e.g.
	defer func() {
		if err := os.RemoveAll(dir); err != nil {
			t.Fatal(err)
		}
	}
is also tedious, but `t.TempDir` handles this for us nicely.

Reference: https://pkg.go.dev/testing#T.TempDir
Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
2022-10-26 23:45:46 +08:00
Philip O'Toole
694d9c4592 Update KUBERNETES.md 2022-10-24 16:57:58 -04:00
Philip O'Toole
0dc8fb6830 Update CHANGELOG.md 2022-10-24 16:21:01 -04:00
Philip O'Toole
7f1380869b Update CHANGELOG.md 2022-10-24 16:02:05 -04:00
Philip O'Toole
187098927b 7.9.2 is going out v7.9.2 2022-10-24 14:26:14 -04:00
Philip O'Toole
3a261ce16e Unit test remote load error handling 2022-10-24 14:12:48 -04:00
Philip O'Toole
0e8e266f96 Merge pull request #1090 from rqlite/fix-remote-load-errors
Fix remote-load error handling
2022-10-24 13:49:07 -04:00
Philip O'Toole
055e6c3121 Update CHANGELOG.md 2022-10-24 13:43:43 -04:00
Philip O'Toole
d6b8390658 Handle remote backup errors correctly 2022-10-24 13:38:23 -04:00
Philip O'Toole
893fbb0249 More store-level load operation logging 2022-10-24 13:33:58 -04:00
Philip O'Toole
65cd556549 Fix remote-load error handling
Error from remote node was being dropped.
2022-10-24 13:29:48 -04:00
Philip O'Toole
ec0750a4c2 Update service.go 2022-10-24 13:01:28 -04:00
Philip O'Toole
b68e250847 Update CHANGELOG.md 2022-10-24 12:26:48 -04:00