sqlite3 1.5.0.rc2-arm64-darwin → 1.5.1-arm64-darwin
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +24 -3
- data/README.md +4 -2
- data/ext/sqlite3/aggregator.c +3 -2
- data/ext/sqlite3/extconf.rb +8 -8
- data/lib/sqlite3/2.6/sqlite3_native.bundle +0 -0
- data/lib/sqlite3/2.7/sqlite3_native.bundle +0 -0
- data/lib/sqlite3/3.0/sqlite3_native.bundle +0 -0
- data/lib/sqlite3/3.1/sqlite3_native.bundle +0 -0
- data/lib/sqlite3/version.rb +3 -5
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65f850a3d17e46fef6762cdda115bec6f1d357b771e08d6e04aa5d137ad15daf
|
4
|
+
data.tar.gz: a6a260eb72ab00b1ec52ea64e54cffb80666bfa0e447ec6dff1dc468489676a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a73b66df6f6595555f83dadd0f152ad46a5cc1432cfb72da8bb9069204af24c293630e96c2a98a8a34dc804d4fdcc1ae5d837bd1701d2005f7f755758b68cd4
|
7
|
+
data.tar.gz: 1c848f73e84b3b22c2b455cc3fb8e1a5d47e5701812b65b11f9bd6f3b8256c87e9e942119776c772e966b9b55db9d50640fc5e23bbc8bfbf7e78a12148a86cea
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,27 @@
|
|
1
1
|
# sqlite3-ruby Changelog
|
2
2
|
|
3
|
-
## 1.5.
|
3
|
+
## 1.5.1 / 2022-09-29
|
4
|
+
|
5
|
+
### Dependencies
|
6
|
+
|
7
|
+
* Vendored sqlite is updated to [v3.39.4](https://sqlite.org/releaselog/3_39_4.html).
|
8
|
+
|
9
|
+
### Security
|
10
|
+
|
11
|
+
The vendored version of sqlite, v3.39.4, should be considered to be a security release. From the release notes:
|
12
|
+
|
13
|
+
> Version 3.39.4 is a minimal patch against the prior release that addresses issues found since the
|
14
|
+
> prior release. In particular, a potential vulnerability in the FTS3 extension has been fixed, so
|
15
|
+
> this should be considered a security update.
|
16
|
+
>
|
17
|
+
> In order to exploit the vulnerability, an attacker must have full SQL access and must be able to
|
18
|
+
> construct a corrupt database with over 2GB of FTS3 content. The problem arises from a 32-bit
|
19
|
+
> signed integer overflow.
|
20
|
+
|
21
|
+
For more information please see [GHSA-mgvv-5mxp-xq67](https://github.com/sparklemotion/sqlite3-ruby/security/advisories/GHSA-mgvv-5mxp-xq67).
|
22
|
+
|
23
|
+
|
24
|
+
## 1.5.0 / 2022-09-08
|
4
25
|
|
5
26
|
### Packaging
|
6
27
|
|
@@ -23,13 +44,13 @@ See [the README](https://github.com/sparklemotion/sqlite3-ruby#native-gems-recom
|
|
23
44
|
|
24
45
|
#### More consistent developer experience
|
25
46
|
|
26
|
-
Both the native (precompiled) gems and the vanilla "ruby platform" (source) gem include sqlite v3.39.
|
47
|
+
Both the native (precompiled) gems and the vanilla "ruby platform" (source) gem include sqlite v3.39.3 by default.
|
27
48
|
|
28
49
|
Defaulting to a consistent version of sqlite across all systems means that your development environment behaves exactly like your production environment, and you have access to the latest and greatest features of sqlite.
|
29
50
|
|
30
51
|
You can opt-out of the packaged version of sqlite (and use your system-installed library as in versions < 1.5.0). See [the README](https://github.com/sparklemotion/sqlite3-ruby#avoiding-the-precompiled-native-gem) for more information.
|
31
52
|
|
32
|
-
[Release notes for this version of sqlite](https://sqlite.org/releaselog/
|
53
|
+
[Release notes for this version of sqlite](https://sqlite.org/releaselog/3_39_3.html)
|
33
54
|
|
34
55
|
|
35
56
|
### Rubies and Platforms
|
data/README.md
CHANGED
@@ -107,7 +107,8 @@ If you're on a platform that supports a native gem but you want to avoid using i
|
|
107
107
|
|
108
108
|
- If you're not using Bundler, then run `gem install sqlite3 --platform=ruby`
|
109
109
|
- If you are using Bundler
|
110
|
-
- version 2.
|
110
|
+
- version 2.3.18 or later, you can specify [`gem "sqlite3", force_ruby_platform: true`](https://bundler.io/v2.3/man/gemfile.5.html#FORCE_RUBY_PLATFORM)
|
111
|
+
- version 2.1 or later, then you'll need to run `bundle config set force_ruby_platform true`
|
111
112
|
- version 2.0 or earlier, then you'll need to run `bundle config force_ruby_platform true`
|
112
113
|
|
113
114
|
|
@@ -118,7 +119,7 @@ If you are on a platform or version of Ruby that is not covered by the Native Ge
|
|
118
119
|
|
119
120
|
#### Packaged libsqlite3
|
120
121
|
|
121
|
-
By default, as of v1.5.0 of this library, libsqlite3
|
122
|
+
By default, as of v1.5.0 of this library, the latest available version of libsqlite3 is packaged with the gem and will be compiled and used automatically. This takes a bit longer than the native gem, but will provide a modern, well-supported version of libsqlite3.
|
122
123
|
|
123
124
|
For example, on a linux system running Ruby 2.5:
|
124
125
|
|
@@ -143,6 +144,7 @@ If you would prefer to build the sqlite3-ruby gem against your system libsqlite3
|
|
143
144
|
|
144
145
|
PLEASE NOTE:
|
145
146
|
|
147
|
+
- you must avoid installing a precompiled native gem (see [previous section](#avoiding-the-precompiled-native-gem))
|
146
148
|
- only versions of libsqlite3 `>= 3.5.0` are supported,
|
147
149
|
- and some library features may depend on how your libsqlite3 was compiled.
|
148
150
|
|
data/ext/sqlite3/aggregator.c
CHANGED
@@ -265,9 +265,10 @@ rb_sqlite3_define_aggregator2(VALUE self, VALUE aggregator, VALUE ruby_name)
|
|
265
265
|
void
|
266
266
|
rb_sqlite3_aggregator_init(void)
|
267
267
|
{
|
268
|
-
rb_gc_register_address(&cAggregatorWrapper);
|
269
|
-
rb_gc_register_address(&cAggregatorInstance);
|
270
268
|
/* rb_class_new generatos class with undefined allocator in ruby 1.9 */
|
271
269
|
cAggregatorWrapper = rb_funcall(rb_cClass, rb_intern("new"), 0);
|
270
|
+
rb_gc_register_mark_object(cAggregatorWrapper);
|
271
|
+
|
272
272
|
cAggregatorInstance = rb_funcall(rb_cClass, rb_intern("new"), 0);
|
273
|
+
rb_gc_register_mark_object(cAggregatorInstance);
|
273
274
|
}
|
data/ext/sqlite3/extconf.rb
CHANGED
@@ -133,18 +133,18 @@ module Sqlite3
|
|
133
133
|
def mini_portile_config
|
134
134
|
{
|
135
135
|
sqlite3: {
|
136
|
-
# checksum verified by first checking the published sha3(256) checksum:
|
136
|
+
# checksum verified by first checking the published sha3(256) checksum against https://sqlite.org/download.html:
|
137
137
|
#
|
138
|
-
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-
|
139
|
-
#
|
138
|
+
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-3390400.tar.gz
|
139
|
+
# 431328e30d12c551da9ba7ef2122b269076058512014afa799caaf62ca567090 ports/archives/sqlite-autoconf-3390400.tar.gz
|
140
140
|
#
|
141
|
-
# $ sha256sum ports/archives/sqlite-autoconf-
|
142
|
-
#
|
141
|
+
# $ sha256sum ports/archives/sqlite-autoconf-3390400.tar.gz
|
142
|
+
# f31d445b48e67e284cf206717cc170ab63cbe4fd7f79a82793b772285e78fdbb ports/archives/sqlite-autoconf-3390400.tar.gz
|
143
143
|
#
|
144
|
-
version: "3.39.
|
144
|
+
version: "3.39.4",
|
145
145
|
files: [{
|
146
|
-
url: "https://
|
147
|
-
sha256: "
|
146
|
+
url: "https://sqlite.org/2022/sqlite-autoconf-3390400.tar.gz",
|
147
|
+
sha256: "f31d445b48e67e284cf206717cc170ab63cbe4fd7f79a82793b772285e78fdbb",
|
148
148
|
}],
|
149
149
|
}
|
150
150
|
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/sqlite3/version.rb
CHANGED
@@ -1,16 +1,14 @@
|
|
1
1
|
module SQLite3
|
2
2
|
|
3
|
-
VERSION = "1.5.
|
3
|
+
VERSION = "1.5.1"
|
4
4
|
|
5
5
|
module VersionProxy
|
6
|
-
|
7
6
|
MAJOR = 1
|
8
7
|
MINOR = 5
|
9
|
-
TINY =
|
10
|
-
BUILD =
|
8
|
+
TINY = 1
|
9
|
+
BUILD = nil
|
11
10
|
|
12
11
|
STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." )
|
13
|
-
#:beta-tag:
|
14
12
|
|
15
13
|
VERSION = ::SQLite3::VERSION
|
16
14
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sqlite3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.1
|
5
5
|
platform: arm64-darwin
|
6
6
|
authors:
|
7
7
|
- Jamis Buck
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2022-
|
13
|
+
date: 2022-09-29 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|
@@ -178,9 +178,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
178
178
|
version: 3.2.dev
|
179
179
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
180
180
|
requirements:
|
181
|
-
- - "
|
181
|
+
- - ">="
|
182
182
|
- !ruby/object:Gem::Version
|
183
|
-
version:
|
183
|
+
version: '0'
|
184
184
|
requirements: []
|
185
185
|
rubygems_version: 3.3.4
|
186
186
|
signing_key:
|