Merge branch 'master' into rqlite10-snapshot

This commit is contained in:
Philip O'Toole
2026-01-18 11:04:03 -05:00
4 changed files with 13 additions and 7 deletions

View File

@@ -1,4 +1,9 @@
## v9.3.14 (January 9th 2025)
## v9.3.15 (January 16th 2026)
### Implementation changes and bug fixes
- [PR #2447](https://github.com/rqlite/rqlite/pull/2447): Upgrade SQL parser.
- [PR #2448](https://github.com/rqlite/rqlite/pull/2448): Upgrade SQLite to 3.51.2.
## v9.3.14 (January 9th 2026)
### Implementation changes and bug fixes
- [PR #2444](https://github.com/rqlite/rqlite/pull/2444): Increase WAL Checkpoint busy timeout to 250ms.
- [PR #2445](https://github.com/rqlite/rqlite/pull/2445): Implement a must-checkpoint-WAL after multiple failures policy.

View File

@@ -5,6 +5,7 @@
</picture>
[![Circle CI](https://circleci.com/gh/rqlite/rqlite/tree/master.svg?style=svg)](https://circleci.com/gh/rqlite/rqlite/tree/master)
[![AppVeyor](https://img.shields.io/appveyor/ci/otoolep/rqlite/master?logo=appveyor)](https://ci.appveyor.com/project/otoolep/rqlite)
[![Docker](https://img.shields.io/docker/pulls/rqlite/rqlite?style=plastic)](https://hub.docker.com/r/rqlite/rqlite/)
[![Office Hours](https://img.shields.io/badge/Office%20Hours--yellow.svg)](https://rqlite.io/office-hours)
[![Slack](https://img.shields.io/badge/Slack--purple.svg)](https://www.rqlite.io/join-slack)

4
go.mod
View File

@@ -16,7 +16,7 @@ require (
github.com/peterh/liner v1.2.2
github.com/rqlite/raft-boltdb/v2 v2.0.0-20230523104317-c08e70f4de48
github.com/rqlite/rqlite-disco-clients v0.0.0-20250205044118-8ada2b350099
github.com/rqlite/sql v0.0.0-20251204023435-65660522892e
github.com/rqlite/sql v0.0.0-20260116021722-655729ca2eff
go.etcd.io/bbolt v1.4.3
golang.org/x/net v0.48.0
google.golang.org/protobuf v1.36.11
@@ -82,5 +82,5 @@ require (
replace (
github.com/armon/go-metrics => github.com/hashicorp/go-metrics v0.5.1
github.com/mattn/go-sqlite3 => github.com/rqlite/go-sqlite3 v1.43.0
github.com/mattn/go-sqlite3 => github.com/rqlite/go-sqlite3 v1.44.0
)

8
go.sum
View File

@@ -237,14 +237,14 @@ github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsT
github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A=
github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU=
github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA=
github.com/rqlite/go-sqlite3 v1.43.0 h1:D1dno0cZ/ex99XME+R1r1MAp/XlvMWbFvx4KHO63S8Y=
github.com/rqlite/go-sqlite3 v1.43.0/go.mod h1:R9H7CatgYBt3c+fSV/5yo2vLh4ZjCB0aMHdkv69fP4A=
github.com/rqlite/go-sqlite3 v1.44.0 h1:XAwsGVSEite2L5MyqjD75Ce75Sg4x44hXPURGjlDdLQ=
github.com/rqlite/go-sqlite3 v1.44.0/go.mod h1:R9H7CatgYBt3c+fSV/5yo2vLh4ZjCB0aMHdkv69fP4A=
github.com/rqlite/raft-boltdb/v2 v2.0.0-20230523104317-c08e70f4de48 h1:NZ62M+kT0JqhyFUMc8I4SMmfmD4NGJxhb2ePJQXjryc=
github.com/rqlite/raft-boltdb/v2 v2.0.0-20230523104317-c08e70f4de48/go.mod h1:CRnsxgy5G8fAf5J+AM0yrsSdxXHKkIYOaq2sm+Q4DYc=
github.com/rqlite/rqlite-disco-clients v0.0.0-20250205044118-8ada2b350099 h1:5cqkVLdl6sGJSY3kiF2dqaA3bD+8OS5FUdZqO0BxXLU=
github.com/rqlite/rqlite-disco-clients v0.0.0-20250205044118-8ada2b350099/go.mod h1:6SVI8KegsW9Fyu2UQ+uvw0JI5CAILRYRyiQ/OFSJPrs=
github.com/rqlite/sql v0.0.0-20251204023435-65660522892e h1:ccOm5zC6YqJtBrMmtiNcLPjFyWzB+TDY+fDIlQNsIFw=
github.com/rqlite/sql v0.0.0-20251204023435-65660522892e/go.mod h1:ib9zVtNgRKiGuoMyUqqL5aNpk+r+++YlyiVIkclVqPg=
github.com/rqlite/sql v0.0.0-20260116021722-655729ca2eff h1:LUxzsaiuU1BzXdlYdgUP2LCin9HGHxaTxJaqB0C80pg=
github.com/rqlite/sql v0.0.0-20260116021722-655729ca2eff/go.mod h1:ib9zVtNgRKiGuoMyUqqL5aNpk+r+++YlyiVIkclVqPg=
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 h1:nn5Wsu0esKSJiIVhscUtVbo7ada43DJhG55ua/hjS5I=
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc=
github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=