knex 1.0.0 → 1.0.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Master (Unreleased)
2
2
 
3
+ # 1.0.1 - 16 January, 2022
4
+
5
+ ### Bug fixes:
6
+
7
+ - Fix package.json metadata
8
+
3
9
  # 1.0.0 - 16 January, 2022
4
10
 
5
11
  ### Breaking changes
package/README.md CHANGED
@@ -19,7 +19,7 @@ Node.js, featuring:
19
19
  - both a [promise](https://knexjs.org/#Interfaces-Promises) and [callback](https://knexjs.org/#Interfaces-Callbacks) API
20
20
  - a [thorough test suite](https://github.com/knex/knex/actions)
21
21
 
22
- Node.js versions 10+ are supported.
22
+ Node.js versions 12+ are supported.
23
23
 
24
24
  * Take a look at the [full documentation](https://knexjs.org) to get started!
25
25
  * Browse the [list of plugins and tools](https://github.com/knex/knex/blob/master/ECOSYSTEM.md) built for knex
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "knex",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A batteries-included SQL query & schema builder for PostgresSQL, MySQL, CockroachDB, MSSQL and SQLite3",
5
5
  "main": "knex",
6
6
  "types": "types/index.d.ts",
@@ -87,6 +87,9 @@
87
87
  "sqlite3": {
88
88
  "optional": true
89
89
  },
90
+ "@vscode/sqlite3": {
91
+ "optional": true
92
+ },
90
93
  "better-sqlite3": {
91
94
  "optional": true
92
95
  }
@@ -202,6 +205,8 @@
202
205
  "pg-query-stream": false,
203
206
  "oracle": false,
204
207
  "sqlite3": false,
208
+ "@vscode/sqlite3": false,
209
+ "better-sqlite3": false,
205
210
  "oracledb": false
206
211
  },
207
212
  "react-native": {