sqlite3 2.5.0.rc1 → 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: acaf05cd64d42ef4e5fb84ac2f46f5b3c73af0c16da41251796e73ed5b2e6bf7
4
- data.tar.gz: 7251ef9f03cde93cabb787fd792dff45b41abf2c62c561ff24d528462e24a2ea
3
+ metadata.gz: a6b103e65a63d9c0e62ca2cbce8f09ba23b5873f03257be161dcdd2b93994089
4
+ data.tar.gz: 858e6d9ecb8a349e49b22802c717d946c54aff00d005f56788ade89a3be5dece
5
5
  SHA512:
6
- metadata.gz: 42a3933c2d8877bc9f3f795e4613f566ec6aa739075f6119af52cc5a668b260a2222885e7968f3ce5703d458b3286382166b7536a241351b00944ebd58dd71c8
7
- data.tar.gz: be80f3d5a1e2815f8e36417af5979f792c31f84856f677ce0cc56e3c528a96ca7fd2aeb60680b4265b46c091a186dff3c3656a9482abd39a72cece5a1f7821be
6
+ metadata.gz: 3752aff46fdf0a5605549fe513ebe8744ef70cd6e9e46fcfdfac20f7e0dea7ce7cbe9e8e257c1be1605321350689bfc17faa3a8db8fe654497bd86e92837b2e2
7
+ data.tar.gz: 32d4207d7388e903189987e484a0d4f296e7b89d5b44f169d93a70a1de78b7fa0a58953289880e273ece9155dc1b66d74919b3688e9df1fa8d6c4eb99dcf645c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,24 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
- ## 2.5.0.rc1 / 2024-12-14
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
+
21
+ ## 2.5.0 / 2024-12-25
4
22
 
5
23
  ### Ruby
6
24
 
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.rc1"
3
+ VERSION = "2.6.0"
4
4
  end
metadata CHANGED
@@ -1,17 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sqlite3
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0.rc1
4
+ version: 2.6.0
5
5
  platform: ruby
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: 2024-12-14 00:00:00.000000000 Z
13
+ date: 2025-02-20 00:00:00.000000000 Z
15
14
  dependencies:
16
15
  - !ruby/object:Gem::Dependency
17
16
  name: mini_portile2
@@ -30,7 +29,6 @@ dependencies:
30
29
  description: |
31
30
  Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org). Precompiled
32
31
  binaries are available for common platforms for recent versions of Ruby.
33
- email:
34
32
  executables: []
35
33
  extensions:
36
34
  - ext/sqlite3/extconf.rb
@@ -77,7 +75,7 @@ files:
77
75
  - lib/sqlite3/value.rb
78
76
  - lib/sqlite3/version.rb
79
77
  - lib/sqlite3/version_info.rb
80
- - ports/archives/sqlite-autoconf-3470200.tar.gz
78
+ - ports/archives/sqlite-autoconf-3490100.tar.gz
81
79
  homepage: https://github.com/sparklemotion/sqlite3-ruby
82
80
  licenses:
83
81
  - BSD-3-Clause
@@ -89,7 +87,6 @@ metadata:
89
87
  source_code_uri: https://github.com/sparklemotion/sqlite3-ruby
90
88
  msys2_mingw_dependencies: sqlite3
91
89
  rubygems_mfa_required: 'true'
92
- post_install_message:
93
90
  rdoc_options:
94
91
  - "--main"
95
92
  - README.md
@@ -102,12 +99,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
102
99
  version: '3.1'
103
100
  required_rubygems_version: !ruby/object:Gem::Requirement
104
101
  requirements:
105
- - - ">"
102
+ - - ">="
106
103
  - !ruby/object:Gem::Version
107
- version: 1.3.1
104
+ version: '0'
108
105
  requirements: []
109
- rubygems_version: 3.3.22
110
- signing_key:
106
+ rubygems_version: 3.6.2
111
107
  specification_version: 4
112
108
  summary: Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org).
113
109
  test_files: []