knex 3.2.5 → 3.2.6
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 +13 -1
- package/bin/cli.js +0 -0
- package/package.json +7 -2
- package/scripts/act-testing/act.sh +0 -0
- package/scripts/build-for-release.sh +0 -0
- package/scripts/clean.js +0 -0
- package/scripts/oracledb-install-driver-libs.sh +0 -0
- package/scripts/release.sh +0 -0
- package/scripts/stress-test/README.txt +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,22 @@
|
|
|
1
1
|
# Master (Unreleased)
|
|
2
2
|
|
|
3
|
+
# 3.2.6 - 24 March, 2026
|
|
4
|
+
|
|
5
|
+
### Bug fixes
|
|
6
|
+
|
|
7
|
+
- Fix module exports [#6406](https://github.com/knex/knex/issues/6406)
|
|
8
|
+
|
|
9
|
+
# 3.2.5 - 23 March, 2026
|
|
10
|
+
|
|
11
|
+
### Bug fixes
|
|
12
|
+
|
|
13
|
+
- Fix ESM exports [#6405](https://github.com/knex/knex/issues/6405)
|
|
14
|
+
|
|
3
15
|
# 3.2.4 - 23 March, 2026
|
|
4
16
|
|
|
5
17
|
### Bug fixes
|
|
6
18
|
|
|
7
|
-
- Fix ESM type exports
|
|
19
|
+
- Fix ESM type exports [#6404](https://github.com/knex/knex/issues/6404)
|
|
8
20
|
|
|
9
21
|
# 3.2.1 - 22 March, 2026
|
|
10
22
|
|
package/bin/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "knex",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.6",
|
|
4
4
|
"description": "A batteries-included SQL query & schema builder for PostgresSQL, MySQL, CockroachDB, MSSQL and SQLite3",
|
|
5
5
|
"main": "knex.js",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"default": "./knex.js"
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
|
+
"./bin/*.js": "./bin/*.js",
|
|
19
|
+
"./bin/*": "./bin/*",
|
|
20
|
+
"./types/*.d.ts": "./types/*.d.ts",
|
|
21
|
+
"./types/*": "./types/*.d.ts",
|
|
18
22
|
"./lib/*.js": "./lib/*.js",
|
|
19
23
|
"./lib/*": "./lib/*.js",
|
|
20
24
|
"./knex": "./knex.js",
|
|
@@ -36,7 +40,8 @@
|
|
|
36
40
|
"coveralls": "nyc report --reporter=lcov",
|
|
37
41
|
"lint": "eslint --cache .",
|
|
38
42
|
"lint:fix": "eslint --cache --fix .",
|
|
39
|
-
"
|
|
43
|
+
"prelint:types": "cd test-tstyche && npm i",
|
|
44
|
+
"lint:types": "tsd && tstyche --target 5.4",
|
|
40
45
|
"lint:everything": "npm run lint && npm run lint:types",
|
|
41
46
|
"lint:fix:everything": "npm run lint:fix && npm run lint:types",
|
|
42
47
|
"test:unit": "npm run test:unit-only && npm run test:cli",
|
|
File without changes
|
|
File without changes
|
package/scripts/clean.js
CHANGED
|
File without changes
|
|
File without changes
|
package/scripts/release.sh
CHANGED
|
File without changes
|
|
File without changes
|