Skip to content

Commit

Permalink
version bump to 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Sep 29, 2022
1 parent b026da1 commit 8ab3ecc
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
@@ -1,11 +1,25 @@
# sqlite3-ruby Changelog

## next / unreleased
## 1.5.1 / 2022-09-29

### Dependencies

* Vendored sqlite is updated to [v3.39.4](https://sqlite.org/releaselog/3_39_4.html).

### Security

The vendored version of sqlite, v3.39.4, should be considered to be a security release. From the release notes:

> Version 3.39.4 is a minimal patch against the prior release that addresses issues found since the
> prior release. In particular, a potential vulnerability in the FTS3 extension has been fixed, so
> this should be considered a security update.
>
> In order to exploit the vulnerability, an attacker must have full SQL access and must be able to
> construct a corrupt database with over 2GB of FTS3 content. The problem arises from a 32-bit
> signed integer overflow.
For more information please see [GHSA-mgvv-5mxp-xq67](https://github.com/sparklemotion/sqlite3-ruby/security/advisories/GHSA-mgvv-5mxp-xq67).


## 1.5.0 / 2022-09-08

Expand Down
4 changes: 2 additions & 2 deletions lib/sqlite3/version.rb
@@ -1,11 +1,11 @@
module SQLite3

VERSION = "1.5.0"
VERSION = "1.5.1"

module VersionProxy
MAJOR = 1
MINOR = 5
TINY = 0
TINY = 1
BUILD = nil

STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." )
Expand Down

0 comments on commit 8ab3ecc

Please sign in to comment.