sqlite3 2.5.0-x86_64-darwin → 2.6.0-x86_64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/dependencies.yml +8 -8
- data/ext/sqlite3/database.c +3 -3
- data/ext/sqlite3/extconf.rb +0 -1
- data/lib/sqlite3/3.1/sqlite3_native.bundle +0 -0
- data/lib/sqlite3/3.2/sqlite3_native.bundle +0 -0
- data/lib/sqlite3/3.3/sqlite3_native.bundle +0 -0
- data/lib/sqlite3/3.4/sqlite3_native.bundle +0 -0
- data/lib/sqlite3/version.rb +1 -1
- metadata +3 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f20dfac773b3bb1b9fbc76e0c0498d1b5e20a167e6734b203e3344f1f6903522
|
4
|
+
data.tar.gz: f7fd087fb2d1c3889f44f79b65cbe692ef3b0660c27980322792223a6df0d00a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4847e9c569480c46b51c9c1763c2ef52fcd72c726fb0a54e5eec08c2d46b28880a9892eb1ba4791b5277b89cd3c55619740e4c834d40e267ef0d20353b934a9c
|
7
|
+
data.tar.gz: fdbf6f1fe744362b43152a295a575a387f88690ed8923bdbd685cbb638b88493850199a021c290b84a8aaee87d7b3774c2376e355576e081b6b25c5fc2f914d0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# sqlite3-ruby Changelog
|
2
2
|
|
3
|
+
## 2.6.0 / 2025-02-20
|
4
|
+
|
5
|
+
### Dependencies
|
6
|
+
|
7
|
+
- Vendored sqlite is updated to [v3.49.1](https://sqlite.org/releaselog/3_49_1.html) (from v3.47.2). #605 @flavorjones
|
8
|
+
- Updated to rake-compiler-dock v1.9.1. #610 @flavorjones
|
9
|
+
|
10
|
+
### Important note for Window users
|
11
|
+
|
12
|
+
Loading extensions is not available on Windows when using the precompiled native gems or compiling the vendored sqlite library from source, starting with sqlite3-ruby v2.6.0.
|
13
|
+
|
14
|
+
Sqlite 3.48.0 and later have dramatically changed the "autoconf amalgamation" that is vendored in this gem. Specifically, the configuration is no longer actually autoconf, but some scripts that emulate autoconf's interface and behavior.
|
15
|
+
|
16
|
+
Although this _mostly_ "just worked", we're having a problem resolving the libraries necessary for loading extensions. As a result, starting with sqlite3-ruby v2.6.0, extensions cannot be loaded on Windows when using precompiled native gems or when compiling the vendored sqlite library.
|
17
|
+
|
18
|
+
If you are willing and able to help fix this, let us know at https://github.com/sparklemotion/sqlite3-ruby/issues/618.
|
19
|
+
|
20
|
+
|
3
21
|
## 2.5.0 / 2024-12-25
|
4
22
|
|
5
23
|
### Ruby
|
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
|
+
# 6cc831c9f588b637e5bd48d9fbf28e58737e08daf825c81085fb8e0a0b8ad14c
|
4
4
|
#
|
5
|
-
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-
|
6
|
-
#
|
5
|
+
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-3490100.tar.gz
|
6
|
+
# 6cc831c9f588b637e5bd48d9fbf28e58737e08daf825c81085fb8e0a0b8ad14c ports/archives/sqlite-autoconf-3490100.tar.gz
|
7
7
|
#
|
8
|
-
# $ sha256sum ports/archives/sqlite-autoconf-
|
9
|
-
#
|
10
|
-
version: "3.
|
8
|
+
# $ sha256sum ports/archives/sqlite-autoconf-3490100.tar.gz
|
9
|
+
# 106642d8ccb36c5f7323b64e4152e9b719f7c0215acf5bfeac3d5e7f97b59254 ports/archives/sqlite-autoconf-3490100.tar.gz
|
10
|
+
version: "3.49.1"
|
11
11
|
files:
|
12
|
-
- url: "https://sqlite.org/
|
13
|
-
sha256: "
|
12
|
+
- url: "https://sqlite.org/2025/sqlite-autoconf-3490100.tar.gz"
|
13
|
+
sha256: "106642d8ccb36c5f7323b64e4152e9b719f7c0215acf5bfeac3d5e7f97b59254"
|
data/ext/sqlite3/database.c
CHANGED
@@ -789,7 +789,7 @@ load_extension_internal(VALUE self, VALUE file)
|
|
789
789
|
}
|
790
790
|
#endif
|
791
791
|
|
792
|
-
#
|
792
|
+
#if defined(HAVE_SQLITE3_ENABLE_LOAD_EXTENSION) && defined(HAVE_SQLITE3_LOAD_EXTENSION)
|
793
793
|
/* call-seq: db.enable_load_extension(onoff)
|
794
794
|
*
|
795
795
|
* Enable or disable extension loading.
|
@@ -992,11 +992,11 @@ init_sqlite3_database(void)
|
|
992
992
|
|
993
993
|
#ifdef HAVE_SQLITE3_LOAD_EXTENSION
|
994
994
|
rb_define_private_method(cSqlite3Database, "load_extension_internal", load_extension_internal, 1);
|
995
|
-
#endif
|
996
|
-
|
997
995
|
#ifdef HAVE_SQLITE3_ENABLE_LOAD_EXTENSION
|
998
996
|
rb_define_method(cSqlite3Database, "enable_load_extension", enable_load_extension, 1);
|
999
997
|
#endif
|
998
|
+
#endif
|
999
|
+
|
1000
1000
|
|
1001
1001
|
rb_sqlite3_aggregator_init();
|
1002
1002
|
}
|
data/ext/sqlite3/extconf.rb
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/sqlite3/version.rb
CHANGED
metadata
CHANGED
@@ -1,22 +1,20 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sqlite3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.6.0
|
5
5
|
platform: x86_64-darwin
|
6
6
|
authors:
|
7
7
|
- Jamis Buck
|
8
8
|
- Luis Lavena
|
9
9
|
- Aaron Patterson
|
10
10
|
- Mike Dalessio
|
11
|
-
autorequire:
|
12
11
|
bindir: bin
|
13
12
|
cert_chain: []
|
14
|
-
date:
|
13
|
+
date: 2025-02-20 00:00:00.000000000 Z
|
15
14
|
dependencies: []
|
16
15
|
description: |
|
17
16
|
Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org). Precompiled
|
18
17
|
binaries are available for common platforms for recent versions of Ruby.
|
19
|
-
email:
|
20
18
|
executables: []
|
21
19
|
extensions: []
|
22
20
|
extra_rdoc_files:
|
@@ -76,7 +74,6 @@ metadata:
|
|
76
74
|
changelog_uri: https://github.com/sparklemotion/sqlite3-ruby/blob/master/CHANGELOG.md
|
77
75
|
source_code_uri: https://github.com/sparklemotion/sqlite3-ruby
|
78
76
|
rubygems_mfa_required: 'true'
|
79
|
-
post_install_message:
|
80
77
|
rdoc_options:
|
81
78
|
- "--main"
|
82
79
|
- README.md
|
@@ -96,8 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
96
93
|
- !ruby/object:Gem::Version
|
97
94
|
version: '0'
|
98
95
|
requirements: []
|
99
|
-
rubygems_version: 3.
|
100
|
-
signing_key:
|
96
|
+
rubygems_version: 3.6.2
|
101
97
|
specification_version: 4
|
102
98
|
summary: Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org).
|
103
99
|
test_files: []
|