sqlite3 2.1.0.rc3-x86_64-linux-gnu → 2.1.0-x86_64-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 +4 -4
 - data/CHANGELOG.md +8 -17
 - data/README.md +1 -1
 - data/lib/sqlite3/version.rb +1 -1
 - metadata +1 -4
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 3fd47378caf252675b71c7a834733c3b5d104ca66f7d209e988c39a51c6aaaa5
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 9d224888bcbf5ef3ca9938671d7783f61b6ef1c5b5c7bc33087ca2dd6d50d284
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 92ea09b1d1b94774edd07e28494033b38e0441d4c7e71e4f103ef8002c3819efaaca1b0dc13041f2d64f49fee9ba97d3e505d8fccdde4d45c931bf904648c3b8
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: d006cf08701b00e44089f81e59f552887e7cc8674812437cd021b8ac74a92e273a5bd23ab4e75216b540d7a6a8a1f88b73c22685e2e903ac62ed5b7ea273530e
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    | 
         @@ -1,20 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # sqlite3-ruby Changelog
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
       3 
     | 
    
         
            -
            ##  
     | 
| 
       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 
     | 
    
         | 
    
        data/lib/sqlite3/version.rb
    CHANGED
    
    
    
        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 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 2.1.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: x86_64-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
         
     |