extralite-bundle 1.25 → 1.27
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/.github/FUNDING.yml +1 -1
- data/.yardopts +8 -0
- data/CHANGELOG.md +9 -0
- data/Gemfile.lock +2 -2
- data/README.md +1 -1
- data/ext/extralite/extconf.rb +1 -0
- data/ext/extralite/prepared_statement.c +6 -0
- data/ext/sqlite3/sqlite3.c +7506 -3493
- data/ext/sqlite3/sqlite3.h +304 -130
- data/lib/extralite/sqlite3_constants.rb +0 -1
- data/lib/extralite/version.rb +2 -1
- data/lib/extralite.rb +1 -0
- data/lib/sequel/adapters/extralite.rb +45 -26
- data/test/test_sequel.rb +27 -5
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b51bacdb05577087d8fd0aa6428121a111602171b57deda15eab5f1cf29cfda5
|
4
|
+
data.tar.gz: 433cf1f1960a8a061c6d99b94cd21d1ede168e6834c9e52b72121087dedfdb04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2c02756e201bede96496566f377624abe732497b40e24ef166109df059d9c0e45d53c0787995b5837708e7546ba92e9ede723d63f76e81c2ad643880df391db
|
7
|
+
data.tar.gz: 25e7d986ff8f0c3a8b449a35f81afd7b18bdc76de3b3fdede55b6f9d4859e8f50bf081737181f039c4d34cc465b2faa67b93ef50ababb2a3571550f3476bd8c7
|
data/.github/FUNDING.yml
CHANGED
@@ -1 +1 @@
|
|
1
|
-
github:
|
1
|
+
github: noteflakes
|
data/.yardopts
ADDED
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
# 1.27 2023-06-12
|
2
|
+
|
3
|
+
- Fix execution of prepared statements in Sequel adapter (#23 @gschlager)
|
4
|
+
- Update bundled sqlite code to version 3.42.0 (#22 @gschlager)
|
5
|
+
|
6
|
+
# 1.26 2023-05-17
|
7
|
+
|
8
|
+
- Improve documentation
|
9
|
+
|
1
10
|
# 1.25 2023-03-10
|
2
11
|
|
3
12
|
- Remove bundled sqlite3 source files from extralite.gemspec
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -14,7 +14,7 @@ with an SQLite3 database, as well as prepared statements.
|
|
14
14
|
Extralite comes in two flavors: the `extralite` gem which uses the
|
15
15
|
system-installed sqlite3 library, and the `extralite-bundle` gem which bundles
|
16
16
|
the latest version of SQLite
|
17
|
-
([3.
|
17
|
+
([3.42.0](https://sqlite.org/releaselog/3_42_0.html)), offering access to the
|
18
18
|
latest features and enhancements.
|
19
19
|
|
20
20
|
## Features
|
data/ext/extralite/extconf.rb
CHANGED