extralite-bundle 2.14 → 2.15

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: a075a97007d3a5d12154d7c6843ff7915a51f17f391c8a35d75e887e0a7a27f6
4
- data.tar.gz: a5168793e589bf5508e61559f72ad1cc665572d6526be5607abe2395b8c6810d
3
+ metadata.gz: b1c8d7ce10e612a9470b9a5cda179534b707c8a4cbd1bf637a41133451a12717
4
+ data.tar.gz: fe16011b3257c54253839ecb2db9ced418722b12810b8db955ab35fa25dd9343
5
5
  SHA512:
6
- metadata.gz: 297316079bb5e21941ab7d75acebcdb588c74aa128c50eb0415937e8d06720cecd745fb6bc8d9df871bbb006992f35f66d39e6868071bde9b668a4a673c54085
7
- data.tar.gz: 30600bcedd2f58d2f9eeb7527555201febe1f032394159afc8ecaf61d63c162e30cb14ee72a5c652217a648443a56adbc124e41563886502814a9a7eb3db4870
6
+ metadata.gz: 82919842e08b3ffffd3ec815198104890220fd6f0006bb98b12104a835e53d6a6249c9109d9560826ae888e60be200ca4aae2b33d3dcd4aecc6b7597c0d3e1e7
7
+ data.tar.gz: c057cc22229b1ebfba529c587427b55374e43e9ecb5e52691b60900300de557c700559a3cccfcfcd74316d3206c1050f4700f87c7b1bfe4917ea8405553df049
@@ -11,8 +11,7 @@ jobs:
11
11
  strategy:
12
12
  fail-fast: false
13
13
  matrix:
14
- # macos-latest uses arm64, macos-13 uses x86
15
- os: [ubuntu-latest, macos-latest, macos-13]
14
+ os: [ubuntu-latest, macos-latest]
16
15
  ruby: ['3.2', '3.3', '3.4', 'head']
17
16
 
18
17
  name: ${{matrix.os}}, ${{matrix.ruby}}
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 2.15 2026-06-28
2
+
3
+ - Update bundled SQLite to 3.53.3
4
+ - Update dependencies
5
+
1
6
  ## 2.14 2026-01-25
2
7
 
3
8
  - Update bundled SQLite to 3.51.2
data/README.md CHANGED
@@ -32,7 +32,7 @@ databases.
32
32
  Extralite comes in two flavors: the `extralite` gem which uses the
33
33
  system-installed sqlite3 library, and the `extralite-bundle` gem which bundles
34
34
  the latest version of SQLite
35
- ([3.51.2](https://sqlite.org/releaselog/3_51_2.html)), offering access to the
35
+ ([3.53.3](https://sqlite.org/releaselog/3_53_3.html)), offering access to the
36
36
  latest features and enhancements.
37
37
 
38
38
  ## Features
@@ -663,10 +663,10 @@ rollback specific changes without abandoning the entire transaction:
663
663
  ```ruby
664
664
  db.transaction do
665
665
  db.execute 'insert into foo values (1)'
666
-
666
+
667
667
  db.savepoint :my_savepoint
668
668
  db.execute 'insert into foo values (2)'
669
-
669
+
670
670
  # the following cancels the last insert
671
671
  db.rollback_to :my_savepoint
672
672
  db.execute 'insert into foo values (3)'
@@ -788,10 +788,10 @@ for each database:
788
788
 
789
789
  ```ruby
790
790
  # release the GVL on preparing the query, and every 10 records
791
- db.gvl_release_threshold = 10
791
+ db.gvl_release_threshold = 10
792
792
 
793
793
  # release the GVL only when preparing the query
794
- db.gvl_release_threshold = 0
794
+ db.gvl_release_threshold = 0
795
795
 
796
796
  # never release the GVL (for single-threaded apps only)
797
797
  db.gvl_release_threshold = -1
data/TODO.md CHANGED
@@ -1,3 +1,8 @@
1
+ - Transform objects:
2
+
3
+
4
+
5
+
1
6
  - More database methods:
2
7
 
3
8
  - `Database#quote`