sqlite3 2.1.0.rc3-x86-linux-gnu → 2.1.0-x86-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: 4eede6746beb5834534f7779426301ac7202191f3c95060bea2022cc2068ca74
4
- data.tar.gz: d09d6c79be93637523e4a217019e390798f879cbd37ecbe780033b6494d85684
3
+ metadata.gz: 3a429079650641963cda085bd354f20f2858b9e5a9a8ef079d239cd7fd1808b1
4
+ data.tar.gz: e3b783ba2fef35ee036d5bcb087e927b44bc446d0078d3f8e4c7a6deb8796a05
5
5
  SHA512:
6
- metadata.gz: 64a161591e4cd41f1361079f3872982f2e58abda848b0ae52b220b07d68c4432bbf3ae21fe2783ea2e28594e74b75b987e2e2d0a30f4936823c6612248ff0226
7
- data.tar.gz: 00e54877467b236b8a69513314f331d145646129e9233a260e38c59f510b684c33a98fa40b0472ae489a90f252ce2e1eadc53ef1fe9642a099173fd9bf41f36d
6
+ metadata.gz: 55923bd100cb80c9fd49342a6e1ed87f81d915b3f674eba799f0e57c16d28669b7ad41553af6436a01b5d6a9a8cbf5aacf2df72656849f6d87b0e626a5c83f27
7
+ data.tar.gz: 37f480f6cbe5070f859ccf0b03d78145f0f8c0887f4db7c4c1e29a46b2a0fdff4317329b6e9cac718ac3acdd26f4e565936b61cfc1b022b1c32a2a4f55dacaee
data/CHANGELOG.md CHANGED
@@ -1,20 +1,6 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
- ## prerelease 2.1.0.rc3 / 2024-09-18
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
13
-
14
- - Address a performance regression in 2.1.0.rc1.
15
-
16
-
17
- ## prerelease 2.1.0.rc1 / 2024-09-18
3
+ ## 2.1.0 / 2024-09-24
18
4
 
19
5
  ### Ruby
20
6
 
@@ -28,9 +14,9 @@ Sqlite itself is [not fork-safe](https://www.sqlite.org/howtocorrupt.html#_carry
28
14
  - 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
15
  - These connections will be incompletely closed ("discarded") which will result in a one-time memory leak in the child process.
30
16
 
31
- If it's at all possible, we strongly recommend that you close writable database connections in the parent before forking.
17
+ 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
18
 
33
- See the README "Fork Safety" section and `adr/2024-09-fork-safety.md` for more information. [#558] @flavorjones
19
+ See the README's "Fork Safety" section and `adr/2024-09-fork-safety.md` for more information. [#558, #565, #566] @flavorjones
34
20
 
35
21
 
36
22
  ### Improved
@@ -39,6 +25,11 @@ See the README "Fork Safety" section and `adr/2024-09-fork-safety.md` for more i
39
25
  - When setting a Database `busy_handler`, fire the write barrier to prevent potential crashes during the GC mark phase. [#556] @jhawthorn
40
26
 
41
27
 
28
+ ### Documentation
29
+
30
+ - The `FAQ.md` has been updated to fix some inaccuracies. [#562] @rickhull
31
+
32
+
42
33
  ## 2.0.4 / 2024-08-13
43
34
 
44
35
  ### 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
 
@@ -1,3 +1,3 @@
1
1
  module SQLite3
2
- VERSION = "2.1.0.rc3"
2
+ VERSION = "2.1.0"
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.0
5
5
  platform: x86-linux-gnu
6
6
  authors:
7
7
  - Jamis Buck
@@ -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