sqlite3 1.6.6-arm-linux → 1.6.7-arm-linux
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 +18 -0
- data/Gemfile +1 -1
- data/dependencies.yml +8 -7
- data/ext/sqlite3/extconf.rb +6 -1
- data/lib/sqlite3/2.7/sqlite3_native.so +0 -0
- data/lib/sqlite3/3.0/sqlite3_native.so +0 -0
- data/lib/sqlite3/3.1/sqlite3_native.so +0 -0
- data/lib/sqlite3/3.2/sqlite3_native.so +0 -0
- data/lib/sqlite3/version.rb +2 -2
- 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: 520345ec7b7db57bd8337398c275d931664544a0c1d8302d7144be60db92ae92
|
4
|
+
data.tar.gz: d037b2cb0ae6e297e58d8342c55dafd6f38eec205e83e16b5f4c9984b17b276b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f110b78811d21425dc678aea985cb08cfe8375ba8a91f537fb7a16d77aa3e53aee33f8b8d9cee7fed62b6b6e272df45226ddfdfe0101ad38dab5086a0f94135e
|
7
|
+
data.tar.gz: a191ce1cac45c3b9f2279366ecd4cf8d127f2195394a612fb423e60c598c6d99d04735fc48a341fd15a2b2bec7799afa5e098815065e3d8bff16eb57ab180b61
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# sqlite3-ruby Changelog
|
2
2
|
|
3
|
+
## 1.6.7 / 2023-10-10
|
4
|
+
|
5
|
+
### Dependencies
|
6
|
+
|
7
|
+
Vendored sqlite is updated to [v3.43.2](https://sqlite.org/releaselog/3_43_2.html).
|
8
|
+
|
9
|
+
Upstream release notes:
|
10
|
+
|
11
|
+
> - Fix a couple of obscure UAF errors and an obscure memory leak.
|
12
|
+
> - Omit the use of the sprintf() function from the standard library in the [CLI](https://sqlite.org/cli.html), as this now generates warnings on some platforms.
|
13
|
+
> - Avoid conversion of a double into unsigned long long integer, as some platforms do not do such conversions correctly.
|
14
|
+
|
15
|
+
|
16
|
+
### Added
|
17
|
+
|
18
|
+
* Compile packaged sqlite3 with additional flags to explicitly enable FTS5, and set synchronous mode to normal when in WAL mode. [#408] (@flavorjones)
|
19
|
+
|
20
|
+
|
3
21
|
## 1.6.6 / 2023-09-12
|
4
22
|
|
5
23
|
### Dependencies
|
data/Gemfile
CHANGED
data/dependencies.yml
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
# TODO: stop using symbols here once we no longer support Ruby 2.7 and can rely on symbolize_names
|
2
2
|
:sqlite3:
|
3
3
|
# checksum verified by first checking the published sha3(256) checksum against https://sqlite.org/download.html:
|
4
|
+
# a7463a45ed58849200858e514b79f7e5f5d69850047897c5b659a78a0bc75cc1
|
4
5
|
#
|
5
|
-
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-
|
6
|
-
#
|
6
|
+
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-3430200.tar.gz
|
7
|
+
# a7463a45ed58849200858e514b79f7e5f5d69850047897c5b659a78a0bc75cc1 ports/archives/sqlite-autoconf-3430200.tar.gz
|
7
8
|
#
|
8
|
-
# $ sha256sum ports/archives/sqlite-autoconf-
|
9
|
-
#
|
9
|
+
# $ sha256sum ports/archives/sqlite-autoconf-3430200.tar.gz
|
10
|
+
# 6d422b6f62c4de2ca80d61860e3a3fb693554d2f75bb1aaca743ccc4d6f609f0 ports/archives/sqlite-autoconf-3430200.tar.gz
|
10
11
|
#
|
11
|
-
:version: "3.43.
|
12
|
+
:version: "3.43.2"
|
12
13
|
:files:
|
13
|
-
- :url: "https://sqlite.org/2023/sqlite-autoconf-
|
14
|
-
:sha256: "
|
14
|
+
- :url: "https://sqlite.org/2023/sqlite-autoconf-3430200.tar.gz"
|
15
|
+
:sha256: "6d422b6f62c4de2ca80d61860e3a3fb693554d2f75bb1aaca743ccc4d6f609f0"
|
data/ext/sqlite3/extconf.rb
CHANGED
@@ -49,13 +49,18 @@ module Sqlite3
|
|
49
49
|
|
50
50
|
def configure_packaged_libraries
|
51
51
|
minimal_recipe.tap do |recipe|
|
52
|
-
recipe.configure_options += [
|
52
|
+
recipe.configure_options += [
|
53
|
+
"--enable-shared=no",
|
54
|
+
"--enable-static=yes",
|
55
|
+
"--enable-fts5",
|
56
|
+
]
|
53
57
|
ENV.to_h.tap do |env|
|
54
58
|
user_cflags = with_config("sqlite-cflags")
|
55
59
|
more_cflags = [
|
56
60
|
"-fPIC", # needed for linking the static library into a shared library
|
57
61
|
"-O2", # see https://github.com/sparklemotion/sqlite3-ruby/issues/335 for some benchmarks
|
58
62
|
"-fvisibility=hidden", # see https://github.com/rake-compiler/rake-compiler-dock/issues/87
|
63
|
+
"-DSQLITE_DEFAULT_WAL_SYNCHRONOUS=1",
|
59
64
|
]
|
60
65
|
env["CFLAGS"] = [user_cflags, env["CFLAGS"], more_cflags].flatten.join(" ")
|
61
66
|
recipe.configure_options += env.select { |k,v| ENV_ALLOWLIST.include?(k) }
|
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: 1.6.
|
4
|
+
version: 1.6.7
|
5
5
|
platform: arm-linux
|
6
6
|
authors:
|
7
7
|
- Jamis Buck
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2023-
|
14
|
+
date: 2023-10-10 00:00:00.000000000 Z
|
15
15
|
dependencies: []
|
16
16
|
description: |
|
17
17
|
Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org). Precompiled
|