sqlite3 2.1.0.rc3-aarch64-linux-gnu → 2.1.1-aarch64-linux-gnu

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: 33afa027f6967209530990b650aa80cda55fb3ed8c9b27e6502a9a74cfd20c32
4
- data.tar.gz: 2bd741ac657380ccf9212be0b2609042764244ec1f973f1fb36ecb521fa2aa1d
3
+ metadata.gz: 3ddd68f15f907ef945dc9db52830e3c77818b20419bea1a2d176f6d5b5ed67f7
4
+ data.tar.gz: 8c26bc0008ad777e10d3e4a0e4ee77d5ad430a234fe16a082a4983d8ca98e4b6
5
5
  SHA512:
6
- metadata.gz: 0d56d919f6fdad99beb08bc0e7f23ae0f0eb9ff5e602ac430b0f5431e578c81c6e97d7e4ff172a0dff40b72020410d86cffeea05e510fc72e62b9861b31a7f3b
7
- data.tar.gz: fb1d24e5fa3f9b1621de928ec448a9509c2f89d17b5f4d3694aab87e263f1f42eb38abada4c5fcc283787b8bf56c072143d12737bf0e94c531d865273c0d53fe
6
+ metadata.gz: c8b563d43ddb79808508b8bb4bf7a6991bb70ef883ea3845d90c3686301580455e3947118c1d384b00a9b6adf970e697af15055e275d2f3adea70fbfec49ad44
7
+ data.tar.gz: 5ccbcfaf6a97d3a6df4f5d5d8fb6892a43b44eafe5aad37a6a74da91b99c2ec7073bd03149d5519de7a81adafd07d39323ad174580c1818dfd96f9b38836b755
data/CHANGELOG.md CHANGED
@@ -1,20 +1,13 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
- ## prerelease 2.1.0.rc3 / 2024-09-18
3
+ ## 2.1.1 / 2024-10-22
4
4
 
5
- ### Improved
6
-
7
- - Allow suppression of fork safety warnings. [#566] @flavorjones
8
-
9
-
10
- ## prerelease 2.1.0.rc2 / 2024-09-18
11
-
12
- ### Improved
5
+ ### Dependencies
13
6
 
14
- - Address a performance regression in 2.1.0.rc1.
7
+ - Vendored sqlite is updated to [v3.47.0](https://sqlite.org/releaselog/3_47_0.html) [#570] @flavorjones
15
8
 
16
9
 
17
- ## prerelease 2.1.0.rc1 / 2024-09-18
10
+ ## 2.1.0 / 2024-09-24
18
11
 
19
12
  ### Ruby
20
13
 
@@ -28,9 +21,9 @@ Sqlite itself is [not fork-safe](https://www.sqlite.org/howtocorrupt.html#_carry
28
21
  - All open writable database connections carried across a `fork()` will immediately be closed in the child process to mitigate the risk of corrupting the database file.
29
22
  - These connections will be incompletely closed ("discarded") which will result in a one-time memory leak in the child process.
30
23
 
31
- If it's at all possible, we strongly recommend that you close writable database connections in the parent before forking.
24
+ If it's at all possible, we strongly recommend that you close writable database connections in the parent before forking. If absolutely necessary (and you know what you're doing), you may suppress the fork safety warnings by calling `SQLite3::ForkSafety.suppress_warnings!`.
32
25
 
33
- See the README "Fork Safety" section and `adr/2024-09-fork-safety.md` for more information. [#558] @flavorjones
26
+ See the README's "Fork Safety" section and `adr/2024-09-fork-safety.md` for more information. [#558, #565, #566] @flavorjones
34
27
 
35
28
 
36
29
  ### Improved
@@ -39,6 +32,11 @@ See the README "Fork Safety" section and `adr/2024-09-fork-safety.md` for more i
39
32
  - When setting a Database `busy_handler`, fire the write barrier to prevent potential crashes during the GC mark phase. [#556] @jhawthorn
40
33
 
41
34
 
35
+ ### Documentation
36
+
37
+ - The `FAQ.md` has been updated to fix some inaccuracies. [#562] @rickhull
38
+
39
+
42
40
  ## 2.0.4 / 2024-08-13
43
41
 
44
42
  ### Dependencies
data/README.md CHANGED
@@ -160,7 +160,7 @@ To help protect users of this gem from accidental corruption due to this lack of
160
160
  connections in the child will incur a small one-time memory leak per connection, but that's
161
161
  preferable to potentially corrupting your database.
162
162
 
163
- Whenever possible, close writable connections in the parent before forking.
163
+ Whenever possible, close writable connections in the parent before forking. If absolutely necessary (and you know what you're doing), you may suppress the fork safety warnings by calling `SQLite3::ForkSafety.suppress_warnings!`.
164
164
 
165
165
  See [./adr/2024-09-fork-safety.md](./adr/2024-09-fork-safety.md) for more information and context.
166
166
 
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
- # 923f68143dcd9fc0c38778dee253fd6540a91f578173a04ca5adff885d8a8fbb
3
+ # a9166e017ef8bc33379b1c2eed346bf43cded6d40df0feb984a33fba1a828ba9
4
4
  #
5
- # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3460100.tar.gz
6
- # 923f68143dcd9fc0c38778dee253fd6540a91f578173a04ca5adff885d8a8fbb ports/archives/sqlite-autoconf-3460100.tar.gz
5
+ # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3470000.tar.gz
6
+ # a9166e017ef8bc33379b1c2eed346bf43cded6d40df0feb984a33fba1a828ba9 ports/archives/sqlite-autoconf-3470000.tar.gz
7
7
  #
8
- # $ sha256sum ports/archives/sqlite-autoconf-3460100.tar.gz
9
- # 67d3fe6d268e6eaddcae3727fce58fcc8e9c53869bdd07a0c61e38ddf2965071 ports/archives/sqlite-autoconf-3460100.tar.gz
10
- version: "3.46.1"
8
+ # $ sha256sum ports/archives/sqlite-autoconf-3470000.tar.gz
9
+ # 83eb21a6f6a649f506df8bd3aab85a08f7556ceed5dbd8dea743ea003fc3a957 ports/archives/sqlite-autoconf-3470000.tar.gz
10
+ version: "3.47.0"
11
11
  files:
12
- - url: "https://sqlite.org/2024/sqlite-autoconf-3460100.tar.gz"
13
- sha256: "67d3fe6d268e6eaddcae3727fce58fcc8e9c53869bdd07a0c61e38ddf2965071"
12
+ - url: "https://sqlite.org/2024/sqlite-autoconf-3470000.tar.gz"
13
+ sha256: "83eb21a6f6a649f506df8bd3aab85a08f7556ceed5dbd8dea743ea003fc3a957"
Binary file
Binary file
Binary file
@@ -1,3 +1,3 @@
1
1
  module SQLite3
2
- VERSION = "2.1.0.rc3"
2
+ VERSION = "2.1.1"
3
3
  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.1.0.rc3
4
+ version: 2.1.1
5
5
  platform: aarch64-linux-gnu
6
6
  authors:
7
7
  - Jamis Buck
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2024-09-24 00:00:00.000000000 Z
14
+ date: 2024-10-22 00:00:00.000000000 Z
15
15
  dependencies: []
16
16
  description: |
17
17
  Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org). Precompiled
@@ -90,9 +90,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
90
90
  version: 3.4.dev
91
91
  required_rubygems_version: !ruby/object:Gem::Requirement
92
92
  requirements:
93
- - - ">"
94
- - !ruby/object:Gem::Version
95
- version: 1.3.1
96
93
  - - ">="
97
94
  - !ruby/object:Gem::Version
98
95
  version: 3.3.22