sqlite3 2.0.1-aarch64-linux-gnu → 2.0.3-aarch64-linux-gnu
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -0
- data/INSTALLATION.md +2 -0
- data/dependencies.yml +8 -8
- 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/3.3/sqlite3_native.so +0 -0
- data/lib/sqlite3/database.rb +2 -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: 2edebe3f8c661b5583eff3a8e5ca9e7341c686a8e993c1440493732bd667cf33
|
4
|
+
data.tar.gz: 9dfece5532e1d60e4ff53e55ccc5a0f0415ebf43ffe5305600781dc830da4e9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '01834f6800ce9ed282cacc6d494a23764f7da17701c7df8be9a4c3170eaf2d6bc2244899e19aa827b3893e6234bfc856964db7fb697f8f2e70c1f1a8ed8d803f'
|
7
|
+
data.tar.gz: 32d578c3d5fa2d44c95fe4c474811d226983b527fea7396d8df47435c9aff14e66856cfd1cfe95830e56c6c1fb99352e245449ffc19d6c171a8bcb89b1be85ff
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# sqlite3-ruby Changelog
|
2
2
|
|
3
|
+
## 2.0.3 / 2024-07-29
|
4
|
+
|
5
|
+
### Improved
|
6
|
+
|
7
|
+
- `Database#quote` avoids allocating strings where reusing frozen strings is preferable. #548 @casperisfine
|
8
|
+
|
9
|
+
|
10
|
+
## 2.0.2 / 2024-05-23
|
11
|
+
|
12
|
+
### Dependencies
|
13
|
+
|
14
|
+
- Vendored sqlite is updated to [v3.46.0](https://sqlite.org/releaselog/3_46_0.html) @flavorjones
|
15
|
+
|
16
|
+
|
3
17
|
## 2.0.1 / 2024-04-20
|
4
18
|
|
5
19
|
### Fixed
|
data/INSTALLATION.md
CHANGED
@@ -65,6 +65,8 @@ If you are on a platform or version of Ruby that is not covered by the Native Ge
|
|
65
65
|
|
66
66
|
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.
|
67
67
|
|
68
|
+
⚠ A prerequisite to build the gem with the packaged sqlite3 is that you must have `pkgconf` installed.
|
69
|
+
|
68
70
|
For example, on a linux system running Ruby 2.5:
|
69
71
|
|
70
72
|
``` text
|
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
|
+
# 83d2acf79453deb7d6520338b1f4585f12e39b27cd370fb08593afa198f471fc
|
4
4
|
#
|
5
|
-
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-
|
6
|
-
#
|
5
|
+
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-3460000.tar.gz
|
6
|
+
# 83d2acf79453deb7d6520338b1f4585f12e39b27cd370fb08593afa198f471fc ports/archives/sqlite-autoconf-3460000.tar.gz
|
7
7
|
#
|
8
|
-
# $ sha256sum ports/archives/sqlite-autoconf-
|
9
|
-
#
|
10
|
-
version: "3.
|
8
|
+
# $ sha256sum ports/archives/sqlite-autoconf-3460000.tar.gz
|
9
|
+
# 6f8e6a7b335273748816f9b3b62bbdc372a889de8782d7f048c653a447417a7d ports/archives/sqlite-autoconf-3460000.tar.gz
|
10
|
+
version: "3.46.0"
|
11
11
|
files:
|
12
|
-
- url: "https://sqlite.org/2024/sqlite-autoconf-
|
13
|
-
sha256: "
|
12
|
+
- url: "https://sqlite.org/2024/sqlite-autoconf-3460000.tar.gz"
|
13
|
+
sha256: "6f8e6a7b335273748816f9b3b62bbdc372a889de8782d7f048c653a447417a7d"
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/sqlite3/database.rb
CHANGED
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.0.
|
4
|
+
version: 2.0.3
|
5
5
|
platform: aarch64-linux-gnu
|
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: 2024-
|
14
|
+
date: 2024-07-29 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
|