Skip to content

Commit 2511e74

Browse files
committed
Prepare to release 2.0.0
1 parent d6b97d5 commit 2511e74

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

CHANGELOG.md

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,30 @@
11
# Master (Unreleased)
22

3-
# 1.0.7 - 13 March, 2022
3+
# 2.0.0 - 21 April, 2022
4+
5+
### Breaking changes
6+
7+
- Restore sqlite3 package #5136
8+
9+
### Test / internal changes:
10+
11+
- Migrate Husky from 4 to 7 #5137
12+
- Migrate Jake to 10.8.5 #5138
13+
14+
# 1.0.7 - 13 April, 2022
415

516
### Bug fixes:
617

718
- CLI: Fix cli migrate:make SQLite dependency #5106
819

9-
# 1.0.6 - 12 March, 2022
20+
# 1.0.6 - 12 April, 2022
1021

1122
### Bug fixes:
1223

1324
- PostgreSQL: Wait for search path to be set before returning connection #5107
1425
- CLI: No client override during migrate:make #5109
1526

16-
# 1.0.5 - 05 March, 2022
27+
# 1.0.5 - 05 April, 2022
1728

1829
### New features:
1930

UPGRADING.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
### Upgrading to version 2.0.0+
44

5-
* The package `sqlite3` is again maintained, we restore it and remove `@vscode/sqlite3` driver dependency, please
6-
replace it in the `package.json`;
5+
* Since `sqlite3` is maintained again, we switched back to it. If you are using `@vscode/sqlite3` driver dependency, please replace it with `sqlite3` in your `package.json`;
76

87
### Upgrading to version 1.0.0+
98

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "knex",
3-
"version": "1.0.7",
3+
"version": "2.0.0",
44
"description": "A batteries-included SQL query & schema builder for PostgresSQL, MySQL, CockroachDB, MSSQL and SQLite3",
55
"main": "knex",
66
"types": "types/index.d.ts",
@@ -86,7 +86,7 @@
8686
"pg-native": {
8787
"optional": true
8888
},
89-
"@vscode/sqlite3": {
89+
"sqlite3": {
9090
"optional": true
9191
},
9292
"better-sqlite3": {

0 commit comments

Comments
 (0)