sqlite3 1.5.0.rc2-x86_64-darwin → 1.5.0-x86_64-darwin
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of sqlite3 might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -3
- data/README.md +1 -1
- 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 +2 -4
- 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: db4c811d9918b965780171cd0eb5c7c9f08989622f6242b4c4004f1a65b10077
|
4
|
+
data.tar.gz: a737f07adbba0344d13e54ea42360bad98600245fe60ace84673644156249664
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb1de30155786c4906302be4313050959bea951c39d4049de05a565902c2403e84821830a1f96107242664047d8ef976daae4ebaf594f5c1e6f1194f04f4591b
|
7
|
+
data.tar.gz: 1a3c7873f79132c7bdffa12b1b65e933e2dc6efcfc5a38eb68287654e31e6cd361c26f4c61d2ac3440ceeb6f69602c969195246a482d19e1afc6190a98827879
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# sqlite3-ruby Changelog
|
2
2
|
|
3
|
-
## 1.5.0 /
|
3
|
+
## 1.5.0 / 2022-09-08
|
4
4
|
|
5
5
|
### Packaging
|
6
6
|
|
@@ -23,13 +23,13 @@ See [the README](https://github.com/sparklemotion/sqlite3-ruby#native-gems-recom
|
|
23
23
|
|
24
24
|
#### More consistent developer experience
|
25
25
|
|
26
|
-
Both the native (precompiled) gems and the vanilla "ruby platform" (source) gem include sqlite v3.39.
|
26
|
+
Both the native (precompiled) gems and the vanilla "ruby platform" (source) gem include sqlite v3.39.3 by default.
|
27
27
|
|
28
28
|
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
29
|
|
30
30
|
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
31
|
|
32
|
-
[Release notes for this version of sqlite](https://sqlite.org/releaselog/
|
32
|
+
[Release notes for this version of sqlite](https://sqlite.org/releaselog/3_39_3.html)
|
33
33
|
|
34
34
|
|
35
35
|
### Rubies and Platforms
|
data/README.md
CHANGED
@@ -118,7 +118,7 @@ If you are on a platform or version of Ruby that is not covered by the Native Ge
|
|
118
118
|
|
119
119
|
#### Packaged libsqlite3
|
120
120
|
|
121
|
-
By default, as of v1.5.0 of this library, libsqlite3
|
121
|
+
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
122
|
|
123
123
|
For example, on a linux system running Ruby 2.5:
|
124
124
|
|
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-3390300.tar.gz
|
139
|
+
# dfa055c70724cd63f0b7da6e9f53530d8da51fe021e3f864d58c7c847d590e1d ports/archives/sqlite-autoconf-3390300.tar.gz
|
140
140
|
#
|
141
|
-
# $ sha256sum ports/archives/sqlite-autoconf-
|
142
|
-
#
|
141
|
+
# $ sha256sum ports/archives/sqlite-autoconf-3390300.tar.gz
|
142
|
+
# 7868fb3082be3f2cf4491c6fba6de2bddcbc293a35fefb0624ee3c13f01422b9 ports/archives/sqlite-autoconf-3390300.tar.gz
|
143
143
|
#
|
144
|
-
version: "3.39.
|
144
|
+
version: "3.39.3",
|
145
145
|
files: [{
|
146
|
-
url: "https://www.sqlite.org/2022/sqlite-autoconf-
|
147
|
-
sha256: "
|
146
|
+
url: "https://www.sqlite.org/2022/sqlite-autoconf-3390300.tar.gz",
|
147
|
+
sha256: "7868fb3082be3f2cf4491c6fba6de2bddcbc293a35fefb0624ee3c13f01422b9",
|
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.0
|
3
|
+
VERSION = "1.5.0"
|
4
4
|
|
5
5
|
module VersionProxy
|
6
|
-
|
7
6
|
MAJOR = 1
|
8
7
|
MINOR = 5
|
9
8
|
TINY = 0
|
10
|
-
BUILD =
|
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.0
|
4
|
+
version: 1.5.0
|
5
5
|
platform: x86_64-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-08
|
13
|
+
date: 2022-09-08 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:
|