sqlite3 2.7.1-aarch64-linux-gnu → 2.7.3-aarch64-linux-gnu

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8cabbd6590d52fd7939e4735a1ba18cb89eb44deb7c452150bf32d2d635dc79f
4
- data.tar.gz: 110a76b275780cfb5521cb7e10d3a21ada8be3e90e3026945d3f252a31f03054
3
+ metadata.gz: 69389e28df5827c33db67cd1f25dac4b0f1f0f8037b9b68ecc802b8753026f5f
4
+ data.tar.gz: 6a2e145df5721e6e7dc7bb82901ba7b3171b05233b302c84f24fd8e88078ad12
5
5
  SHA512:
6
- metadata.gz: 3c1685abca434387427ef876eb2d0a004e760b16083119cb29603f354139fbdf2451032527ee37a677226f95fda959a368bfceb7a47c68c720a925693539db4f
7
- data.tar.gz: a5f9615cf84d1709d653ca2a43cf1c8198b86fc97debd543db44c9e79a859e18c469ed60cd7cf5916caa278b20adf22d798133b2acc54d27a3858e137a567674
6
+ metadata.gz: 149473f946a96636c8a33ba62c23cf41485f300fc314285a294256de7d863175dccd977b437185018d328a472684b3a038b6e4c04753347b17332eb84223485f
7
+ data.tar.gz: fbd432d4eca3c9a328a97eb95435e4620661442be2d7d0fc77a54a24fe38e1024a031fb314431e93b55bc2e783e8f829c897f2221d60b9e8fc8ef7aae8f58b3d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
+ ## 2.7.3 / 2025-07-18
4
+
5
+ - Vendored sqlite is updated to [v3.50.3](https://sqlite.org/releaselog/3_50_3.html) (from v3.50.2). #638 @flavorjones
6
+
7
+
8
+ ## 2.7.2 / 2025-07-05
9
+
10
+ - Backport a [fix](https://sqlite.org/src/info/64f5f14322) to the vendored SQLite to support compilation on Rocky Linux. See the [SQLite forum post](https://sqlite.org/forum/forumpost/44a58c8073) for more details. #634, #635 @flavorjones
11
+
12
+
3
13
  ## 2.7.1 / 2025-06-30
4
14
 
5
15
  - Vendored sqlite is updated to [v3.50.2](https://sqlite.org/releaselog/3_50_2.html) (from v3.50.1). #633 @flavorjones
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
- # e4d2b4332988f479ec032ccff00963a9bbd24a3a0f0222b4e249653fa680b4c0
3
+ # c3df1542703a666d3f41bb623e9bed7d6e1dc81c57f0c45e3122403f862c520d
4
4
  #
5
- # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3500200.tar.gz
6
- # e4d2b4332988f479ec032ccff00963a9bbd24a3a0f0222b4e249653fa680b4c0 ports/archives/sqlite-autoconf-3500200.tar.gz
5
+ # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3500300.tar.gz
6
+ # c3df1542703a666d3f41bb623e9bed7d6e1dc81c57f0c45e3122403f862c520d ports/archives/sqlite-autoconf-3500300.tar.gz
7
7
  #
8
- # $ sha256sum ports/archives/sqlite-autoconf-3500200.tar.gz
9
- # 84a616ffd31738e4590b65babb3a9e1ef9370f3638e36db220ee0e73f8ad2156 ports/archives/sqlite-autoconf-3500200.tar.gz
10
- version: "3.50.2"
8
+ # $ sha256sum ports/archives/sqlite-autoconf-3500300.tar.gz
9
+ # ec5496cdffbc2a4adb59317fd2bf0e582bf0e6acd8f4aae7e97bc723ddba7233 ports/archives/sqlite-autoconf-3500300.tar.gz
10
+ version: "3.50.3"
11
11
  files:
12
- - url: "https://sqlite.org/2025/sqlite-autoconf-3500200.tar.gz"
13
- sha256: "84a616ffd31738e4590b65babb3a9e1ef9370f3638e36db220ee0e73f8ad2156"
12
+ - url: "https://sqlite.org/2025/sqlite-autoconf-3500300.tar.gz"
13
+ sha256: "ec5496cdffbc2a4adb59317fd2bf0e582bf0e6acd8f4aae7e97bc723ddba7233"
@@ -194,6 +194,10 @@ module Sqlite3
194
194
  RbConfig::CONFIG["target_os"].include?("darwin")
195
195
  end
196
196
 
197
+ def windows?
198
+ RbConfig::CONFIG["target_os"].match?(/mingw|mswin/)
199
+ end
200
+
197
201
  def print_help
198
202
  print(<<~TEXT)
199
203
  USAGE: ruby #{$PROGRAM_NAME} [options]
Binary file
Binary file
Binary file
Binary file
@@ -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.7.1"
3
+ VERSION = "2.7.3"
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.7.1
4
+ version: 2.7.3
5
5
  platform: aarch64-linux-gnu
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: 2025-06-30 00:00:00.000000000 Z
13
+ date: 2025-07-18 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description: |
16
16
  Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org). Precompiled