sqlite3 1.5.1 → 1.5.2

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: 14940fe0b1e0cb9f9d1ea85675d7c31c814418e1dbaa5503d20b7c6979817780
4
- data.tar.gz: 270770317eb93285810b1b5cb9572467bdf8869a63bc1b4e78b0bfcc54e69a73
3
+ metadata.gz: d16e52d4fb2cbeb74c1b9e081bd5a19d31cf1750b0c4441a6d99d190ec3c0983
4
+ data.tar.gz: 27fbce7b613a4b7a7ace7d2f9ede2236eee361a71f4ebf8f991224e1c7e0619d
5
5
  SHA512:
6
- metadata.gz: d8fa16a98f024f558784bad14add322bd979c86a159ad51603633311fbcca7da8bbae559465dfef082d2a7867c8de6e56b7e7311cb23e18ab53976f71e89f96d
7
- data.tar.gz: 82639bbe8d90f333d7f4bc2ca29beb0f235125b868418159d1f8c13d8f62735e3ff8a4edae9e38f963f2e252c8afea615227121f8fc71e5ebcb25968adc0ff7a
6
+ metadata.gz: 277fc25b7ca8472462de6a39ba5342e9d098eb467313a2454d117212b498a69347153bffd4f8b9aae3aa197ce30ed8bab550a115f3efcbbf240391fa76bb062d
7
+ data.tar.gz: 5002e61993b96abcd7c70d3276449c23a72bc9a5415287a63d0624bab300f2b9c5d6e92527cab1d4b0216b74a606a6af8fbea83a9e169b4feaacbc07931401ae
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
+ ## 1.5.2 / 2022-10-01
4
+
5
+ ### Packaging
6
+
7
+ This version correctly vendors the tarball for sqlite v3.39.4 in the vanilla "ruby" platform gem package, so that users will not require network access at installation.
8
+
9
+ v1.5.0 and v1.5.1 mistakenly packaged the tarball for sqlite v3.38.5 in the vanilla "ruby" platform gem, resulting in downloading the intended tarball over the network at installation time (or, if the network was not available, failure to install). Note that the precompiled native gems were not affected by this issue. [#352]
10
+
11
+
3
12
  ## 1.5.1 / 2022-09-29
4
13
 
5
14
  ### Dependencies
data/CONTRIBUTING.md CHANGED
@@ -20,5 +20,5 @@ A quick checklist:
20
20
  - [ ] update `CHANGELOG.md` and `lib/sqlite3/version.rb` including `VersionProxy::{MINOR,TINY}`
21
21
  - [ ] create a git tag using a format that matches the pattern `v\d+\.\d+\.\d+`, e.g. `v1.3.13`
22
22
  - [ ] run `bin/build-gems` and make sure it completes and all the tests pass
23
- - [ ] `for g in gems/*.gem ; do gem push $g ; done`
23
+ - [ ] `for g in gems/*.gem ; do gem push $g ; done`s
24
24
  - [ ] create a release at https://github.com/sparklemotion/sqlite3-ruby/releases and include sha2 checksums
data/dependencies.yml ADDED
@@ -0,0 +1,14 @@
1
+ # TODO: stop using symbols here once we no longer support Ruby 2.7 and can rely on symbolize_names
2
+ :sqlite3:
3
+ # checksum verified by first checking the published sha3(256) checksum against https://sqlite.org/download.html:
4
+ #
5
+ # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3390400.tar.gz
6
+ # 431328e30d12c551da9ba7ef2122b269076058512014afa799caaf62ca567090 ports/archives/sqlite-autoconf-3390400.tar.gz
7
+ #
8
+ # $ sha256sum ports/archives/sqlite-autoconf-3390400.tar.gz
9
+ # f31d445b48e67e284cf206717cc170ab63cbe4fd7f79a82793b772285e78fdbb ports/archives/sqlite-autoconf-3390400.tar.gz
10
+ #
11
+ :version: "3.39.4"
12
+ :files:
13
+ - :url: "https://sqlite.org/2022/sqlite-autoconf-3390400.tar.gz"
14
+ :sha256: "f31d445b48e67e284cf206717cc170ab63cbe4fd7f79a82793b772285e78fdbb"
@@ -1,5 +1,6 @@
1
1
  require "mkmf"
2
2
  require "mini_portile2"
3
+ require "yaml"
3
4
 
4
5
  module Sqlite3
5
6
  module ExtConf
@@ -131,23 +132,8 @@ module Sqlite3
131
132
  end
132
133
 
133
134
  def mini_portile_config
134
- {
135
- sqlite3: {
136
- # checksum verified by first checking the published sha3(256) checksum against https://sqlite.org/download.html:
137
- #
138
- # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3390400.tar.gz
139
- # 431328e30d12c551da9ba7ef2122b269076058512014afa799caaf62ca567090 ports/archives/sqlite-autoconf-3390400.tar.gz
140
- #
141
- # $ sha256sum ports/archives/sqlite-autoconf-3390400.tar.gz
142
- # f31d445b48e67e284cf206717cc170ab63cbe4fd7f79a82793b772285e78fdbb ports/archives/sqlite-autoconf-3390400.tar.gz
143
- #
144
- version: "3.39.4",
145
- files: [{
146
- url: "https://sqlite.org/2022/sqlite-autoconf-3390400.tar.gz",
147
- sha256: "f31d445b48e67e284cf206717cc170ab63cbe4fd7f79a82793b772285e78fdbb",
148
- }],
149
- }
150
- }
135
+ # TODO: once Ruby 2.7 is no longer supported, use symbolize_names: true
136
+ YAML.load_file(File.join(package_root_dir, "dependencies.yml"))
151
137
  end
152
138
 
153
139
  def abort_could_not_find(missing)
@@ -1,11 +1,11 @@
1
1
  module SQLite3
2
2
 
3
- VERSION = "1.5.1"
3
+ VERSION = "1.5.2"
4
4
 
5
5
  module VersionProxy
6
6
  MAJOR = 1
7
7
  MINOR = 5
8
- TINY = 1
8
+ TINY = 2
9
9
  BUILD = nil
10
10
 
11
11
  STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." )
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: 1.5.1
4
+ version: 1.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamis Buck
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2022-09-29 00:00:00.000000000 Z
13
+ date: 2022-10-01 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: mini_portile2
@@ -118,6 +118,7 @@ files:
118
118
  - LICENSE
119
119
  - LICENSE-DEPENDENCIES
120
120
  - README.md
121
+ - dependencies.yml
121
122
  - ext/sqlite3/aggregator.c
122
123
  - ext/sqlite3/aggregator.h
123
124
  - ext/sqlite3/backup.c
@@ -144,7 +145,7 @@ files:
144
145
  - lib/sqlite3/translator.rb
145
146
  - lib/sqlite3/value.rb
146
147
  - lib/sqlite3/version.rb
147
- - ports/archives/sqlite-autoconf-3380500.tar.gz
148
+ - ports/archives/sqlite-autoconf-3390400.tar.gz
148
149
  - test/helper.rb
149
150
  - test/test_backup.rb
150
151
  - test/test_collation.rb