better-sqlite3-multiple-ciphers 8.0.2-beta.1 → 8.1.1-beta.0

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.
package/README.md CHANGED
@@ -17,17 +17,17 @@ The fastest and simplest library for SQLite3 in Node.js. This particular fork su
17
17
  ## Current versions
18
18
 
19
19
  - ### Stable
20
- - **better-sqlite3-multiple-ciphers** - [`8.0.1`](https://github.com/m4heshd/better-sqlite3-multiple-ciphers/releases/tag/v8.0.1)
21
- - **better-sqlite3** - [`8.0.1`](https://github.com/JoshuaWise/better-sqlite3/releases/tag/v8.0.1)
22
- - **SQLite** - [`3.40.0`](https://www.sqlite.org/releaselog/3_40_0.html)
23
- - **SQLite3 Multiple Ciphers** - [`1.5.4`](https://github.com/utelle/SQLite3MultipleCiphers/releases/tag/v1.5.4)
24
-
25
- - ### Beta
26
- - **better-sqlite3-multiple-ciphers** - [`8.0.2-beta.1`](https://github.com/m4heshd/better-sqlite3-multiple-ciphers/releases/tag/v8.0.2-beta.1)
27
- - **better-sqlite3** - [`8.0.1`](https://github.com/JoshuaWise/better-sqlite3/releases/tag/v8.0.1)
20
+ - **better-sqlite3-multiple-ciphers** - [`8.1.0`](https://github.com/m4heshd/better-sqlite3-multiple-ciphers/releases/tag/v8.1.0)
21
+ - **better-sqlite3** - [`8.1.0`](https://github.com/JoshuaWise/better-sqlite3/releases/tag/v8.1.0)
28
22
  - **SQLite** - [`3.40.1`](https://www.sqlite.org/releaselog/3_40_1.html)
29
23
  - **SQLite3 Multiple Ciphers** - [`1.5.5`](https://github.com/utelle/SQLite3MultipleCiphers/releases/tag/v1.5.5)
30
24
 
25
+ - ### Beta
26
+ - **better-sqlite3-multiple-ciphers** - [`8.0.2-beta.1`](https://github.com/m4heshd/better-sqlite3-multiple-ciphers/releases/tag/v8.1.1-beta.0)
27
+ - **better-sqlite3** - [`8.1.0`](https://github.com/JoshuaWise/better-sqlite3/releases/tag/v8.1.0)
28
+ - **SQLite** - [`3.41.0`](https://www.sqlite.org/releaselog/3_41_0.html)
29
+ - **SQLite3 Multiple Ciphers** - [`1.6.0`](https://github.com/utelle/SQLite3MultipleCiphers/releases/tag/v1.6.0)
30
+
31
31
  ## Help this project stay strong! 💪
32
32
 
33
33
  `better-sqlite3` is used by thousands of developers and engineers on a daily basis. Long nights and weekends were spent keeping this project strong and dependable, with no ask for compensation or funding, until now. If your company uses `better-sqlite3`, ask your manager to consider supporting the project:
@@ -126,6 +126,8 @@ console.log(row.firstName, row.lastName, row.email);
126
126
  ```
127
127
  The same method should be used if you want to create a new encrypted database that can be opened using DB Browser for SQLite.
128
128
 
129
+ You can also use [`key()`](https://github.com/m4heshd/better-sqlite3-multiple-ciphers/blob/master/docs/api.md#keybuffer---number) and [`rekey()`](https://github.com/m4heshd/better-sqlite3-multiple-ciphers/blob/master/docs/api.md#rekeybuffer---number) functions for encryption and decryption tasks.
130
+
129
131
  ### Read more about encryption at [SQLite3MultipleCiphers documentation](https://utelle.github.io/SQLite3MultipleCiphers/).
130
132
 
131
133
  ## Why should I use this instead of [node-sqlite3](https://github.com/mapbox/node-sqlite3)?
package/deps/setup.ps1 CHANGED
@@ -2,7 +2,7 @@
2
2
  $ErrorActionPreference = "Stop"
3
3
 
4
4
  # SQLite Info
5
- $SQLITEMC_VER = "v1.5.5"
5
+ $SQLITEMC_VER = "v1.6.0"
6
6
  $API_URL = "https://api.github.com/repos/utelle/SQLite3MultipleCiphers/releases/tags/" + $SQLITEMC_VER
7
7
 
8
8
  # Paths