sqlite3 2.5.0 → 2.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6c77087bc2b7d9598f011a86607768b9500f9734ee3e37ef46590deb46e0396a
4
- data.tar.gz: 46532d41a1cff9d677195260dfc2475be49398ebbe989910e2534187d301a223
3
+ metadata.gz: a6b103e65a63d9c0e62ca2cbce8f09ba23b5873f03257be161dcdd2b93994089
4
+ data.tar.gz: 858e6d9ecb8a349e49b22802c717d946c54aff00d005f56788ade89a3be5dece
5
5
  SHA512:
6
- metadata.gz: d20f408cbbda35ae2e8c37365b71f0ce1836eaab6ebcf8d9f7ed6470b0530a487a571fdc3438b17300656c9a264e3aa11e90ef9b1a02db15f2bf7de1c3ca1943
7
- data.tar.gz: 47051aa730bd1cdfc3c41e9933d993edb4f66928365a811c717b14a0fd40773558ee3a5b491b7ae1f492a27db5cc6f009ec088da75e6b73da6d47de47a83a280
6
+ metadata.gz: 3752aff46fdf0a5605549fe513ebe8744ef70cd6e9e46fcfdfac20f7e0dea7ce7cbe9e8e257c1be1605321350689bfc17faa3a8db8fe654497bd86e92837b2e2
7
+ data.tar.gz: 32d4207d7388e903189987e484a0d4f296e7b89d5b44f169d93a70a1de78b7fa0a58953289880e273ece9155dc1b66d74919b3688e9df1fa8d6c4eb99dcf645c
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
- # 52cd4a2304b627abbabe1a438ba853d0f6edb8e2774fcb5773c7af11077afe94
3
+ # 6cc831c9f588b637e5bd48d9fbf28e58737e08daf825c81085fb8e0a0b8ad14c
4
4
  #
5
- # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3470200.tar.gz
6
- # 52cd4a2304b627abbabe1a438ba853d0f6edb8e2774fcb5773c7af11077afe94 ports/archives/sqlite-autoconf-3470200.tar.gz
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-3470200.tar.gz
9
- # f1b2ee412c28d7472bc95ba996368d6f0cdcf00362affdadb27ed286c179540b ports/archives/sqlite-autoconf-3470200.tar.gz
10
- version: "3.47.2"
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/2024/sqlite-autoconf-3470200.tar.gz"
13
- sha256: "f1b2ee412c28d7472bc95ba996368d6f0cdcf00362affdadb27ed286c179540b"
12
+ - url: "https://sqlite.org/2025/sqlite-autoconf-3490100.tar.gz"
13
+ sha256: "106642d8ccb36c5f7323b64e4152e9b719f7c0215acf5bfeac3d5e7f97b59254"
@@ -789,7 +789,7 @@ load_extension_internal(VALUE self, VALUE file)
789
789
  }
790
790
  #endif
791
791
 
792
- #ifdef HAVE_SQLITE3_ENABLE_LOAD_EXTENSION
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
  }
@@ -52,7 +52,6 @@ module Sqlite3
52
52
  recipe.configure_options += [
53
53
  "--disable-shared",
54
54
  "--enable-static",
55
- "--disable-tcl",
56
55
  "--enable-fts5"
57
56
  ]
58
57
  ENV.to_h.tap do |env|
@@ -1,4 +1,4 @@
1
1
  module SQLite3
2
2
  # (String) the version of the sqlite3 gem, e.g. "2.1.1"
3
- VERSION = "2.5.0"
3
+ VERSION = "2.6.0"
4
4
  end
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.5.0
4
+ version: 2.6.0
5
5
  platform: ruby
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: 2024-12-25 00:00:00.000000000 Z
13
+ date: 2025-02-20 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: mini_portile2
@@ -75,7 +75,7 @@ files:
75
75
  - lib/sqlite3/value.rb
76
76
  - lib/sqlite3/version.rb
77
77
  - lib/sqlite3/version_info.rb
78
- - ports/archives/sqlite-autoconf-3470200.tar.gz
78
+ - ports/archives/sqlite-autoconf-3490100.tar.gz
79
79
  homepage: https://github.com/sparklemotion/sqlite3-ruby
80
80
  licenses:
81
81
  - BSD-3-Clause