sqlite3 2.7.0-x86-linux-gnu → 2.7.1-x86-linux-gnu
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 +6 -1
- data/CONTRIBUTING.md +1 -1
- data/dependencies.yml +8 -8
- data/ext/sqlite3/aggregator.c +2 -2
- data/lib/sqlite3/3.1/sqlite3_native.so +0 -0
- data/lib/sqlite3/3.2/sqlite3_native.so +0 -0
- data/lib/sqlite3/3.3/sqlite3_native.so +0 -0
- data/lib/sqlite3/3.4/sqlite3_native.so +0 -0
- data/lib/sqlite3/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 780c77e0e301bfccb9a31dc23cbd35bbce7acfcd33844b12b78db2506bfaf193
|
4
|
+
data.tar.gz: 50224c4330ac57bb33f6a0c9a579978709843298f4221eef648915e76927c6e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9aba8351f3d1edeb5bd05f1bcd7d7535d14d8faa4d0832a9d3c7954e78cd2b4110bc03023098b11749ef3ec93586b762cd93d6ed1716f213cc5c03ffd304c8d
|
7
|
+
data.tar.gz: 2719577da8ff33e26b923a84cb4cdff36f0a7841fe223a008ced9021413b4325f889ab7c038a7ff7c4c0ede132940014ebb15700b4c3f0142ad498241f5d97ea
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# sqlite3-ruby Changelog
|
2
2
|
|
3
|
+
## 2.7.1 / 2025-06-30
|
4
|
+
|
5
|
+
- Vendored sqlite is updated to [v3.50.2](https://sqlite.org/releaselog/3_50_2.html) (from v3.50.1). #633 @flavorjones
|
6
|
+
|
7
|
+
|
3
8
|
## 2.7.0 / 2025-06-09
|
4
9
|
|
5
10
|
- Vendored sqlite is updated to [v3.50.1](https://sqlite.org/releaselog/3_50_1.html) (from v3.49.1). #630 @flavorjones
|
@@ -614,7 +619,7 @@ You can opt-out of the packaged version of sqlite (and use your system-installed
|
|
614
619
|
|
615
620
|
## 1.4.1
|
616
621
|
|
617
|
-
* Don't mandate dl functions for the
|
622
|
+
* Don't mandate dl functions for the extension build
|
618
623
|
* bumping version
|
619
624
|
|
620
625
|
|
data/CONTRIBUTING.md
CHANGED
@@ -19,7 +19,7 @@ The `@connection` instance variable on the `Statement` handle keeps the database
|
|
19
19
|
connection alive.
|
20
20
|
|
21
21
|
We use `sqlite3_close_v2` in `Database#close` since v2.1.0 which defers _actually_ closing the
|
22
|
-
connection and freeing the underlying memory until all open
|
22
|
+
connection and freeing the underlying memory until all open statements are closed; though the
|
23
23
|
`Database` object will immediately behave as though it's been fully closed. If a Database is not
|
24
24
|
explicitly closed, it will be closed when it is GCed.
|
25
25
|
|
data/dependencies.yml
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
sqlite3:
|
2
2
|
# checksum verified by first checking the published sha3(256) checksum against https://sqlite.org/download.html:
|
3
|
-
#
|
3
|
+
# e4d2b4332988f479ec032ccff00963a9bbd24a3a0f0222b4e249653fa680b4c0
|
4
4
|
#
|
5
|
-
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-
|
6
|
-
#
|
5
|
+
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-3500200.tar.gz
|
6
|
+
# e4d2b4332988f479ec032ccff00963a9bbd24a3a0f0222b4e249653fa680b4c0 ports/archives/sqlite-autoconf-3500200.tar.gz
|
7
7
|
#
|
8
|
-
# $ sha256sum ports/archives/sqlite-autoconf-
|
9
|
-
#
|
10
|
-
version: "3.50.
|
8
|
+
# $ sha256sum ports/archives/sqlite-autoconf-3500200.tar.gz
|
9
|
+
# 84a616ffd31738e4590b65babb3a9e1ef9370f3638e36db220ee0e73f8ad2156 ports/archives/sqlite-autoconf-3500200.tar.gz
|
10
|
+
version: "3.50.2"
|
11
11
|
files:
|
12
|
-
- url: "https://sqlite.org/2025/sqlite-autoconf-
|
13
|
-
sha256: "
|
12
|
+
- url: "https://sqlite.org/2025/sqlite-autoconf-3500200.tar.gz"
|
13
|
+
sha256: "84a616ffd31738e4590b65babb3a9e1ef9370f3638e36db220ee0e73f8ad2156"
|
data/ext/sqlite3/aggregator.c
CHANGED
@@ -60,7 +60,7 @@ rb_sqlite3_aggregate_instance(sqlite3_context *ctx)
|
|
60
60
|
VALUE *inst_ptr = sqlite3_aggregate_context(ctx, (int)sizeof(VALUE));
|
61
61
|
|
62
62
|
if (!inst_ptr) {
|
63
|
-
rb_fatal("SQLite is out-of-
|
63
|
+
rb_fatal("SQLite is out-of-memory");
|
64
64
|
}
|
65
65
|
|
66
66
|
inst = *inst_ptr;
|
@@ -174,7 +174,7 @@ rb_sqlite3_aggregator_final(sqlite3_context *ctx)
|
|
174
174
|
|
175
175
|
/* call-seq: define_aggregator2(aggregator)
|
176
176
|
*
|
177
|
-
* Define an
|
177
|
+
* Define an aggregate function according to a factory object (the "handler")
|
178
178
|
* that knows how to obtain to all the information. The handler must provide
|
179
179
|
* the following class methods:
|
180
180
|
*
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/sqlite3/version.rb
CHANGED
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: 2.7.
|
4
|
+
version: 2.7.1
|
5
5
|
platform: x86-linux-gnu
|
6
6
|
authors:
|
7
7
|
- Jamis Buck
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
- Mike Dalessio
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2025-06-
|
13
|
+
date: 2025-06-30 00:00:00.000000000 Z
|
14
14
|
dependencies: []
|
15
15
|
description: |
|
16
16
|
Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org). Precompiled
|